/** * 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 './'; /** * List of system avatars. * @export * @interface SystemAvatars */ export interface SystemAvatars { /** * A list of avatar details. * @type {Array} * @memberof SystemAvatars */ readonly system?: Array; } export declare function SystemAvatarsFromJSON(json: any): SystemAvatars; export declare function SystemAvatarsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemAvatars; export declare function SystemAvatarsToJSON(value?: SystemAvatars): any;