All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ognite-sdk-scala_2.13.2.31.882.source-code.data_point_insertion_request.proto Maven / Gradle / Ivy

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