> ## 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.

# PFUserTitleInfo

> PFUserTitleInfo data model.

PFUserTitleInfo data model.

## Syntax

```cpp theme={null}
typedef struct PFUserTitleInfo {  
    const char* avatarUrl;  
    time_t created;  
    const char* displayName;  
    time_t const* firstLogin;  
    bool const* isBanned;  
    time_t const* lastLogin;  
    PFUserOrigination const* origination;  
    PFEntityKey const* titlePlayerAccount;  
} PFUserTitleInfo;  
```

### Members

**`avatarUrl`**   const char\*\
*is null-terminated*

(Optional) URL to the player's avatar.

**`created`**   time\_t

Timestamp indicating when the user was first associated with this game (this can differ significantly from when the user first registered with PlayFab).

**`displayName`**   const char\*\
*is null-terminated*

(Optional) Name of the user, as it is displayed in-game.

**`firstLogin`**   time\_t const\*\
*may be nullptr*

(Optional) Timestamp indicating when the user first signed into this game (this can differ from the Created timestamp, as other events, such as issuing a beta key to the user, can associate the title to the user).

**`isBanned`**   bool const\*\
*may be nullptr*

(Optional) Boolean indicating whether or not the user is currently banned for a title.

**`lastLogin`**   time\_t const\*\
*may be nullptr*

(Optional) Timestamp for the last user login for this title.

**`origination`**   [PFUserOrigination](/services/playfab/api-references/c/pftypes/enums/pfuserorigination) const\*\
*may be nullptr*

(Optional) Source by which the user first joined the game, if known.

**`titlePlayerAccount`**   [PFEntityKey](/services/playfab/api-references/c/pftypes/structs/pfentitykey-c) const\*\
*may be nullptr*

(Optional) Title player account entity for this user.

## Requirements

**Header:** PFTypes.h

## See also

[PFTypes members](/services/playfab/api-references/c/pftypes/pftypes_members)


## Related topics

- [PFUserAccountInfo](/services/playfab/api-references/c/pftypes/structs/pfuseraccountinfo.md)
- [Services C API overview - PFTypes.h](/services/playfab/api-references/c/pftypes/pftypes_members.md)
- [PFFriendsFriendInfo](/services/playfab/api-references/c/pffriendstypes/structs/pffriendsfriendinfo.md)
- [PFUserSteamInfo](/services/playfab/api-references/c/pftypes/structs/pfusersteaminfo.md)
- [XR-052 User state, title-save location, and roaming](/publishing/certification/xr/xr-052.md)
