Module Values.PlayerSource

Represents a player in matchmaking. When starting a matchmaking request, a player has a player ID, attributes, and may have latency data. Team information is added after a match has been successfully completed.

Sourcetype nonrec t = {
  1. playerId : PlayerId.t option;
    (*

    A unique identifier for a player

    *)
  2. playerAttributes : PlayerAttributeMap.t option;
    (*

    A collection of key:value pairs containing player information for use in matchmaking. Player attribute keys must match the playerAttributes used in a matchmaking rule set. Example: "PlayerAttributes": {"skill": {"N": "23"}, "gameMode": {"S": "deathmatch"}}. You can provide up to 10 PlayerAttributes.

    *)
  3. team : NonZeroAndMaxString.t option;
    (*

    Name of the team that the player is assigned to in a match. Team names are defined in a matchmaking rule set.

    *)
  4. latencyInMs : LatencyMap.t option;
    (*

    A set of values, expressed in milliseconds, that indicates the amount of latency that a player experiences when connected to Amazon Web Services Regions. If this property is present, FlexMatch considers placing the match only in Regions for which latency is reported. If a matchmaker has a rule that evaluates player latency, players must report latency in order to be matched. If no latency is reported in this scenario, FlexMatch assumes that no Regions are available to the player and the ticket is not matchable.

    *)
}
Sourceval make : ?playerId:??? -> ?playerAttributes:??? -> ?team:??? -> ?latencyInMs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of NonZeroAndMaxString.t ] * [> `Integer of PositiveInteger.t | `Structure of (string * [> `Double of DoubleObject.t | `List of [> `String of PlayerAttributeString.t ] list | `Map of ([> `String of PlayerAttributeString.t ] * [> `Double of DoubleObject.t ]) list | `String of PlayerAttributeString.t ]) list ]) list | `String of PlayerId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t