Module Values_0.ParticipantDetailsToAddSource

The details to add for the participant.

Sourcetype nonrec t = {
  1. participantRole : ParticipantRole.t option;
    (*

    The role of the participant being added.

    *)
  2. displayName : DisplayName.t option;
    (*

    The display name of the participant.

    *)
  3. participantCapabilities : ParticipantCapabilities.t option;
}
Sourceval make : ?participantRole:??? -> ?displayName:??? -> ?participantCapabilities:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DisplayName.t | `Structure of (string * [> `Enum of string ]) list ]) 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