Class NFTOffer
Inheritance
object
NFTOffer
Assembly: Xrpl.dll
Syntax
public class NFTOffer : IDestination
Properties
|
Edit this page
View Source
Amount
Declaration
[JsonPropertyName("amount")]
[JsonConverter(typeof(CurrencyConverter))]
public Currency Amount { get; set; }
Property Value
|
Edit this page
View Source
Destination
Declaration
[JsonPropertyName("destination")]
public string Destination { get; set; }
Property Value
|
Edit this page
View Source
Expiration
Declaration
[JsonPropertyName("expiration")]
[JsonConverter(typeof(RippleDateTimeConverter))]
public DateTime? Expiration { get; set; }
Property Value
| Type |
Description |
| Nullable |
|
|
Edit this page
View Source
Flags
Declaration
[JsonPropertyName("flags")]
public uint Flags { get; set; }
Property Value
|
Edit this page
View Source
Index
Declaration
[JsonPropertyName("nft_offer_index")]
public string Index { get; set; }
Property Value
|
Edit this page
View Source
Owner
Declaration
[JsonPropertyName("owner")]
public string Owner { get; set; }
Property Value
Implements