diffusion
Version:
Diffusion JavaScript client
27 lines (26 loc) • 858 B
JavaScript
;
/**
* @module Services.Timeseries
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimeSeriesTimestampAppendRequest = void 0;
/**
* Data type for a TIME_SERIES_TIMESTAMP_APPEND request.
*/
var TimeSeriesTimestampAppendRequest = /** @class */ (function () {
/**
* Create a new TimeSeriesAppendRequest instance
*
* @param path the path of the timeseries topic
* @param dataType the data type to append
* @param value the value to append
*/
function TimeSeriesTimestampAppendRequest(path, dataType, value, timestamp) {
this.path = path;
this.dataType = dataType;
this.value = value;
this.timestamp = timestamp;
}
return TimeSeriesTimestampAppendRequest;
}());
exports.TimeSeriesTimestampAppendRequest = TimeSeriesTimestampAppendRequest;