/** * 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. */ /** * Details of an issue resolution. * @export * @interface Resolution */ export interface Resolution { /** * The description of the issue resolution. * @type {string} * @memberof Resolution */ description?: string; /** * The name of the issue resolution. * @type {string} * @memberof Resolution */ name?: string; /** * The URL of the issue resolution. * @type {string} * @memberof Resolution */ self?: string; /** * The ID of the issue resolution. * @type {string} * @memberof Resolution */ id?: string; } export declare function ResolutionFromJSON(json: any): Resolution; export declare function ResolutionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Resolution; export declare function ResolutionToJSON(value?: Resolution): any;