/** * 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 { AttachmentArchiveEntry } from './'; /** * * @export * @interface AttachmentArchiveImpl */ export interface AttachmentArchiveImpl { /** * The number of items in the archive. * @type {number} * @memberof AttachmentArchiveImpl */ totalEntryCount?: number; /** * The list of the items included in the archive. * @type {Array} * @memberof AttachmentArchiveImpl */ entries?: Array; } export declare function AttachmentArchiveImplFromJSON(json: any): AttachmentArchiveImpl; export declare function AttachmentArchiveImplFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentArchiveImpl; export declare function AttachmentArchiveImplToJSON(value?: AttachmentArchiveImpl): any;