fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
35 lines (34 loc) • 1.18 kB
TypeScript
/**
* 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.
*/
import { AdditionalCommentDTO } from './';
/**
*
* @export
* @interface CustomerTransitionExecutionDTO
*/
export interface CustomerTransitionExecutionDTO {
/**
* ID of the transition to be performed.
* @type {string}
* @memberof CustomerTransitionExecutionDTO
*/
id?: string;
/**
* Comment explaining the reason for the transition.
* @type {AdditionalCommentDTO}
* @memberof CustomerTransitionExecutionDTO
*/
additionalComment?: AdditionalCommentDTO;
}
export declare function CustomerTransitionExecutionDTOFromJSON(json: any): CustomerTransitionExecutionDTO;
export declare function CustomerTransitionExecutionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerTransitionExecutionDTO;
export declare function CustomerTransitionExecutionDTOToJSON(value?: CustomerTransitionExecutionDTO): any;