module Permissions:sig..end
type t = {
|
effective : |
(* |
Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
| *) |
|
local : |
(* |
Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
| *) |
val effective : (t, string list) GapiLens.t
val local : (t, string list) GapiLens.t
val empty : t
val render : t ->
GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t