1
bot/models/gift.go
Andrew Privalov 934a13aa87
api 8.2 (#144)
* api 8.2

* fix readme
2025-01-10 11:11:35 +03:00

17 lines
496 B
Go

package models
// Gifts https://core.telegram.org/bots/api#gifts
type Gifts struct {
Gifts []Gift `json:"gifts"`
}
// Gift https://core.telegram.org/bots/api#gift
type Gift struct {
ID string `json:"id"`
Sticker Sticker `json:"sticker"`
StarCount int `json:"star_count"`
UpgradeStarCount int `json:"upgrade_star_count,omitempty"`
TotalCount int `json:"total_count,omitempty"`
RemainingCount int `json:"remaining_count,omitempty"`
}