/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { AttachmentArchiveItemReadableAsResponse } from "../definitions/AttachmentArchiveItemReadableAsResponse"; export interface AttachmentArchiveMetadataReadableAsResponse { /** * The list of the items included in the archive. */ entries?: Array; /** * The ID of the attachment. */ id?: number; /** * The MIME type of the attachment. */ mediaType?: string; /** * The name of the archive file. */ name?: string; /** * The number of items included in the archive. */ totalEntryCount?: number; } //# sourceMappingURL=AttachmentArchiveMetadataReadableAsResponse.d.ts.map