Module Values.BatchResetDevicesForUserRequestSource

Resets multiple devices for a specific user in a Wickr network. This operation forces the selected devices to log out and requires users to re-authenticate, which is useful for security purposes or when devices need to be revoked.

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

    The ID of the Wickr network containing the user whose devices will be reset.

    *)
  2. userId : UserId.t;
    (*

    The ID of the user whose devices will be reset.

    *)
  3. appIds : AppIds.t;
    (*

    A list of application IDs identifying the specific devices to be reset for the user. Maximum 50 devices per batch request.

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

    A unique identifier for this request to ensure idempotency.

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