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.17 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 { ContentDTO, SourceDTO } from './'; /** * * @export * @interface ArticleDTO */ export interface ArticleDTO { /** * Title of the article. * @type {string} * @memberof ArticleDTO */ title?: string; /** * Excerpt of the article which matches the given query string. * @type {string} * @memberof ArticleDTO */ excerpt?: string; /** * Source of the article. * @type {SourceDTO} * @memberof ArticleDTO */ source?: SourceDTO; /** * * @type {ContentDTO} * @memberof ArticleDTO */ content?: ContentDTO; } export declare function ArticleDTOFromJSON(json: any): ArticleDTO; export declare function ArticleDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArticleDTO; export declare function ArticleDTOToJSON(value?: ArticleDTO): any;