/** * 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. */ /** * Details of the permission. * @export * @interface RestrictedPermission */ export interface RestrictedPermission { [key: string]: object | any; /** * The ID of the permission. Either `id` or `key` must be specified. Use [Get all permissions](#api-rest-api-3-permissions-get) to get the list of permissions. * @type {string} * @memberof RestrictedPermission */ id?: string; /** * The key of the permission. Either `id` or `key` must be specified. Use [Get all permissions](#api-rest-api-3-permissions-get) to get the list of permissions. * @type {string} * @memberof RestrictedPermission */ key?: string; } export declare function RestrictedPermissionFromJSON(json: any): RestrictedPermission; export declare function RestrictedPermissionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RestrictedPermission; export declare function RestrictedPermissionToJSON(value?: RestrictedPermission): any;