Show / Hide Table of Contents

Class RateData

A single HBAR-to-USD exchange rate, expressed as the ratio of HbarEquivalent hbar to CentEquivalent US cents.

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

Properties

| Edit this page View Source

CentEquivalent

The US-cent side of the exchange-rate ratio — the number of cents equivalent to HbarEquivalent hbar.

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

Expiration

The consensus time at which this exchange rate expires and the next rate takes effect.

Declaration
[JsonPropertyName("expiration_time")]
[JsonConverter(typeof(ConsensusTimeStampForExchangeRateConverter))]
public ConsensusTimeStamp Expiration { get; set; }
Property Value
Type Description
ConsensusTimeStamp
| Edit this page View Source

HbarEquivalent

The hbar side of the exchange-rate ratio — the number of whole hbar equivalent to CentEquivalent cents.

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