commit
99503a7118
9
types.go
9
types.go
|
@ -183,6 +183,10 @@ type User struct {
|
||||||
//
|
//
|
||||||
// optional
|
// optional
|
||||||
IsBot bool `json:"is_bot,omitempty"`
|
IsBot bool `json:"is_bot,omitempty"`
|
||||||
|
// IsPremium true, if user has Telegram Premium
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
IsPremium bool `json:"is_premium,omitempty"`
|
||||||
// FirstName user's or bot's first name
|
// FirstName user's or bot's first name
|
||||||
FirstName string `json:"first_name"`
|
FirstName string `json:"first_name"`
|
||||||
// LastName user's or bot's last name
|
// LastName user's or bot's last name
|
||||||
|
@ -445,6 +449,11 @@ type Message struct {
|
||||||
//
|
//
|
||||||
// optional
|
// optional
|
||||||
Animation *Animation `json:"animation,omitempty"`
|
Animation *Animation `json:"animation,omitempty"`
|
||||||
|
// PremiumAnimation message is an animation, information about the animation.
|
||||||
|
// For backward compatibility, when this field is set, the document field will also be set;
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
PremiumAnimation *Animation `json:"premium_animation,omitempty"`
|
||||||
// Audio message is an audio file, information about the file;
|
// Audio message is an audio file, information about the file;
|
||||||
//
|
//
|
||||||
// optional
|
// optional
|
||||||
|
|
Loading…
Reference in New Issue