> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PFMatchmakingTicketConfiguration

> 제한 시간, 큐 이름, 지연 시간 측정 사용 같은 옵션을 포함하여 PlayFab Multiplayer 매치메이킹 티켓을 만드는 데 사용되는 구성 데이터입니다.

매치메이킹 티켓의 구성을 정의합니다.

## 구문

```cpp theme={null}
struct PFMatchmakingTicketConfiguration {  
    uint32_t timeoutInSeconds;  
    const char* queueName;  
    uint32_t membersToMatchWithCount;  
    const PFEntityKey* membersToMatchWith;  
}  
```

### 멤버

**`timeoutInSeconds`**   uint32\_t

티켓을 매치메이킹하려는 시도 시간(초)입니다.

**`queueName`**   const char\*\
*null로 끝남*

매치 큐의 이름입니다.

**`membersToMatchWithCount`**   uint32\_t

티켓에 참여할 것으로 예상되는 다른 특정 사용자의 수입니다.

**`membersToMatchWith`**   const [PFEntityKey](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmultiplayer/pfentitykey_clientsdk)\*\
*크기가 `membersToMatchWithCount`인 배열*

티켓에 참여할 것으로 예상되는 다른 특정 사용자의 PlayFab 엔터티 키입니다.

이 필드는 티켓에 참여할 것으로 예상되는 다른 특정 사용자의 수를 지정합니다. 일반적으로 이 목록은 함께 매치를 찾는 친구 그룹이나 파이어팀을 나타냅니다. 지정된 모든 사용자가 [PFMultiplayerJoinMatchmakingTicketFromId](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/functions/pfmultiplayerjoinmatchmakingticketfromid)를 통해 티켓에 참여할 때까지 매치를 찾을 수 없습니다.

## 요구 사항

**헤더:** PFMatchmaking.h

## 함께 보기

[PFMatchmaking members](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/pfmatchmaking_members)


## Related topics

- [Matchmaking SDK quickstart](/ko/services/playfab/multiplayer/matchmaking/quickstart-client-sdk.md)
- [PFMultiplayerCreateMatchmakingTicket](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/functions/pfmultiplayercreatematchmakingticket.md)
- [PFMultiplayer C/C++ API 개요 - PFMatchmaking.h](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/pfmatchmaking_members.md)
- [PFMatchmakingServerBackfillTicketConfiguration](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/structs/pfmatchmakingserverbackfillticketconfiguration.md)
- [XblMatchmakingDeleteMatchTicketAsync](/ko/reference/live/xsapi-c/matchmaking_c/functions/xblmatchmakingdeletematchticketasync.md)
