ognite-sdk-scala_2.13.2.31.882.source-code.data_point_list_response.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cognite-sdk-scala_2.13 Show documentation
Show all versions of cognite-sdk-scala_2.13 Show documentation
Scala SDK for Cognite Data Fusion.
The newest version!
// Copyright 2020 Cognite AS
// SPDX-License-Identifier: Apache-2.0
syntax = "proto3";
package com.cognite.v1.timeseries.proto;
import "data_points.proto";
option java_multiple_files = true;
message DataPointListItem {
int64 id = 1;
string externalId = 2;
bool isString = 6;
bool isStep = 7;
string unit = 8;
oneof datapointType {
NumericDatapoints numericDatapoints = 3;
StringDatapoints stringDatapoints = 4;
AggregateDatapoints aggregateDatapoints = 5;
}
}
message DataPointListResponse {
repeated DataPointListItem items = 1;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy