Interface for configuration parameters for fetching time series data.

interface FetchTSDataConfig {
    endpoint: string;
    nodeId: string;
    paramName: string;
    requestParams: Record<string, any>;
}

Properties

endpoint: string
nodeId: string
paramName: string
requestParams: Record<string, any>