From c11060648d90bfbfd1d4370c316f67f765e5ce0e Mon Sep 17 00:00:00 2001 From: Alfred Kamanda Date: Tue, 28 Oct 2025 11:04:12 +0300 Subject: [PATCH] added the CreditSendLimitsResult type for the API responses --- models/pool_swap_response.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/models/pool_swap_response.go b/models/pool_swap_response.go index 4f2c088..21d3d08 100644 --- a/models/pool_swap_response.go +++ b/models/pool_swap_response.go @@ -20,3 +20,8 @@ type MaxLimitResult struct { type TokenInPoolResult struct { CanSwapFrom bool `json:"canSwapFrom"` } + +type CreditSendLimitsResult struct { + MaxRAT string `json:"maxRAT"` + MaxSAT string `json:"maxSAT"` +}