1
bot/models/chat_action.go
Andrew Privalov 79a3783161
7.4 (#86)
* add omitempty for `provider_token` fields

* add RefundStarPayment method

* add effect_id to message

* add message_effect_id

* add show_caption_above_media

* add show_caption_above_media

* add types for chatAction consts

* changelog, readme
2024-05-29 14:08:43 +03:00

18 lines
665 B
Go

package models
type ChatAction string
const (
ChatActionTyping ChatAction = "typing"
ChatActionUploadPhoto ChatAction = "upload_photo"
ChatActionRecordVideo ChatAction = "record_video"
ChatActionUploadVideo ChatAction = "upload_video"
ChatActionRecordVoice ChatAction = "record_voice"
ChatActionUploadVoice ChatAction = "upload_voice"
ChatActionUploadDocument ChatAction = "upload_document"
ChatActionChooseSticker ChatAction = "choose_sticker"
ChatActionFindLocation ChatAction = "find_location"
ChatActionRecordVideoNote ChatAction = "record_video_note"
ChatActionUploadVideoNote ChatAction = "upload_video_note"
)