PartyInvitationConfiguration

招待の構成データ。

構文

struct PartyInvitationConfiguration {  
    PartyString identifier;  
    PartyInvitationRevocability revocability;  
    uint32_t entityIdCount;  
    const PartyString* entityIds;  
}  

メンバー

identifier PartyString
nullptr でもかまいません

招待の識別子。

この値は、 PartyManager::CreateNewNetwork() または PartyNetwork::CreateInvitation()への入力として使用する場合にのみ nullptr になります。

この文字列の長さは c_maxInvitationIdentifierStringLength 以下である必要があります。

revocability PartyInvitationRevocability

招待の取り消し可能性。

entityIdCount uint32_t

招待がネットワークへの認証を許可する PlayFab エンティティ ID の数。

この値が 0 である場合、すべてのユーザーは招待の識別子を使用して認証できます。

この数は c_maxInvitationEntityIdCount 以下でなければなりません。

entityIds const PartyString*
配列のサイズentityIdCount

招待がネットワークへの認証を許可する PlayFab エンティティ ID の一覧。

このリストが空である場合、すべてのユーザーは招待の識別子を使用して認証できます。

要件

ヘッダー: Party.h

関連項目

パーティーのメンバー
PartyInvitation
PartyInvitationRevocability
PartyManager::CreateNewNetwork
PartyNetwork::CreateInvitation
PartyInvitation::GetInvitationConfiguration