Interface FeatureLayerAddAttachmentOptions

interface FeatureLayerAddAttachmentOptions {
    attachment: FeatureLayerAttachmentData;
    contentType?: string;
    extraParams?: Record<string, string | number | boolean>;
    maxAttachmentBytes?: number;
    name?: string;
    objectId: number;
    responseFormat?: "json" | "pjson";
}

Hierarchy (view full)

Properties

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