Interface DataPointSubscriptionListDataResponse

interface DataPointSubscriptionListDataResponse {
    hasNext: boolean;
    partitions: {
        index: number;
        nextCursor: string;
    }[];
    subscriptionChanges?: {
        added?: GetTimeSeriesForSubscription[];
        removed?: GetTimeSeriesForSubscription[];
    };
    updates: DataPointSubscriptionDataUpdate[];
}

Properties

hasNext: boolean
partitions: {
    index: number;
    nextCursor: string;
}[]
subscriptionChanges?: {
    added?: GetTimeSeriesForSubscription[];
    removed?: GetTimeSeriesForSubscription[];
}