Class OrderBookStream
Inheritance
object
OrderBookStream
Assembly: Xrpl.dll
Syntax
public class OrderBookStream : BaseStream
Properties
|
Edit this page
View Source
EngineResult
String Transaction result code
Declaration
[JsonPropertyName("engine_result")]
public string EngineResult { get; set; }
Property Value
|
Edit this page
View Source
EngineResultCode
Numeric transaction response code, if applicable.
Declaration
[JsonPropertyName("engine_result_code")]
public int EngineResultCode { get; set; }
Property Value
|
Edit this page
View Source
EngineResultMessage
Human-readable explanation for the transaction response
Declaration
[JsonPropertyName("engine_result_message")]
public string EngineResultMessage { get; set; }
Property Value
|
Edit this page
View Source
(Validated transactions only) The transaction metadata, which shows the exact outcome of the transaction in detail.
Declaration
[JsonPropertyName("meta")]
public Meta Meta { get; set; }
Property Value
|
Edit this page
View Source
Status
Declaration
[JsonPropertyName("status")]
public string Status { get; set; }
Property Value
|
Edit this page
View Source
Transaction
Declaration
[JsonIgnore]
public ITransactionResponse Transaction { get; }
Property Value
|
Edit this page
View Source
TransactionJson
The definition of the transaction in JSON format
Declaration
[JsonPropertyName("transaction")]
public object TransactionJson { get; set; }
Property Value
|
Edit this page
View Source
Validated
If true, this transaction is included in a validated ledger and its outcome is final.
Responses from the transaction stream should always be validated.
Declaration
[JsonPropertyName("validated")]
public bool Validated { get; set; }
Property Value