Interface AttachmentUpdate

Update an existing attachment in place.

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

Hierarchy (view full)

Properties

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