/** * 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 { AttachmentArchiveItemReadable } from './'; /** * Metadata for an archive (for example a zip) and its contents. * @export * @interface AttachmentArchiveMetadataReadable */ export interface AttachmentArchiveMetadataReadable { /** * The list of the items included in the archive. * @type {Array} * @memberof AttachmentArchiveMetadataReadable */ readonly entries?: Array; /** * The name of the archive file. * @type {string} * @memberof AttachmentArchiveMetadataReadable */ readonly name?: string; /** * The number of items included in the archive. * @type {number} * @memberof AttachmentArchiveMetadataReadable */ readonly totalEntryCount?: number; /** * The MIME type of the attachment. * @type {string} * @memberof AttachmentArchiveMetadataReadable */ readonly mediaType?: string; /** * The ID of the attachment. * @type {number} * @memberof AttachmentArchiveMetadataReadable */ readonly id?: number; } export declare function AttachmentArchiveMetadataReadableFromJSON(json: any): AttachmentArchiveMetadataReadable; export declare function AttachmentArchiveMetadataReadableFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentArchiveMetadataReadable; export declare function AttachmentArchiveMetadataReadableToJSON(value?: AttachmentArchiveMetadataReadable): any;