mirror of
https://github.com/lukaszraczylo/go-telegram.git
synced 2026-07-01 14:35:08 +00:00
chore(api): regenerate from Telegram Bot API v10.1
This commit is contained in:
committed by
github-actions[bot]
parent
140ea13bde
commit
076bddabe9
+4
-4
@@ -1985,7 +1985,7 @@ type SendMessageDraftParams struct {
|
||||
ChatID int64 `json:"chat_id"`
|
||||
// Unique identifier for the target message thread
|
||||
MessageThreadID *int64 `json:"message_thread_id,omitempty"`
|
||||
// Unique identifier of the message draft; must be non-zero. Changes of drafts with the same identifier are animated.
|
||||
// Unique identifier of the message draft; must be non-zero. Changes to drafts with the same identifier are animated.
|
||||
DraftID int64 `json:"draft_id"`
|
||||
// Text of the message to be sent, 0-4096 characters after entities parsing. Pass an empty text to show a “Thinking…” placeholder.
|
||||
Text string `json:"text,omitempty"`
|
||||
@@ -2502,7 +2502,7 @@ func AnswerChatJoinRequestQuery(ctx context.Context, b *client.Bot, p *AnswerCha
|
||||
|
||||
// SendChatJoinRequestWebAppParams is the parameter set for SendChatJoinRequestWebApp.
|
||||
//
|
||||
// Use this method to process a received chat join request query by showing a Mini App to the user before deciding the outcome. Returns True on success.
|
||||
// Use this method to process a received chat join request query by showing a Mini App to the user before deciding the outcome. Call answerChatJoinRequestQuery to resolve the join request query based on the user interaction with the Mini App. Returns True on success.
|
||||
type SendChatJoinRequestWebAppParams struct {
|
||||
// Unique identifier of the join request query
|
||||
ChatJoinRequestQueryID string `json:"chat_join_request_query_id"`
|
||||
@@ -2512,7 +2512,7 @@ type SendChatJoinRequestWebAppParams struct {
|
||||
|
||||
// SendChatJoinRequestWebApp calls the sendChatJoinRequestWebApp Telegram Bot API method.
|
||||
//
|
||||
// Use this method to process a received chat join request query by showing a Mini App to the user before deciding the outcome. Returns True on success.
|
||||
// Use this method to process a received chat join request query by showing a Mini App to the user before deciding the outcome. Call answerChatJoinRequestQuery to resolve the join request query based on the user interaction with the Mini App. Returns True on success.
|
||||
func SendChatJoinRequestWebApp(ctx context.Context, b *client.Bot, p *SendChatJoinRequestWebAppParams) (bool, error) {
|
||||
return client.Call[*SendChatJoinRequestWebAppParams, bool](ctx, b, "sendChatJoinRequestWebApp", p)
|
||||
}
|
||||
@@ -4835,7 +4835,7 @@ func DeleteStickerSet(ctx context.Context, b *client.Bot, p *DeleteStickerSetPar
|
||||
//
|
||||
// Use this method to send rich messages. If the message contains a block with a media element, then the bot must have the right to send the media to the chat. On success, the sent Message is returned.
|
||||
type SendRichMessageParams struct {
|
||||
// Unique identifier of the business connection on behalf of which the message will be sent
|
||||
// Unique identifier of the business connection on behalf of which the message will be sent. Bot can send rich messages on behalf of a business account only if the corresponding user can send rich messages.
|
||||
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||
// Unique identifier for the target chat or username of the target bot, supergroup or channel in the format @username
|
||||
ChatID ChatID `json:"chat_id"`
|
||||
|
||||
+12
-12
@@ -3067,7 +3067,7 @@ type ChatJoinRequest struct {
|
||||
Bio string `json:"bio,omitempty"`
|
||||
// Optional. Chat invite link that was used by the user to send the join request
|
||||
InviteLink *ChatInviteLink `json:"invite_link,omitempty"`
|
||||
// Optional. Identifier of the join request query. If present, then the bot must call sendChatJoinRequestWebApp or directly call answerChatJoinRequestQuery within 10 seconds.
|
||||
// Optional. Identifier of the join request query; for bots assigned to process join request only. If present, then the bot must call sendChatJoinRequestWebApp or directly call answerChatJoinRequestQuery within 10 seconds.
|
||||
QueryID string `json:"query_id,omitempty"`
|
||||
}
|
||||
|
||||
@@ -4730,7 +4730,7 @@ func (*InputMediaVideo) isInputMedia() {}
|
||||
|
||||
// Represents an animation file (GIF or H.264/MPEG-4 AVC video without sound) to be sent.
|
||||
type InputMediaAnimation struct {
|
||||
// Type of the result, must be animation
|
||||
// Type of the media, must be animation
|
||||
Type InputMediaType `json:"type"`
|
||||
// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files »
|
||||
Media string `json:"media"`
|
||||
@@ -4772,7 +4772,7 @@ func (v *InputMediaAnimation) MarshalJSON() ([]byte, error) {
|
||||
|
||||
// Represents an audio file to be treated as music to be sent.
|
||||
type InputMediaAudio struct {
|
||||
// Type of the result, must be audio
|
||||
// Type of the media, must be audio
|
||||
Type InputMediaType `json:"type"`
|
||||
// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files »
|
||||
Media string `json:"media"`
|
||||
@@ -4810,7 +4810,7 @@ func (v *InputMediaAudio) MarshalJSON() ([]byte, error) {
|
||||
|
||||
// Represents a general file to be sent.
|
||||
type InputMediaDocument struct {
|
||||
// Type of the result, must be document
|
||||
// Type of the media, must be document
|
||||
Type InputMediaType `json:"type"`
|
||||
// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files »
|
||||
Media string `json:"media"`
|
||||
@@ -4844,7 +4844,7 @@ func (v *InputMediaDocument) MarshalJSON() ([]byte, error) {
|
||||
|
||||
// Represents an HTTP link to be sent.
|
||||
type InputMediaLink struct {
|
||||
// Type of the result, must be link
|
||||
// Type of the media, must be link
|
||||
Type InputPollOptionMediaType `json:"type"`
|
||||
// HTTP URL of the link
|
||||
URL string `json:"url"`
|
||||
@@ -4868,7 +4868,7 @@ func (v *InputMediaLink) MarshalJSON() ([]byte, error) {
|
||||
|
||||
// Represents a live photo to be sent.
|
||||
type InputMediaLivePhoto struct {
|
||||
// Type of the result, must be live_photo
|
||||
// Type of the media, must be live_photo
|
||||
Type InputMediaType `json:"type"`
|
||||
// Video of the live photo to send. Pass a file_id to send a file that exists on the Telegram servers (recommended) or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files ». Sending live photos by a URL is currently unsupported.
|
||||
Media string `json:"media"`
|
||||
@@ -4904,7 +4904,7 @@ func (v *InputMediaLivePhoto) MarshalJSON() ([]byte, error) {
|
||||
|
||||
// Represents a location to be sent.
|
||||
type InputMediaLocation struct {
|
||||
// Type of the result, must be location
|
||||
// Type of the media, must be location
|
||||
Type InputPollOptionMediaType `json:"type"`
|
||||
// Latitude of the location
|
||||
Latitude float64 `json:"latitude"`
|
||||
@@ -4932,7 +4932,7 @@ func (v *InputMediaLocation) MarshalJSON() ([]byte, error) {
|
||||
|
||||
// Represents a photo to be sent.
|
||||
type InputMediaPhoto struct {
|
||||
// Type of the result, must be photo
|
||||
// Type of the media, must be photo
|
||||
Type InputMediaType `json:"type"`
|
||||
// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files »
|
||||
Media string `json:"media"`
|
||||
@@ -4966,7 +4966,7 @@ func (v *InputMediaPhoto) MarshalJSON() ([]byte, error) {
|
||||
|
||||
// Represents a sticker file to be sent.
|
||||
type InputMediaSticker struct {
|
||||
// Type of the result, must be sticker
|
||||
// Type of the media, must be sticker
|
||||
Type InputPollOptionMediaType `json:"type"`
|
||||
// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a .WEBP sticker from the Internet, or pass “attach://<file_attach_name>” to upload a new .WEBP, .TGS, or .WEBM sticker using multipart/form-data under <file_attach_name> name. More information on Sending Files »
|
||||
Media string `json:"media"`
|
||||
@@ -4992,7 +4992,7 @@ func (v *InputMediaSticker) MarshalJSON() ([]byte, error) {
|
||||
|
||||
// Represents a venue to be sent.
|
||||
type InputMediaVenue struct {
|
||||
// Type of the result, must be venue
|
||||
// Type of the media, must be venue
|
||||
Type InputPollOptionMediaType `json:"type"`
|
||||
// Latitude of the location
|
||||
Latitude float64 `json:"latitude"`
|
||||
@@ -5030,7 +5030,7 @@ func (v *InputMediaVenue) MarshalJSON() ([]byte, error) {
|
||||
|
||||
// Represents a video to be sent.
|
||||
type InputMediaVideo struct {
|
||||
// Type of the result, must be video
|
||||
// Type of the media, must be video
|
||||
Type InputMediaType `json:"type"`
|
||||
// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files »
|
||||
Media string `json:"media"`
|
||||
@@ -6716,7 +6716,7 @@ func (v *RichBlockAudio) MarshalJSON() ([]byte, error) {
|
||||
})
|
||||
}
|
||||
|
||||
// A block with a photo, corresponding to the HTML tag <photo>.
|
||||
// A block with a photo, corresponding to the HTML tag <img>.
|
||||
type RichBlockPhoto struct {
|
||||
// Type of the block, always “photo”
|
||||
Type RichBlockType `json:"type"`
|
||||
|
||||
Reference in New Issue
Block a user