From aef8efa2bf26700f4c14bb48f14bf5f26f72e73e Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Wed, 5 Mar 2025 16:42:55 +0300 Subject: [PATCH] add pool api responses --- models/pool_swap_response.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 models/pool_swap_response.go 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"` +}