Module Values.PrincipalOutputSource

The principal for which the permission applies.

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

    The unique identifier of the user.

    *)
  2. userType : PrincipalOutputUserTypeEnum.t option;
    (*

    The type of the user.

    *)
  3. email : PrincipalOutputEmailString.t option;
    (*

    The email address associated with the user.

    *)
}
Sourceval make : ?userId:??? -> ?userType:??? -> ?email:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PrincipalOutputUserIdString.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