/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { PermissionGrant } from "../definitions/PermissionGrant"; import { Scope } from "../definitions/Scope"; export interface PermissionScheme { /** * A description for the permission scheme. */ description?: string; /** * The name of the permission scheme. Must be unique. */ name: string; /** * The permission scheme to create or update. See [About permission schemes and grants](../api-group-permission-schemes/#about-permission-schemes-and-grants) for more information. */ permissions?: Array; /** * The scope of the permission scheme. */ scope?: Scope; [x: string]: any; } //# sourceMappingURL=PermissionScheme.d.ts.map