/** * 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 project avatars. * @export * @interface ProjectAvatars */ export interface ProjectAvatars { /** * List of avatars added to Jira. These avatars may be deleted. * @type {Array} * @memberof ProjectAvatars */ readonly custom?: Array; /** * List of avatars included with Jira. These avatars cannot be deleted. * @type {Array} * @memberof ProjectAvatars */ readonly system?: Array; } export declare function ProjectAvatarsFromJSON(json: any): ProjectAvatars; export declare function ProjectAvatarsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectAvatars; export declare function ProjectAvatarsToJSON(value?: ProjectAvatars): any;