/** * 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. */ /** * Metadata for an item in an attachment archive. * @export * @interface AttachmentArchiveItemReadable */ export interface AttachmentArchiveItemReadable { /** * The MIME type of the archive item. * @type {string} * @memberof AttachmentArchiveItemReadable */ readonly mediaType?: string; /** * The label for the archive item. * @type {string} * @memberof AttachmentArchiveItemReadable */ readonly label?: string; /** * The path of the archive item. * @type {string} * @memberof AttachmentArchiveItemReadable */ readonly path?: string; /** * The position of the item within the archive. * @type {number} * @memberof AttachmentArchiveItemReadable */ readonly index?: number; /** * The size of the archive item. * @type {string} * @memberof AttachmentArchiveItemReadable */ readonly size?: string; } export declare function AttachmentArchiveItemReadableFromJSON(json: any): AttachmentArchiveItemReadable; export declare function AttachmentArchiveItemReadableFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentArchiveItemReadable; export declare function AttachmentArchiveItemReadableToJSON(value?: AttachmentArchiveItemReadable): any;