Public Member Functions | |
| void | BatchGetGameProfiles (ICollection< string > userIds, ResultCallback< UserGameProfiles[]> callback) |
| Get all profiles of specified users. | |
| void | GetAllGameProfiles (ResultCallback< GameProfile[]> callback) |
| Get all profiles of current user. | |
| void | CreateGameProfile (GameProfileRequest gameProfile, ResultCallback< GameProfile > callback) |
| Create new profile for current user. | |
| void | GetGameProfile (string profileId, ResultCallback< GameProfile > callback) |
| Get a profile of current user by the profile id. | |
| void | UpdateGameProfile (GameProfile gameProfile, ResultCallback< GameProfile > callback) |
| Update current user's game profile. | |
| void | UpdateGameProfile (string profileId, GameProfileRequest gameProfile, ResultCallback< GameProfile > callback) |
| Update current user's game profile identified by the game profile id. | |
| void | DeleteGameProfile (string profileId, ResultCallback callback) |
| Delete current user's game profile identified by the game profile id. | |
| void | GetGameProfileAttribute (string profileId, string attributeName, ResultCallback< GameProfileAttribute > callback) |
| Get attribute of specified current user's game profile identified by the attribute name. | |
| void | UpdateGameProfileAttribute (string profileId, GameProfileAttribute attribute, ResultCallback< GameProfile > callback) |
| Update an attribute of current user's game profile. | |
Additional Inherited Members | |
| Properties inherited from AccelByte.Core.WrapperBase | |
| Utils.AccelByteIdValidator | IdValidator [get] |
|
inline |
Get all profiles of specified users.
| userIds | Id of some users to get |
| callback | Returns all profiles for specified users via callback when completed. |
|
inline |
Create new profile for current user.
| gameProfile | The game profile that about to create |
| callback | Returns the created game profile via callback when completed. |
|
inline |
Delete current user's game profile identified by the game profile id.
| profileId | The id of game profile that about to delete |
| callback | Returns boolean status via callback when completed. |
|
inline |
Get all profiles of current user.
| callback | Returns all profiles of current user via callback when completed. |
|
inline |
Get a profile of current user by the profile id.
| profileId | the id of profile that about to get |
| callback | Returns a profile of current user via callback when completed. |
|
inline |
Get attribute of specified current user's game profile identified by the attribute name.
| profileId | The game profile that about to get |
| attributeName | The attribute name that about to get |
| callback | Returns an attribute via callback when completed. |
|
inline |
Update current user's game profile.
| gameProfile | The game profile that about to update |
| callback | Returns updated game profile via callback when completed. |
|
inline |
Update current user's game profile identified by the game profile id.
| profileId | The id of game profile that about to update |
| gameProfile | The game profile that about to update |
| callback | Returns updated game profile via callback when completed. |
|
inline |
Update an attribute of current user's game profile.
| profileId | The id of game profile that about to update |
| attribute | The attribute of game profile that about to update |
| callback | Returns updated game profile via callback when completed. |