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

.fame.protobuf.2.0.1.source-code.field.proto Maven / Gradle / Ivy

/* SPDX-FileCopyrightText: 2024 German Aerospace Center 
* 
* SPDX-License-Identifier: Apache-2.0 */
syntax = "proto2";

package iobinary;

option java_package = "de.dlr.gitlab.fame.protobuf";
option java_outer_classname = "Field";

message NestedField {
  required string field_name = 1;
  optional int32 series_id = 2;
  repeated int32 int_values = 3 [packed = true];
  repeated string string_values = 4;
  repeated double double_values = 5 [packed = true];
  repeated NestedField fields = 6;
  repeated int64 long_values = 7 [packed = true];
  optional bool is_list = 8 [default = false];
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy