/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { PermissionGrant } from './'; /** * List of permission grants. * @export * @interface PermissionGrants */ export interface PermissionGrants { /** * Expand options that include additional permission grant details in the response. * @type {string} * @memberof PermissionGrants */ readonly expand?: string; /** * Permission grants list. * @type {Array} * @memberof PermissionGrants */ readonly permissions?: Array; } export declare function PermissionGrantsFromJSON(json: any): PermissionGrants; export declare function PermissionGrantsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PermissionGrants; export declare function PermissionGrantsToJSON(value?: PermissionGrants): any;