Class Result44
public class Result44
- Inheritance
-
Result44
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
InputAmount
Amount of input token to swap.
[JsonProperty("inputAmount", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string InputAmount { get; set; }
Property Value
InputMint
Input token mint address.
[JsonProperty("inputMint", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string InputMint { get; set; }
Property Value
InputUsdValue
USD value of the input amount.
[JsonProperty("inputUsdValue", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double InputUsdValue { get; set; }
Property Value
OutputAmount
Expected amount of output token to receive.
[JsonProperty("outputAmount", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string OutputAmount { get; set; }
Property Value
OutputMint
Output token mint address.
[JsonProperty("outputMint", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string OutputMint { get; set; }
Property Value
OutputUsdValue
USD value of the output amount.
[JsonProperty("outputUsdValue", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double OutputUsdValue { get; set; }
Property Value
RequestId
Quote request ID for executing the swap.
[JsonProperty("requestId", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string RequestId { get; set; }
Property Value
SlippageBps
Slippage tolerance in basis points (1 bps = 0.01%).
[JsonProperty("slippageBps", Required = Required.Always)]
public double SlippageBps { get; set; }