Class BuyPrepareData
Represents the data returned in the buy prepare response.
public class BuyPrepareData : QuoteData
- Inheritance
-
BuyPrepareData
- Inherited Members
Properties
Expiration
The expiration timestamp for this prepared quote and its transactions (if applicable).
[JsonProperty("expiration")]
public long? Expiration { get; set; }
Property Value
- long?
Id
A hex ID associated with the quoted payment.
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Transactions
An array of transactions to be executed to fulfill this quote (in order).
[Obsolete("Use Steps.Transactions instead.")]
[JsonProperty("transactions")]
public List<Transaction> Transactions { get; set; }