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.01 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 IncludedFields
*/
export interface IncludedFields {
/**
*
* @type {Array<string>}
* @memberof IncludedFields
*/
included?: Array<string>;
/**
*
* @type {Array<string>}
* @memberof IncludedFields
*/
actuallyIncluded?: Array<string>;
/**
*
* @type {Array<string>}
* @memberof IncludedFields
*/
excluded?: Array<string>;
}
export declare function IncludedFieldsFromJSON(json: any): IncludedFields;
export declare function IncludedFieldsFromJSONTyped(json: any, ignoreDiscriminator: boolean): IncludedFields;
export declare function IncludedFieldsToJSON(value?: IncludedFields): any;