/** * 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 IssueTypeUpdateBean */ export interface IssueTypeUpdateBean { /** * The unique name for the issue type. The maximum length is 60 characters. * @type {string} * @memberof IssueTypeUpdateBean */ name?: string; /** * The description of the issue type. * @type {string} * @memberof IssueTypeUpdateBean */ description?: string; /** * The ID of an issue type avatar. * @type {number} * @memberof IssueTypeUpdateBean */ avatarId?: number; } export declare function IssueTypeUpdateBeanFromJSON(json: any): IssueTypeUpdateBean; export declare function IssueTypeUpdateBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueTypeUpdateBean; export declare function IssueTypeUpdateBeanToJSON(value?: IssueTypeUpdateBean): any;