interface AttachmentDto {
    _links?: AttachmentLinkDto;
    author?: UserDto;
    created?: DateDto;
    filename?: string;
    mimeType?: string;
    size?: number;
}

Properties

Various URLs for the attachment.

author?: UserDto

Details of the user who attached the file.

created?: DateDto

Date the attachment was added.

filename?: string

Filename of the item attached.

mimeType?: string

MIME type of the attachment.

size?: number

Size of the attachment in bytes.