interface Attachment {
    Links?: AttachmentLink;
    author?: ServiceDesk.ServiceDeskModels.User;
    created?: Date;
    filename?: string;
    mimeType?: string;
    size?: number;
}

Properties

created?: Date
filename?: string

Filename of the item attached.

mimeType?: string

MIME type of the attachment.

size?: number

Size of the attachment in bytes.