Module Values.DisableUserRequestSource

Denies access to the FinSpace web application and API for the specified user.

Sourcetype nonrec t = {
  1. userId : UserId.t;
    (*

    The unique identifier for the user that you want to deactivate.

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

    A token that ensures idempotency. This token expires in 10 minutes.

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