Module Values.PermissionGroupByUserSource

The structure of a permission group associated with a user.

Sourcetype nonrec t = {
  1. permissionGroupId : PermissionGroupId.t option;
    (*

    The unique identifier for the permission group.

    *)
  2. name : PermissionGroupName.t option;
    (*

    The name of the permission group.

    *)
  3. membershipStatus : PermissionGroupMembershipStatus.t option;
    (*

    Indicates the status of the user within a permission group. ADDITION_IN_PROGRESS – The user is currently being added to the permission group. ADDITION_SUCCESS – The user is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.

    *)
}
Sourceval make : ?permissionGroupId:??? -> ?name:??? -> ?membershipStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PermissionGroupId.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