Module Values.PlacedPlayerSessionSource

Information about a player session. This object contains only the player ID and player session ID. To retrieve full details on a player session, call DescribePlayerSessions with the player session ID.

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

    A unique identifier for a player that is associated with this player session.

    *)
  2. playerSessionId : PlayerSessionId.t option;
    (*

    A unique identifier for a player session.

    *)
}
Sourceval make : ?playerId:??? -> ?playerSessionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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