Module Values_2.UserProfileDetailsSource

The user profile details.

Sourcetype nonrec t = {
  1. domainId : Values_0.DomainId.t option;
    (*

    The domain ID.

    *)
  2. userProfileName : Values_0.UserProfileName.t option;
    (*

    The user profile name.

    *)
  3. status : UserProfileStatus.t option;
    (*

    The status.

    *)
  4. creationTime : Values_0.CreationTime.t option;
    (*

    The creation time.

    *)
  5. lastModifiedTime : Values_0.LastModifiedTime.t option;
    (*

    The last modified time.

    *)
}
Sourceval make : ?domainId:??? -> ?userProfileName:??? -> ?status:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.DomainId.t | `Timestamp of Values_0.CreationTime.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