Metadata for an item in an attachment archive.

interface AttachmentArchiveItemReadable {
    index?: number;
    label?: string;
    mediaType?: string;
    path?: string;
    size?: string;
}

Properties

index?: number

The position of the item within the archive.

label?: string

The label for the archive item.

mediaType?: string

The MIME type of the archive item.

path?: string

The path of the archive item.

size?: string

The size of the archive item.