Module Values.PermissionEntrySource

A structure containing the identity of one user or group and the Admin, Editor, or Viewer role that they have.

Sourcetype nonrec t = {
  1. user : User.t option;
    (*

    A structure with the ID of the user or group with this role.

    *)
  2. role : Role.t option;
    (*

    Specifies whether the user or group has the Admin, Editor, or Viewer role.

    *)
}
Sourceval make : ?user:??? -> ?role:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of SsoId.t ]) list ]) 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