using System.Text.Json.Serialization;
namespace Prospect.Server.Api.Models.Client;
public class FGetUserDataRequest
{
///
/// [optional] The version that currently exists according to the caller. The call will return the data for all of the keys if the
/// version in the system is greater than this.
///
[JsonPropertyName("IfChangedFromDataVersion")]
public List IfChangedFromDataVersion { get; set; }
///
/// [optional] List of unique keys to load from.
///
[JsonPropertyName("Keys")]
public List Keys { get; set; }
///
/// [optional] Unique PlayFab identifier of the user to load data for. Optional, defaults to yourself if not set. When specified to a
/// PlayFab id of another player, then this will only return public keys for that account.
///
[JsonPropertyName("PlayFabId")]
public string PlayFabId { get; set; }
}