@@ -1579,6 +1579,23 @@ declare module PlayFabAdminModels {
15791579
15801580 }
15811581
1582+ /** https://api.playfab.com/Documentation/Entity/datatype/PlayFab.Admin.Models/PlayFab.Admin.Models.EntityKey */
1583+ export interface EntityKey {
1584+ /** Entity profile ID. */
1585+ Id : string ;
1586+ /** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
1587+ Type ?: string ;
1588+ /** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
1589+ TypeString ?: string ;
1590+
1591+ }
1592+
1593+ type EntityTypes = "title"
1594+ | "master_player_account"
1595+ | "title_player_account"
1596+ | "character"
1597+ | "group" ;
1598+
15821599 /** https://api.playfab.com/Documentation/Entity/datatype/PlayFab.Admin.Models/PlayFab.Admin.Models.ExecuteCloudScriptResult */
15831600 export interface ExecuteCloudScriptResult extends PlayFabModule . IPlayFabResultCommon {
15841601 /** Number of PlayFab API requests issued by the CloudScript function */
@@ -1996,7 +2013,9 @@ declare module PlayFabAdminModels {
19962013 | "RoleNameNotAvailable"
19972014 | "GroupNameNotAvailable"
19982015 | "EmailReportAlreadySent"
1999- | "EmailReportRecipientBlacklisted" ;
2016+ | "EmailReportRecipientBlacklisted"
2017+ | "EventNamespaceNotAllowed"
2018+ | "EventEntityNotAllowed" ;
20002019
20012020 /** https://api.playfab.com/Documentation/Entity/datatype/PlayFab.Admin.Models/PlayFab.Admin.Models.GetActionsOnPlayersInSegmentTaskInstanceResult */
20022021 export interface GetActionsOnPlayersInSegmentTaskInstanceResult extends PlayFabModule . IPlayFabResultCommon {
@@ -4183,6 +4202,8 @@ declare module PlayFabAdminModels {
41834202 LastLogin ?: string ;
41844203 /** source by which the user first joined the game, if known */
41854204 Origination ?: string ;
4205+ /** Title player account entity for this user */
4206+ TitlePlayerAccount ?: EntityKey ;
41864207
41874208 }
41884209
0 commit comments