1
bot/models/gift.go

17 lines
496 B
Go
Raw Permalink Normal View History

2024-11-18 16:37:50 +08:00
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 {
2025-01-10 16:11:35 +08:00
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"`
2024-11-18 16:37:50 +08:00
}