/** * 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 MinimalIssueTypeOutput */ export interface MinimalIssueTypeOutput { /** * * @type {string} * @memberof MinimalIssueTypeOutput */ name?: string; /** * * @type {number} * @memberof MinimalIssueTypeOutput */ avatarId?: number; /** * * @type {number} * @memberof MinimalIssueTypeOutput */ id?: number; } export declare function MinimalIssueTypeOutputFromJSON(json: any): MinimalIssueTypeOutput; export declare function MinimalIssueTypeOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MinimalIssueTypeOutput; export declare function MinimalIssueTypeOutputToJSON(value?: MinimalIssueTypeOutput): any;