mirror of
https://github.com/tucnak/telebot
synced 2024-11-03 09:40:18 +00:00
108 lines
2.5 KiB
Go
108 lines
2.5 KiB
Go
package telebot
|
|
|
|
// User object represents a Telegram user, bot or group chat.
|
|
//
|
|
// Title field differs a group chat apart from users and bots:
|
|
// object represents a group chat if Title is empty.
|
|
type User struct {
|
|
ID int `json:"id"`
|
|
FirstName string `json:"first_name"`
|
|
LastName string `json:"last_name"`
|
|
Username string `json:"username"`
|
|
|
|
Title string `json:"title"`
|
|
}
|
|
|
|
// IsGroupChat returns true if user object represents a group chat.
|
|
func (u User) IsGroupChat() bool {
|
|
return u.Title != ""
|
|
}
|
|
|
|
// Update object represents an incoming update.
|
|
type Update struct {
|
|
ID int `json:"update_id"`
|
|
Payload Message `json:"message"`
|
|
}
|
|
|
|
// Thumbnail object represents a image/sticker of particular size.
|
|
type Thumbnail struct {
|
|
File
|
|
|
|
Width int `json:"width"`
|
|
Height int `json:"height"`
|
|
}
|
|
|
|
// Photo object represents a photo with caption.
|
|
type Photo struct {
|
|
Thumbnail
|
|
|
|
Caption string
|
|
}
|
|
|
|
// Audio object represents an audio file (voice note).
|
|
type Audio struct {
|
|
File
|
|
|
|
// Duration of the recording in seconds as defined by sender.
|
|
Duration int `json:"duration"`
|
|
|
|
// MIME type of the file as defined by sender.
|
|
Mime string `json:"mime_type"`
|
|
}
|
|
|
|
// Document object represents a general file (as opposed to Photo or Audio).
|
|
// Telegram users can send files of any type of up to 1.5 GB in size.
|
|
type Document struct {
|
|
File
|
|
|
|
// Document thumbnail as defined by sender.
|
|
Preview Thumbnail `json:"thumb"`
|
|
|
|
// Original filename as defined by sender.
|
|
FileName string `json:"file_name"`
|
|
|
|
// MIME type of the file as defined by sender.
|
|
Mime string `json:"mime_type"`
|
|
}
|
|
|
|
// Sticker object represents a WebP image, so-called sticker.
|
|
type Sticker struct {
|
|
File
|
|
|
|
Width int `json:"width"`
|
|
Height int `json:"height"`
|
|
|
|
// Sticker thumbnail in .webp or .jpg format.
|
|
Preview Thumbnail `json:"thumb"`
|
|
}
|
|
|
|
// Video object represents an MP4-encoded video.
|
|
type Video struct {
|
|
Audio
|
|
|
|
Width int `json:"width"`
|
|
Height int `json:"height"`
|
|
|
|
// Text description of the video as defined by sender (usually empty).
|
|
Caption string `json:"caption"`
|
|
|
|
// Video thumbnail.
|
|
Preview Thumbnail `json:"thumb"`
|
|
}
|
|
|
|
// Contact object represents a contact to Telegram user
|
|
type Contact struct {
|
|
PhoneNumber string `json:"phone_number"`
|
|
FirstName string `json:"first_name"`
|
|
LastName string `json:"last_name"`
|
|
|
|
// Contact's username in Telegram (might be empty).
|
|
Username string `json:"user_id"`
|
|
}
|
|
|
|
// Location object represents geographic position.
|
|
type Location struct {
|
|
Longitude float32 `json:"longitude"`
|
|
Latitude float32 `json:"latitude"`
|
|
}
|