/**
 * Service Desk Public REST API
 * Public REST API for Jira Service Desk
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * A status category.
 * @export
 * @interface StatusCategory
 */
export interface StatusCategory {
    [key: string]: object | any;
    /**
     * The URL of the status category.
     * @type {string}
     * @memberof StatusCategory
     */
    readonly self?: string;
    /**
     * The ID of the status category.
     * @type {number}
     * @memberof StatusCategory
     */
    readonly id?: number;
    /**
     * The key of the status category.
     * @type {string}
     * @memberof StatusCategory
     */
    readonly key?: string;
    /**
     * The name of the color used to represent the status category.
     * @type {string}
     * @memberof StatusCategory
     */
    readonly colorName?: string;
    /**
     * The name of the status category.
     * @type {string}
     * @memberof StatusCategory
     */
    readonly name?: string;
}
export declare function StatusCategoryFromJSON(json: any): StatusCategory;
export declare function StatusCategoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): StatusCategory;
export declare function StatusCategoryToJSON(value?: StatusCategory): any;
