/** * 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. */ /** * * @export * @interface AttachmentArchiveEntry */ export interface AttachmentArchiveEntry { /** * * @type {number} * @memberof AttachmentArchiveEntry */ size?: number; /** * * @type {string} * @memberof AttachmentArchiveEntry */ name?: string; /** * * @type {number} * @memberof AttachmentArchiveEntry */ entryIndex?: number; /** * * @type {string} * @memberof AttachmentArchiveEntry */ abbreviatedName?: string; /** * * @type {string} * @memberof AttachmentArchiveEntry */ mediaType?: string; } export declare function AttachmentArchiveEntryFromJSON(json: any): AttachmentArchiveEntry; export declare function AttachmentArchiveEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentArchiveEntry; export declare function AttachmentArchiveEntryToJSON(value?: AttachmentArchiveEntry): any;