Interface HonuaFeatureLayerUpdateAttachmentRequest

interface HonuaFeatureLayerUpdateAttachmentRequest {
    attachment: HonuaFeatureLayerAttachmentData;
    attachmentId: string | number;
    contentType?: string;
    extraParams?: Record<string, string | number | boolean>;
    name?: string;
    objectId: string | number;
    responseFormat?: "json" | "pjson";
    signal?: AbortSignal;
}

Hierarchy (view full)

Properties

attachmentId: string | number
contentType?: string
extraParams?: Record<string, string | number | boolean>
name?: string
objectId: string | number
responseFormat?: "json" | "pjson"
signal?: AbortSignal