diff --git a/models/pool_swap_response.go b/models/pool_swap_response.go new file mode 100644 index 0000000..8842d67 --- /dev/null +++ b/models/pool_swap_response.go @@ -0,0 +1,14 @@ +package models + +type PoolDepositResult struct { + TrackingId string `json:"trackingId"` +} + +type PoolSwapQuoteResult struct { + IncludesFeesDeduction bool `json:"includesFeesDeduction"` + OutValue string `json:"outValue"` +} + +type PoolSwapResult struct { + TrackingId string `json:"trackingId"` +}