com.hedera.hashgraph.sdk.proto.ConsensusGetTopicInfoResponseOrBuilder 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: consensus_get_topic_info.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface ConsensusGetTopicInfoResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ConsensusGetTopicInfoResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Standard response from node to client, including the requested fields: cost, or state proof, or both, or neither.
*
*
* .proto.ResponseHeader header = 1;
* @return Whether the header field is set.
*/
boolean hasHeader();
/**
*
**
* Standard response from node to client, including the requested fields: cost, or state proof, or both, or neither.
*
*
* .proto.ResponseHeader header = 1;
* @return The header.
*/
com.hedera.hashgraph.sdk.proto.ResponseHeader getHeader();
/**
*
**
* Standard response from node to client, including the requested fields: cost, or state proof, or both, or neither.
*
*
* .proto.ResponseHeader header = 1;
*/
com.hedera.hashgraph.sdk.proto.ResponseHeaderOrBuilder getHeaderOrBuilder();
/**
*
**
* Topic identifier.
*
*
* .proto.TopicID topicID = 2;
* @return Whether the topicID field is set.
*/
boolean hasTopicID();
/**
*
**
* Topic identifier.
*
*
* .proto.TopicID topicID = 2;
* @return The topicID.
*/
com.hedera.hashgraph.sdk.proto.TopicID getTopicID();
/**
*
**
* Topic identifier.
*
*
* .proto.TopicID topicID = 2;
*/
com.hedera.hashgraph.sdk.proto.TopicIDOrBuilder getTopicIDOrBuilder();
/**
*
**
* Current state of the topic
*
*
* .proto.ConsensusTopicInfo topicInfo = 5;
* @return Whether the topicInfo field is set.
*/
boolean hasTopicInfo();
/**
*
**
* Current state of the topic
*
*
* .proto.ConsensusTopicInfo topicInfo = 5;
* @return The topicInfo.
*/
com.hedera.hashgraph.sdk.proto.ConsensusTopicInfo getTopicInfo();
/**
*
**
* Current state of the topic
*
*
* .proto.ConsensusTopicInfo topicInfo = 5;
*/
com.hedera.hashgraph.sdk.proto.ConsensusTopicInfoOrBuilder getTopicInfoOrBuilder();
}