Interface AttachmentDelete

Delete one or more attachments from a parent feature.

interface AttachmentDelete {
    attachmentIds: readonly FeatureId[];
    parentId: FeatureId;
    signal?: AbortSignal;
}

Properties

attachmentIds: readonly FeatureId[]
parentId: FeatureId
signal?: AbortSignal