UNPKG

fetch-jsd

Version:

46 lines (45 loc) 1.22 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 AvatarUrlsBean */ export interface AvatarUrlsBean { /** * The URL of the item\'s 16x16 pixel avatar. * @type {string} * @memberof AvatarUrlsBean */ _16x16?: string; /** * The URL of the item\'s 24x24 pixel avatar. * @type {string} * @memberof AvatarUrlsBean */ _24x24?: string; /** * The URL of the item\'s 32x32 pixel avatar. * @type {string} * @memberof AvatarUrlsBean */ _32x32?: string; /** * The URL of the item\'s 48x48 pixel avatar. * @type {string} * @memberof AvatarUrlsBean */ _48x48?: string; } export declare function AvatarUrlsBeanFromJSON(json: any): AvatarUrlsBean; export declare function AvatarUrlsBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): AvatarUrlsBean; export declare function AvatarUrlsBeanToJSON(value?: AvatarUrlsBean): any;