UNPKG

fetch-jsd

Version:

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

47 lines (46 loc) 1.58 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. */ import { CustomerRequestActionDTO } from './'; /** * * @export * @interface CustomerRequestActionsDTO */ export interface CustomerRequestActionsDTO { /** * Action of adding attachments to a request. * @type {CustomerRequestActionDTO} * @memberof CustomerRequestActionsDTO */ addAttachment?: CustomerRequestActionDTO; /** * Action of adding comments to a request. * @type {CustomerRequestActionDTO} * @memberof CustomerRequestActionsDTO */ addComment?: CustomerRequestActionDTO; /** * Action of adding participants to a request. * @type {CustomerRequestActionDTO} * @memberof CustomerRequestActionsDTO */ addParticipant?: CustomerRequestActionDTO; /** * Action of removing participants from a request. * @type {CustomerRequestActionDTO} * @memberof CustomerRequestActionsDTO */ removeParticipant?: CustomerRequestActionDTO; } export declare function CustomerRequestActionsDTOFromJSON(json: any): CustomerRequestActionsDTO; export declare function CustomerRequestActionsDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerRequestActionsDTO; export declare function CustomerRequestActionsDTOToJSON(value?: CustomerRequestActionsDTO): any;