Module Values_0.AttendeeSource

The attendee information, including attendee ID and join token.

Sourcetype nonrec t = {
  1. attendeeId : AttendeeId.t option;
    (*

    The Amazon Chime SDK attendee ID.

    *)
  2. joinToken : JoinToken.t option;
    (*

    The join token used by the Amazon Chime SDK attendee.

    *)
}
Sourceval make : ?attendeeId:??? -> ?joinToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AttendeeId.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