Show / Hide Table of Contents

Class TopicMessageData

Represents a topic message retrieved from the mirror node.

Inheritance
object
TopicMessageData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Hiero.Mirror
Assembly: Hiero.dll
Syntax
public class TopicMessageData

Properties

| Edit this page View Source

Chunk

Chunk metadata for this message, when part of a segmented submit.

Declaration
[JsonPropertyName("chunk_info")]
public ChunkData? Chunk { get; set; }
Property Value
Type Description
ChunkData
| Edit this page View Source

Hash

The running hash of the message (for validation purposes)

Declaration
[JsonPropertyName("running_hash")]
public string Hash { get; set; }
Property Value
Type Description
string
| Edit this page View Source

HashVersion

The version of the running hash (for validation purposes).

Declaration
[JsonPropertyName("running_hash_version")]
[JsonConverter(typeof(IntMirrorConverter))]
public int HashVersion { get; set; }
Property Value
Type Description
int
| Edit this page View Source

Message

Message Payload.

Declaration
[JsonPropertyName("message")]
public string Message { get; set; }
Property Value
Type Description
string
| Edit this page View Source

Payer

The payer account submitting the message.

Declaration
[JsonPropertyName("payer_account_id")]
public EntityId Payer { get; set; }
Property Value
Type Description
EntityId
| Edit this page View Source

SequenceNumber

Sequence number of this topic message.

Declaration
[JsonPropertyName("sequence_number")]
[JsonConverter(typeof(UnsignedLongMirrorConverter))]
public ulong SequenceNumber { get; set; }
Property Value
Type Description
ulong
| Edit this page View Source

TimeStamp

Topic message consensus timestamp.

Declaration
[JsonPropertyName("consensus_timestamp")]
public ConsensusTimeStamp TimeStamp { get; set; }
Property Value
Type Description
ConsensusTimeStamp
| Edit this page View Source

TopicId

The topic ID for this message.

Declaration
[JsonPropertyName("topic_id")]
public EntityId TopicId { get; set; }
Property Value
Type Description
EntityId
  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph