playfab_ex v0.2.0 PlayfabEx.Server.CharacterData
Link to this section Summary
Functions
Retrieves the title-specific custom data for the user which is readable and writable by the client
Retrieves the title-specific custom data for the user’s character which cannot be accessed by the client
Retrieves the title-specific custom data for the user’s character which can only be read by the client
Updates the title-specific custom data for the user’s character which is readable and writable by the client
Updates the title-specific custom data for the user’s character which cannot be accessed by the client
Updates the title-specific custom data for the user’s character which can only be read by the client
Link to this section Functions
get_character_data(map()) :: {:ok, map()} | {:error, String.t()}
Retrieves the title-specific custom data for the user which is readable and writable by the client
get_character_internal_data(map()) :: {:ok, map()} | {:error, String.t()}
Retrieves the title-specific custom data for the user’s character which cannot be accessed by the client
get_character_read_only_data(map()) :: {:ok, map()} | {:error, String.t()}
Retrieves the title-specific custom data for the user’s character which can only be read by the client
update_character_data(map()) :: {:ok, map()} | {:error, String.t()}
Updates the title-specific custom data for the user’s character which is readable and writable by the client
update_character_internal_data(map()) :: {:ok, map()} | {:error, String.t()}
Updates the title-specific custom data for the user’s character which cannot be accessed by the client
update_character_read_only_data(map()) :: {:ok, map()} | {:error, String.t()}
Updates the title-specific custom data for the user’s character which can only be read by the client