Files
mautrix-telegram/pkg/gotd/tg/tl_bots_set_bot_commands_gen.go
T
2025-12-03 17:11:20 +02:00

260 lines
6.6 KiB
Go
Generated

// Code generated by gotdgen, DO NOT EDIT.
package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"go.mau.fi/mautrix-telegram/pkg/gotd/bin"
"go.mau.fi/mautrix-telegram/pkg/gotd/tdjson"
"go.mau.fi/mautrix-telegram/pkg/gotd/tdp"
"go.mau.fi/mautrix-telegram/pkg/gotd/tgerr"
)
// No-op definition for keeping imports.
var (
_ = bin.Buffer{}
_ = context.Background()
_ = fmt.Stringer(nil)
_ = strings.Builder{}
_ = errors.Is
_ = multierr.AppendInto
_ = sort.Ints
_ = tdp.Format
_ = tgerr.Error{}
_ = tdjson.Encoder{}
)
// BotsSetBotCommandsRequest represents TL type `bots.setBotCommands#517165a`.
// Set bot command list
//
// See https://core.telegram.org/method/bots.setBotCommands for reference.
type BotsSetBotCommandsRequest struct {
// Command scope
Scope BotCommandScopeClass
// Language code
LangCode string
// Bot commands
Commands []BotCommand
}
// BotsSetBotCommandsRequestTypeID is TL type id of BotsSetBotCommandsRequest.
const BotsSetBotCommandsRequestTypeID = 0x517165a
// Ensuring interfaces in compile-time for BotsSetBotCommandsRequest.
var (
_ bin.Encoder = &BotsSetBotCommandsRequest{}
_ bin.Decoder = &BotsSetBotCommandsRequest{}
_ bin.BareEncoder = &BotsSetBotCommandsRequest{}
_ bin.BareDecoder = &BotsSetBotCommandsRequest{}
)
func (s *BotsSetBotCommandsRequest) Zero() bool {
if s == nil {
return true
}
if !(s.Scope == nil) {
return false
}
if !(s.LangCode == "") {
return false
}
if !(s.Commands == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (s *BotsSetBotCommandsRequest) String() string {
if s == nil {
return "BotsSetBotCommandsRequest(nil)"
}
type Alias BotsSetBotCommandsRequest
return fmt.Sprintf("BotsSetBotCommandsRequest%+v", Alias(*s))
}
// FillFrom fills BotsSetBotCommandsRequest from given interface.
func (s *BotsSetBotCommandsRequest) FillFrom(from interface {
GetScope() (value BotCommandScopeClass)
GetLangCode() (value string)
GetCommands() (value []BotCommand)
}) {
s.Scope = from.GetScope()
s.LangCode = from.GetLangCode()
s.Commands = from.GetCommands()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*BotsSetBotCommandsRequest) TypeID() uint32 {
return BotsSetBotCommandsRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*BotsSetBotCommandsRequest) TypeName() string {
return "bots.setBotCommands"
}
// TypeInfo returns info about TL type.
func (s *BotsSetBotCommandsRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "bots.setBotCommands",
ID: BotsSetBotCommandsRequestTypeID,
}
if s == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Scope",
SchemaName: "scope",
},
{
Name: "LangCode",
SchemaName: "lang_code",
},
{
Name: "Commands",
SchemaName: "commands",
},
}
return typ
}
// Encode implements bin.Encoder.
func (s *BotsSetBotCommandsRequest) Encode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode bots.setBotCommands#517165a as nil")
}
b.PutID(BotsSetBotCommandsRequestTypeID)
return s.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (s *BotsSetBotCommandsRequest) EncodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode bots.setBotCommands#517165a as nil")
}
if s.Scope == nil {
return fmt.Errorf("unable to encode bots.setBotCommands#517165a: field scope is nil")
}
if err := s.Scope.Encode(b); err != nil {
return fmt.Errorf("unable to encode bots.setBotCommands#517165a: field scope: %w", err)
}
b.PutString(s.LangCode)
b.PutVectorHeader(len(s.Commands))
for idx, v := range s.Commands {
if err := v.Encode(b); err != nil {
return fmt.Errorf("unable to encode bots.setBotCommands#517165a: field commands element with index %d: %w", idx, err)
}
}
return nil
}
// Decode implements bin.Decoder.
func (s *BotsSetBotCommandsRequest) Decode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode bots.setBotCommands#517165a to nil")
}
if err := b.ConsumeID(BotsSetBotCommandsRequestTypeID); err != nil {
return fmt.Errorf("unable to decode bots.setBotCommands#517165a: %w", err)
}
return s.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (s *BotsSetBotCommandsRequest) DecodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode bots.setBotCommands#517165a to nil")
}
{
value, err := DecodeBotCommandScope(b)
if err != nil {
return fmt.Errorf("unable to decode bots.setBotCommands#517165a: field scope: %w", err)
}
s.Scope = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode bots.setBotCommands#517165a: field lang_code: %w", err)
}
s.LangCode = value
}
{
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode bots.setBotCommands#517165a: field commands: %w", err)
}
if headerLen > 0 {
s.Commands = make([]BotCommand, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
var value BotCommand
if err := value.Decode(b); err != nil {
return fmt.Errorf("unable to decode bots.setBotCommands#517165a: field commands: %w", err)
}
s.Commands = append(s.Commands, value)
}
}
return nil
}
// GetScope returns value of Scope field.
func (s *BotsSetBotCommandsRequest) GetScope() (value BotCommandScopeClass) {
if s == nil {
return
}
return s.Scope
}
// GetLangCode returns value of LangCode field.
func (s *BotsSetBotCommandsRequest) GetLangCode() (value string) {
if s == nil {
return
}
return s.LangCode
}
// GetCommands returns value of Commands field.
func (s *BotsSetBotCommandsRequest) GetCommands() (value []BotCommand) {
if s == nil {
return
}
return s.Commands
}
// BotsSetBotCommands invokes method bots.setBotCommands#517165a returning error if any.
// Set bot command list
//
// Possible errors:
//
// 400 BOT_COMMAND_DESCRIPTION_INVALID: The specified command description is invalid.
// 400 BOT_COMMAND_INVALID: The specified command is invalid.
// 400 LANG_CODE_INVALID: The specified language code is invalid.
// 400 PEER_ID_INVALID: The provided peer id is invalid.
// 400 USER_BOT_REQUIRED: This method can only be called by a bot.
// 400 USER_ID_INVALID: The provided user ID is invalid.
//
// See https://core.telegram.org/method/bots.setBotCommands for reference.
func (c *Client) BotsSetBotCommands(ctx context.Context, request *BotsSetBotCommandsRequest) (bool, error) {
var result BoolBox
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return false, err
}
_, ok := result.Bool.(*BoolTrue)
return ok, nil
}