Module Values.SsoUserProfileDetailsSource

The SSO user profile detail.

Sourcetype nonrec t = {
  1. username : UserProfileName.t option;
    (*

    The username as part of the SSO user profile detail.

    *)
  2. firstName : FirstName.t option;
    (*

    The first name as part of the SSO user profile detail.

    *)
  3. lastName : LastName.t option;
    (*

    The last name as part of the SSO user profile detail.

    *)
}
Sourceval make : ?username:??? -> ?firstName:??? -> ?lastName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UserProfileName.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