/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * 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 UserBeanAvatarUrls */ export interface UserBeanAvatarUrls { /** * The URL of the user\'s 24x24 pixel avatar. * @type {string} * @memberof UserBeanAvatarUrls */ _24x24?: string; /** * The URL of the user\'s 16x16 pixel avatar. * @type {string} * @memberof UserBeanAvatarUrls */ _16x16?: string; /** * The URL of the user\'s 32x32 pixel avatar. * @type {string} * @memberof UserBeanAvatarUrls */ _32x32?: string; /** * The URL of the user\'s 48x48 pixel avatar. * @type {string} * @memberof UserBeanAvatarUrls */ _48x48?: string; } export declare function UserBeanAvatarUrlsFromJSON(json: any): UserBeanAvatarUrls; export declare function UserBeanAvatarUrlsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserBeanAvatarUrls; export declare function UserBeanAvatarUrlsToJSON(value?: UserBeanAvatarUrls): any;