/** * 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 { BulkProjectPermissionGrants } from './'; /** * Details of global and project permissions granted to the user. * @export * @interface BulkPermissionGrants */ export interface BulkPermissionGrants { /** * List of project permissions and the projects and issues those permissions provide access to. * @type {Array} * @memberof BulkPermissionGrants */ projectPermissions: Array; /** * List of permissions granted to the user. * @type {Array} * @memberof BulkPermissionGrants */ globalPermissions: Array; } export declare function BulkPermissionGrantsFromJSON(json: any): BulkPermissionGrants; export declare function BulkPermissionGrantsFromJSONTyped(json: any, ignoreDiscriminator: boolean): BulkPermissionGrants; export declare function BulkPermissionGrantsToJSON(value?: BulkPermissionGrants): any;