Module Values.UpdateUserRequestSource

Updates a information associated with a user id.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t;
    (*

    The identifier of the application the user is attached to.

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

    The email id attached to the user.

    *)
  3. userAliasesToUpdate : UserAliases.t option;
    (*

    The user aliases attached to the user id that are to be updated.

    *)
  4. userAliasesToDelete : UserAliases.t option;
    (*

    The user aliases attached to the user id that are to be deleted.

    *)
}
Sourceval context_ : string
Sourceval make : ?userAliasesToUpdate:??? -> ?userAliasesToDelete:??? -> applicationId:ApplicationId.t -> userId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of IndexId.t ]) list ] list | `String of ApplicationId.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