Show / Hide Table of Contents

Class HcsMessageData

Represents an HCS Message retrieved from the mirror node.

Inheritance
object
HcsMessageData
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 HcsMessageData

Properties

| Edit this page View Source

ChunkInfo

HCS Message Chunk Information.

Declaration
[JsonPropertyName("chunk_info")]
public ChunkInfo? ChunkInfo { get; set; }
Property Value
Type Description
ChunkInfo
| 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 HCS message.

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

TimeStamp

HCS Message Consensus Timestamp.

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

TopicId

The HCS message stream 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