Module Values.EntityDisplayDataSource

Information about the user entity.

Sourcetype nonrec t = {
  1. userName : NameType.t option;
    (*

    The name of the user.

    *)
  2. groupName : NameType.t option;
    (*

    The name of the group.

    *)
  3. identifiedUserName : NameType.t option;
    (*

    The user name of the user.

    *)
  4. firstName : NameType.t option;
    (*

    The first name of the user.

    *)
  5. lastName : NameType.t option;
    (*

    The last name of the user.

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