/** * 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. */ /** * * @export * @interface IdBean */ export interface IdBean { /** * The ID of the permission scheme to associate with the project. Use the [Get all permission schemes](#api-rest-api-3-permissionscheme-get) resource to get a list of permission scheme IDs. * @type {number} * @memberof IdBean */ id: number; } export declare function IdBeanFromJSON(json: any): IdBean; export declare function IdBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdBean; export declare function IdBeanToJSON(value?: IdBean): any;