Class VoteEntry
Inheritance
object
VoteEntry
Assembly: Xrpl.dll
Syntax
public class VoteEntry : IVoteEntry
Properties
|
Edit this page
View Source
Account
Declaration
[JsonPropertyName("account")]
public string Account { get; set; }
Property Value
|
Edit this page
View Source
TradingFee
Declaration
[JsonPropertyName("trading_fee")]
public uint TradingFee { get; set; }
Property Value
|
Edit this page
View Source
UnknownFields
Members the node sent that no declared property here claims. Mirrors
UnknownFields for ledger entries and
UnknownFields for command results:
without it, anything this model does not yet know about is dropped between the node and
the caller instead of surviving the round trip.
Declaration
[JsonExtensionData]
public Dictionary<string, JsonElement> UnknownFields { get; set; }
Property Value
| Type |
Description |
| Dictionary<string, JsonElement> |
|
|
Edit this page
View Source
VoteWeight
Declaration
[JsonPropertyName("vote_weight")]
public uint VoteWeight { get; set; }
Property Value
Implements