/**
 * 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.
 */
/**
 *
 * @export
 * @interface CustomerTransitionDTO
 */
export interface CustomerTransitionDTO {
    /**
     * ID of the transition.
     * @type {string}
     * @memberof CustomerTransitionDTO
     */
    id?: string;
    /**
     * Name of the transition.
     * @type {string}
     * @memberof CustomerTransitionDTO
     */
    name?: string;
}
export declare function CustomerTransitionDTOFromJSON(json: any): CustomerTransitionDTO;
export declare function CustomerTransitionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerTransitionDTO;
export declare function CustomerTransitionDTOToJSON(value?: CustomerTransitionDTO): any;
