Interface AttachmentAdd

Add-attachment request. attachment accepts Blob, File, or string.

interface AttachmentAdd {
    attachment: string | Blob | File;
    contentType?: string;
    name?: string;
    parentId: FeatureId;
    signal?: AbortSignal;
}

Hierarchy (view full)

Properties

attachment: string | Blob | File
contentType?: string
name?: string
parentId: FeatureId
signal?: AbortSignal