Module Values.GranteeSource

Container for the person being granted permissions.

Sourcetype nonrec t = {
  1. displayName : DisplayName.t option;
  2. emailAddress : EmailAddress.t option;
  3. iD : ID.t option;
    (*

    The canonical user ID of the grantee.

    *)
  4. type_ : Type.t;
    (*

    Type of grantee

    *)
  5. uRI : URI.t option;
    (*

    URI of the grantee group.

    *)
}
Sourceval context_ : string
Sourceval make : ?displayName:??? -> ?emailAddress:??? -> ?iD:??? -> ?uRI:??? -> type_:Type.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DisplayName.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