interface TestAttachment {
    attachmentType?: AttachmentType;
    comment?: string;
    createdDate?: Date;
    fileName?: string;
    id: number;
    size?: number;
    url?: string;
}

Properties

attachmentType?: AttachmentType

Attachment type.

comment?: string

Comment associated with attachment.

createdDate?: Date

Attachment created date.

fileName?: string

Attachment file name

id: number

ID of the attachment.

size?: number

Attachment size.

url?: string

Attachment Url.