From c4b827fb31eb4fc61e23b785de230697b4094de1 Mon Sep 17 00:00:00 2001 From: ScuroNeko Date: Wed, 11 Feb 2026 17:44:51 +0300 Subject: [PATCH] WIP v0.5.0 --- tgapi/types.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tgapi/types.go b/tgapi/types.go index 2f4fd17..e400341 100644 --- a/tgapi/types.go +++ b/tgapi/types.go @@ -107,6 +107,11 @@ type Gifts struct { Gifts []Gift `json:"gifts"` } +const ( + OwnedGiftRegularType OwnedGiftType = "regular" + OwnedGiftUniqueType OwnedGiftType = "unique" +) + type OwnedGiftType string type BaseOwnedGift struct { Type OwnedGiftType `json:"type"`