package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
var (
_ = bin .Buffer {}
_ = context .Background ()
_ = fmt .Stringer (nil )
_ = strings .Builder {}
_ = errors .Is
_ = multierr .AppendInto
_ = sort .Ints
_ = tdp .Format
_ = tgerr .Error {}
_ = tdjson .Encoder {}
)
type BotsGetBotCommandsRequest struct {
Scope BotCommandScopeClass
LangCode string
}
const BotsGetBotCommandsRequestTypeID = 0xe34c0dd6
var (
_ bin .Encoder = &BotsGetBotCommandsRequest {}
_ bin .Decoder = &BotsGetBotCommandsRequest {}
_ bin .BareEncoder = &BotsGetBotCommandsRequest {}
_ bin .BareDecoder = &BotsGetBotCommandsRequest {}
)
func (g *BotsGetBotCommandsRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Scope == nil ) {
return false
}
if !(g .LangCode == "" ) {
return false
}
return true
}
func (g *BotsGetBotCommandsRequest ) String () string {
if g == nil {
return "BotsGetBotCommandsRequest(nil)"
}
type Alias BotsGetBotCommandsRequest
return fmt .Sprintf ("BotsGetBotCommandsRequest%+v" , Alias (*g ))
}
func (g *BotsGetBotCommandsRequest ) FillFrom (from interface {
GetScope () (value BotCommandScopeClass )
GetLangCode () (value string )
}) {
g .Scope = from .GetScope ()
g .LangCode = from .GetLangCode ()
}
func (*BotsGetBotCommandsRequest ) TypeID () uint32 {
return BotsGetBotCommandsRequestTypeID
}
func (*BotsGetBotCommandsRequest ) TypeName () string {
return "bots.getBotCommands"
}
func (g *BotsGetBotCommandsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "bots.getBotCommands" ,
ID : BotsGetBotCommandsRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Scope" ,
SchemaName : "scope" ,
},
{
Name : "LangCode" ,
SchemaName : "lang_code" ,
},
}
return typ
}
func (g *BotsGetBotCommandsRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode bots.getBotCommands#e34c0dd6 as nil" )
}
b .PutID (BotsGetBotCommandsRequestTypeID )
return g .EncodeBare (b )
}
func (g *BotsGetBotCommandsRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode bots.getBotCommands#e34c0dd6 as nil" )
}
if g .Scope == nil {
return fmt .Errorf ("unable to encode bots.getBotCommands#e34c0dd6: field scope is nil" )
}
if err := g .Scope .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode bots.getBotCommands#e34c0dd6: field scope: %w" , err )
}
b .PutString (g .LangCode )
return nil
}
func (g *BotsGetBotCommandsRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode bots.getBotCommands#e34c0dd6 to nil" )
}
if err := b .ConsumeID (BotsGetBotCommandsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode bots.getBotCommands#e34c0dd6: %w" , err )
}
return g .DecodeBare (b )
}
func (g *BotsGetBotCommandsRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode bots.getBotCommands#e34c0dd6 to nil" )
}
{
value , err := DecodeBotCommandScope (b )
if err != nil {
return fmt .Errorf ("unable to decode bots.getBotCommands#e34c0dd6: field scope: %w" , err )
}
g .Scope = value
}
{
value , err := b .String ()
if err != nil {
return fmt .Errorf ("unable to decode bots.getBotCommands#e34c0dd6: field lang_code: %w" , err )
}
g .LangCode = value
}
return nil
}
func (g *BotsGetBotCommandsRequest ) GetScope () (value BotCommandScopeClass ) {
if g == nil {
return
}
return g .Scope
}
func (g *BotsGetBotCommandsRequest ) GetLangCode () (value string ) {
if g == nil {
return
}
return g .LangCode
}
func (c *Client ) BotsGetBotCommands (ctx context .Context , request *BotsGetBotCommandsRequest ) ([]BotCommand , error ) {
var result BotCommandVector
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return []BotCommand (result .Elems ), nil
}
The pages are generated with Golds v0.6.7 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds .