Module Values.UpdateUserRequestItemSource

The user ID and user fields to update, used with the BatchUpdateUser action.

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

    The user ID.

    *)
  2. licenseType : License.t option;
    (*

    The user license type.

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

    The user type.

    *)
  4. alexaForBusinessMetadata : AlexaForBusinessMetadata.t option;
    (*

    The Alexa for Business metadata.

    *)
}
Sourceval context_ : string
Sourceval make : ?licenseType:??? -> ?userType:??? -> ?alexaForBusinessMetadata:??? -> userId:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `String of SensitiveString.t ]) list ]) 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