fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
41 lines (40 loc) • 1.44 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 { RequestTypeFieldDTO } from './';
/**
*
* @export
* @interface CustomerRequestCreateMetaDTO
*/
export interface CustomerRequestCreateMetaDTO {
/**
* List of the fields included in this request.
* @type {Array<RequestTypeFieldDTO>}
* @memberof CustomerRequestCreateMetaDTO
*/
requestTypeFields?: Array<RequestTypeFieldDTO>;
/**
* Flag indicating if a request can be raised on behalf of another user (true) or not.
* @type {boolean}
* @memberof CustomerRequestCreateMetaDTO
*/
canRaiseOnBehalfOf?: boolean;
/**
* Flag indicating if participants can be added to a request (true) or not.
* @type {boolean}
* @memberof CustomerRequestCreateMetaDTO
*/
canAddRequestParticipants?: boolean;
}
export declare function CustomerRequestCreateMetaDTOFromJSON(json: any): CustomerRequestCreateMetaDTO;
export declare function CustomerRequestCreateMetaDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerRequestCreateMetaDTO;
export declare function CustomerRequestCreateMetaDTOToJSON(value?: CustomerRequestCreateMetaDTO): any;