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

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

online docs

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

online docs

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

online docs

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

online docs

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

online docs

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

online docs