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) 892 B
/** * 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 SourceDTO */ export interface SourceDTO { [key: string]: object | any; /** * Type of the knowledge base source * @type {string} * @memberof SourceDTO */ type?: SourceDTOTypeEnum; } export declare function SourceDTOFromJSON(json: any): SourceDTO; export declare function SourceDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): SourceDTO; export declare function SourceDTOToJSON(value?: SourceDTO): any; /** * @export * @enum {string} */ export declare enum SourceDTOTypeEnum { Confluence = "confluence" }