com.hedera.hashgraph.sdk.proto.mirror.ConsensusTopicResponseOrBuilder 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: mirror/consensus_service.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto.mirror;
public interface ConsensusTopicResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:com.hedera.mirror.api.proto.ConsensusTopicResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The time at which the transaction reached consensus
*
*
* .proto.Timestamp consensusTimestamp = 1;
* @return Whether the consensusTimestamp field is set.
*/
boolean hasConsensusTimestamp();
/**
*
**
* The time at which the transaction reached consensus
*
*
* .proto.Timestamp consensusTimestamp = 1;
* @return The consensusTimestamp.
*/
com.hedera.hashgraph.sdk.proto.Timestamp getConsensusTimestamp();
/**
*
**
* The time at which the transaction reached consensus
*
*
* .proto.Timestamp consensusTimestamp = 1;
*/
com.hedera.hashgraph.sdk.proto.TimestampOrBuilder getConsensusTimestampOrBuilder();
/**
*
**
* The message body originally in the ConsensusSubmitMessageTransactionBody. Message size will
* be less than 6KiB.
*
*
* bytes message = 2;
* @return The message.
*/
com.google.protobuf.ByteString getMessage();
/**
*
**
* The running hash (SHA384) of every message.
*
*
* bytes runningHash = 3;
* @return The runningHash.
*/
com.google.protobuf.ByteString getRunningHash();
/**
*
**
* Starts at 1 for first submitted message. Incremented on each submitted message.
*
*
* uint64 sequenceNumber = 4;
* @return The sequenceNumber.
*/
long getSequenceNumber();
/**
*
**
* Version of the SHA-384 digest used to update the running hash.
*
*
* uint64 runningHashVersion = 5;
* @return The runningHashVersion.
*/
long getRunningHashVersion();
/**
*
**
* Optional information of the current chunk in a fragmented message.
*
*
* .proto.ConsensusMessageChunkInfo chunkInfo = 6;
* @return Whether the chunkInfo field is set.
*/
boolean hasChunkInfo();
/**
*
**
* Optional information of the current chunk in a fragmented message.
*
*
* .proto.ConsensusMessageChunkInfo chunkInfo = 6;
* @return The chunkInfo.
*/
com.hedera.hashgraph.sdk.proto.ConsensusMessageChunkInfo getChunkInfo();
/**
*
**
* Optional information of the current chunk in a fragmented message.
*
*
* .proto.ConsensusMessageChunkInfo chunkInfo = 6;
*/
com.hedera.hashgraph.sdk.proto.ConsensusMessageChunkInfoOrBuilder getChunkInfoOrBuilder();
}