Interface HonuaFeatureLayerQueryAttachmentsRequest

interface HonuaFeatureLayerQueryAttachmentsRequest {
    extraParams?: Record<string, string | number | boolean>;
    method?: QueryMethod;
    objectIds?: string | readonly number[];
    responseFormat?: "json" | "pjson";
    signal?: AbortSignal;
    where?: string;
}

Properties

extraParams?: Record<string, string | number | boolean>
method?: QueryMethod
objectIds?: string | readonly number[]
responseFormat?: "json" | "pjson"
signal?: AbortSignal
where?: string