fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
40 lines (39 loc) • 1.17 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.
*/
/**
*
* @export
* @interface RequestTypeFieldValueDTO
*/
export interface RequestTypeFieldValueDTO {
/**
* Value of the field.
* @type {string}
* @memberof RequestTypeFieldValueDTO
*/
value?: string;
/**
* Label for the field.
* @type {string}
* @memberof RequestTypeFieldValueDTO
*/
label?: string;
/**
* List of child fields.
* @type {Array<RequestTypeFieldValueDTO>}
* @memberof RequestTypeFieldValueDTO
*/
children?: Array<RequestTypeFieldValueDTO>;
}
export declare function RequestTypeFieldValueDTOFromJSON(json: any): RequestTypeFieldValueDTO;
export declare function RequestTypeFieldValueDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestTypeFieldValueDTO;
export declare function RequestTypeFieldValueDTOToJSON(value?: RequestTypeFieldValueDTO): any;