Module Values.GranteeSource

Contains information about the grantee.

Sourcetype nonrec t = {
  1. type_ : Type.t;
    (*

    Type of grantee

    *)
  2. displayName : String_.t option;
    (*

    Screen name of the grantee.

    *)
  3. uRI : String_.t option;
    (*

    URI of the grantee group.

    *)
  4. iD : String_.t option;
    (*

    The canonical user ID of the grantee.

    *)
  5. emailAddress : String_.t option;
    (*

    Email address of the grantee.

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