/** * 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. */ /** * An issue priority. * @export * @interface Priority */ export interface Priority { [key: string]: object | any; /** * The description of the issue priority. * @type {string} * @memberof Priority */ description?: string; /** * The name of the issue priority. * @type {string} * @memberof Priority */ name?: string; /** * The URL of the icon for the issue priority. * @type {string} * @memberof Priority */ iconUrl?: string; /** * The URL of the issue priority. * @type {string} * @memberof Priority */ self?: string; /** * The ID of the issue priority. * @type {string} * @memberof Priority */ id?: string; /** * The color used to indicate the issue priority. * @type {string} * @memberof Priority */ statusColor?: string; } export declare function PriorityFromJSON(json: any): Priority; export declare function PriorityFromJSONTyped(json: any, ignoreDiscriminator: boolean): Priority; export declare function PriorityToJSON(value?: Priority): any;