fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
34 lines (33 loc) • 892 B
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 DurationDTO
*/
export interface DurationDTO {
/**
* Duration in milliseconds.
* @type {number}
* @memberof DurationDTO
*/
millis?: number;
/**
* Duration in a user-friendly text format.
* @type {string}
* @memberof DurationDTO
*/
friendly?: string;
}
export declare function DurationDTOFromJSON(json: any): DurationDTO;
export declare function DurationDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): DurationDTO;
export declare function DurationDTOToJSON(value?: DurationDTO): any;