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.19 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 AttachmentLinkDTO
*/
export interface AttachmentLinkDTO {
/**
*
* @type {string}
* @memberof AttachmentLinkDTO
*/
self?: string;
/**
* REST API URL for the attachment
* @type {string}
* @memberof AttachmentLinkDTO
*/
jiraRest?: string;
/**
* URL for the attachment.
* @type {string}
* @memberof AttachmentLinkDTO
*/
content?: string;
/**
* URL for the attachment\'s thumbnail image.
* @type {string}
* @memberof AttachmentLinkDTO
*/
thumbnail?: string;
}
export declare function AttachmentLinkDTOFromJSON(json: any): AttachmentLinkDTO;
export declare function AttachmentLinkDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentLinkDTO;
export declare function AttachmentLinkDTOToJSON(value?: AttachmentLinkDTO): any;