From 055b06914ebbef8c3cd8f19604e16e2bd3ef4fbb Mon Sep 17 00:00:00 2001 From: Krisna Pranav <68631244+krishpranav@users.noreply.github.com> Date: Thu, 23 Jan 2025 20:35:10 +0530 Subject: [PATCH] thunderpay-sdk-go: utils[utils] --- sdks/thunderpay-sdk-go/utils/utils.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdks/thunderpay-sdk-go/utils/utils.go b/sdks/thunderpay-sdk-go/utils/utils.go index 08f65b4..1526e40 100644 --- a/sdks/thunderpay-sdk-go/utils/utils.go +++ b/sdks/thunderpay-sdk-go/utils/utils.go @@ -79,3 +79,7 @@ func IsNill(i interface{}) bool { return false } + +type MappedNullable interface { + ToMap() (map[string]interface{}, error) +}