/** * 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 IdOrKeyBean */ export interface IdOrKeyBean { /** * The key of the referenced item. * @type {string} * @memberof IdOrKeyBean */ key?: string; /** * The ID of the referenced item. * @type {number} * @memberof IdOrKeyBean */ id?: number; } export declare function IdOrKeyBeanFromJSON(json: any): IdOrKeyBean; export declare function IdOrKeyBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdOrKeyBean; export declare function IdOrKeyBeanToJSON(value?: IdOrKeyBean): any;