fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
42 lines (41 loc) • 1.14 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 UserLinkDTO
*/
export interface UserLinkDTO {
/**
*
* @type {string}
* @memberof UserLinkDTO
*/
self?: string;
/**
* REST API URL for the customer.
* @type {string}
* @memberof UserLinkDTO
*/
jiraRest?: string;
/**
* Links to the various sizes of the customer\'s avatar. Note that this property is deprecated, and will be removed in future versions.
* @type {{ [key: string]: string; }}
* @memberof UserLinkDTO
*/
avatarUrls?: {
[key: string]: string;
};
}
export declare function UserLinkDTOFromJSON(json: any): UserLinkDTO;
export declare function UserLinkDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLinkDTO;
export declare function UserLinkDTOToJSON(value?: UserLinkDTO): any;