/** * 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 { UserPermission } from './'; /** * Details about permissions. * @export * @interface Permissions */ export interface Permissions { /** * List of permissions. * @type {{ [key: string]: UserPermission; }} * @memberof Permissions */ readonly permissions?: { [key: string]: UserPermission; }; } export declare function PermissionsFromJSON(json: any): Permissions; export declare function PermissionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Permissions; export declare function PermissionsToJSON(value?: Permissions): any;