playfab_ex v0.2.0 PlayfabEx.Server.Default.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

Link to this function get_character_data(params)
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

@link https://api.playfab.com/documentation/server/method/GetCharacterData

Link to this function get_character_internal_data(params)
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

@link https://api.playfab.com/documentation/server/method/GetCharacterInternalData

Link to this function get_character_read_only_data(params)
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

@link https://api.playfab.com/documentation/server/method/GetCharacterReadOnlyData

Link to this function update_character_data(params)
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

@link https://api.playfab.com/documentation/server/method/UpdateCharacterData

Link to this function update_character_internal_data(params)
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

@link https://api.playfab.com/documentation/server/method/UpdateCharacterInternalData

Link to this function update_character_read_only_data(params)
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

@link https://api.playfab.com/documentation/server/method/UpdateCharacterReadOnlyData