Module Values.InviteUsersRequestSource

Sends email to a maximum of 50 users, inviting them to the specified Amazon Chime Team account. Only Team account types are currently supported for this action.

Sourcetype nonrec t = {
  1. accountId : NonEmptyString.t;
    (*

    The Amazon Chime account ID.

    *)
  2. userEmailList : UserEmailList.t;
    (*

    The user email addresses to which to send the email invitation.

    *)
  3. userType : UserType.t option;
    (*

    The user type.

    *)
}
Sourceval context_ : string
Sourceval make : ?userType:??? -> accountId:NonEmptyString.t -> userEmailList:UserEmailList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of EmailAddress.t ] list | `String of NonEmptyString.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