ognite-sdk-scala_2.13.2.31.882.source-code.data_point_insertion_request.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;
option java_multiple_files = true;
option java_package = "com.cognite.v1.timeseries.proto";
import "data_points.proto";
message DataPointInsertionItem {
oneof idOrExternalId {
int64 id = 1;
string externalId = 2;
}
oneof datapointType {
NumericDatapoints numericDatapoints = 3;
StringDatapoints stringDatapoints = 4;
}
}
message DataPointInsertionRequest {
repeated DataPointInsertionItem items = 1;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy