/** * 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. */ import { Avatar } from './'; /** * Details about system and custom avatars. * @export * @interface Avatars */ export interface Avatars { /** * Custom avatars list. * @type {Array} * @memberof Avatars */ readonly custom?: Array; /** * System avatars list. * @type {Array} * @memberof Avatars */ readonly system?: Array; } export declare function AvatarsFromJSON(json: any): Avatars; export declare function AvatarsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Avatars; export declare function AvatarsToJSON(value?: Avatars): any;