Module Values.InviteSource

Invitation object returned after emailing users to invite them to join the Amazon Chime Team account.

Sourcetype nonrec t = {
  1. inviteId : String_.t option;
    (*

    The invite ID.

    *)
  2. status : InviteStatus.t option;
    (*

    The status of the invite.

    *)
  3. emailAddress : EmailAddress.t option;
    (*

    The email address to which the invite is sent.

    *)
  4. emailStatus : EmailStatus.t option;
    (*

    The status of the invite email.

    *)
}
Sourceval make : ?inviteId:??? -> ?status:??? -> ?emailAddress:??? -> ?emailStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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