com.hedera.hashgraph.sdk.proto.SettingOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: basic_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface SettingOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.Setting)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* name of the property
*
*
* string name = 1;
* @return The name.
*/
java.lang.String getName();
/**
*
**
* name of the property
*
*
* string name = 1;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
**
* value of the property
*
*
* string value = 2;
* @return The value.
*/
java.lang.String getValue();
/**
*
**
* value of the property
*
*
* string value = 2;
* @return The bytes for value.
*/
com.google.protobuf.ByteString
getValueBytes();
/**
*
**
* any data associated with property
*
*
* bytes data = 3;
* @return The data.
*/
com.google.protobuf.ByteString getData();
}