state.primitives.proto Maven / Gradle / Ivy
syntax = "proto3";
package proto;
/*
* Copyright (C) 2023 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* This proto file contains primitive value messages.
* These are intended only for situations where the entire value to be stored in state is a single
* primitive. These should never be used as components of another message; use the protobuf
* type instead.
*/
option java_package = "com.hederahashgraph.api.proto.java";
// <<>> This comment is special code for setting PBJ Compiler java package
option java_multiple_files = true;
/**
* A single 64-bit number with no particular meaning.
*/
message ProtoLong {
int64 value = 1;
}
/**
* A single 32-bit number with no particular meaning.
*/
message ProtoInteger {
int32 value = 1;
}
/**
* A single boolean with no particular meaning.
*/
message ProtoBoolean {
bool value = 1;
}
/**
* A single string with no particular meaning.
*/
message ProtoString {
string value = 1;
}
/**
* A single byte array with no particular meaning.
*/
message ProtoBytes {
bytes value = 1;
}