Class NativeCurrency
public class NativeCurrency
- Inheritance
-
NativeCurrency
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Decimals
The number of decimals used by the native currency
[JsonProperty("decimals", Required = Required.Always)]
public double Decimals { get; set; }
Property Value
Name
The name of the native currency
[JsonProperty("name", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Name { get; set; }
Property Value
Symbol
The symbol of the native currency
[JsonProperty("symbol", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Symbol { get; set; }