.fame.protobuf.1.5.0.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 fieldName = 1;
optional int32 seriesId = 2;
repeated int32 intValue = 3;
repeated string stringValue = 4;
repeated double doubleValue = 5;
repeated NestedField field = 6;
repeated int64 longValue = 7;
optional bool isList = 8 [default = false];
}