/** * 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. */ /** * List of project permissions and the projects and issues those permissions grant access to. * @export * @interface BulkProjectPermissionGrants */ export interface BulkProjectPermissionGrants { /** * A project permission, * @type {string} * @memberof BulkProjectPermissionGrants */ permission: string; /** * IDs of the projects the user has the permission for. * @type {Array} * @memberof BulkProjectPermissionGrants */ projects: Array; /** * IDs of the issues the user has the permission for. * @type {Array} * @memberof BulkProjectPermissionGrants */ issues: Array; } export declare function BulkProjectPermissionGrantsFromJSON(json: any): BulkProjectPermissionGrants; export declare function BulkProjectPermissionGrantsFromJSONTyped(json: any, ignoreDiscriminator: boolean): BulkProjectPermissionGrants; export declare function BulkProjectPermissionGrantsToJSON(value?: BulkProjectPermissionGrants): any;