Class Result45
public class Result45
- Inheritance
-
Result45
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
InputAmount
Amount of input token swapped.
[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
Amount of output token received.
[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
Request ID for this swap.
[JsonProperty("requestId", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string RequestId { get; set; }
Property Value
Signature
Transaction signature for the confirmed swap on the Solana network.
[JsonProperty("signature", Required = Required.Always)]
[Required]
public string Signature { get; set; }