UNPKG

fetch-jsd

Version:

A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.

46 lines (45 loc) 1.3 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. */ /** * * @export * @interface DateDTO */ export interface DateDTO { /** * Date in ISO8601 format. * @type {string} * @memberof DateDTO */ iso8601?: string; /** * Date in the format used in the Jira REST APIs, which is ISO8601 format but extended with milliseconds. For example, 2016-09-28T23:08:32.097+1000. * @type {string} * @memberof DateDTO */ jira?: string; /** * Date in a user-friendly text format. * @type {string} * @memberof DateDTO */ friendly?: string; /** * Date as the number of milliseconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC), 1 January 1970. * @type {number} * @memberof DateDTO */ epochMillis?: number; } export declare function DateDTOFromJSON(json: any): DateDTO; export declare function DateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): DateDTO; export declare function DateDTOToJSON(value?: DateDTO): any;