Module Values.BatchReinviteUserRequestSource

Resends invitation codes to multiple users who have pending invitations in a Wickr network. This operation is useful when users haven't accepted their initial invitations or when invitations have expired.

Sourcetype nonrec t = {
  1. networkId : NetworkId.t;
    (*

    The ID of the Wickr network where users will be reinvited.

    *)
  2. userIds : UserIds.t;
    (*

    A list of user IDs identifying the users to be reinvited to the network. Maximum 50 users per batch request.

    *)
  3. clientToken : ClientToken.t option;
    (*

    A unique identifier for this request to ensure idempotency.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> networkId:NetworkId.t -> userIds:UserIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of UserId.t ] list | `String of NetworkId.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