Class Step
Represents a single step in a transaction, including origin and destination tokens.
public class Step
- Inheritance
-
Step
- Inherited Members
Properties
DestinationAmount
[JsonProperty("destinationAmount")]
public string DestinationAmount { get; set; }
Property Value
DestinationToken
[JsonProperty("destinationToken")]
public TokenData DestinationToken { get; set; }
Property Value
EstimatedExecutionTimeMs
[JsonProperty("estimatedExecutionTimeMs")]
public long EstimatedExecutionTimeMs { get; set; }
Property Value
NativeFee
[JsonProperty("nativeFee")]
public string NativeFee { get; set; }
Property Value
OriginAmount
[JsonProperty("originAmount")]
public string OriginAmount { get; set; }
Property Value
OriginToken
[JsonProperty("originToken")]
public TokenData OriginToken { get; set; }
Property Value
Transactions
[JsonProperty("transactions")]
public List<Transaction> Transactions { get; set; }