Class OfferRecord
The in memory representation of an offer and its record of trade
public record OfferRecord : IEquatable<OfferRecord>
- Inheritance
-
OfferRecord
- Implements
- Inherited Members
- Extension Methods
Properties
Offer
The bech32 encoded value of the offer
public string Offer { get; init; }
Property Value
- string
- The in memory representation of an offer and its record of trade
Trade
Trade record associated with the offer
public TradeRecord Trade { get; init; }
Property Value
- TradeRecord
- The in memory representation of an offer and its record of trade
TradeRecord
Trade record associated with the offer
[Obsolete("This property is obsolete. Use Trade instead.", false)]
public TradeRecord TradeRecord { get; }
Property Value
- TradeRecord
- The in memory representation of an offer and its record of trade
Remarks
Deprecated. Use Trade