From eef043d12fa7689cdddd7a205132c97d0ff2e77b Mon Sep 17 00:00:00 2001 From: Kirill Zaytsev Date: Mon, 11 Apr 2022 10:53:07 +0300 Subject: [PATCH] fix: Fixed attachment ID type --- v1/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1/types.go b/v1/types.go index 2bef0f7..af14df1 100644 --- a/v1/types.go +++ b/v1/types.go @@ -437,7 +437,7 @@ type ( } Attachment struct { - ID uint64 `json:"id"` + ID string `json:"id"` Mime string `json:"type"` Caption string `json:"caption"` Size uint64 `json:"size"`