UNPKG

fetch-jsd

Version:

A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.

36 lines (35 loc) 1.08 kB
/** * 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 ApprovalDecisionRequestDTO */ export interface ApprovalDecisionRequestDTO { /** * Response to the approval request. * @type {string} * @memberof ApprovalDecisionRequestDTO */ decision?: ApprovalDecisionRequestDTODecisionEnum; } export declare function ApprovalDecisionRequestDTOFromJSON(json: any): ApprovalDecisionRequestDTO; export declare function ApprovalDecisionRequestDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApprovalDecisionRequestDTO; export declare function ApprovalDecisionRequestDTOToJSON(value?: ApprovalDecisionRequestDTO): any; /** * @export * @enum {string} */ export declare enum ApprovalDecisionRequestDTODecisionEnum { Approve = "approve", Decline = "decline" }