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 MessagesGetAttachMenuBotsRequest struct {
Hash int64
}
const MessagesGetAttachMenuBotsRequestTypeID = 0x16fcc2cb
var (
_ bin .Encoder = &MessagesGetAttachMenuBotsRequest {}
_ bin .Decoder = &MessagesGetAttachMenuBotsRequest {}
_ bin .BareEncoder = &MessagesGetAttachMenuBotsRequest {}
_ bin .BareDecoder = &MessagesGetAttachMenuBotsRequest {}
)
func (g *MessagesGetAttachMenuBotsRequest ) Zero () bool {
if g == nil {
return true
}
if !(g .Hash == 0 ) {
return false
}
return true
}
func (g *MessagesGetAttachMenuBotsRequest ) String () string {
if g == nil {
return "MessagesGetAttachMenuBotsRequest(nil)"
}
type Alias MessagesGetAttachMenuBotsRequest
return fmt .Sprintf ("MessagesGetAttachMenuBotsRequest%+v" , Alias (*g ))
}
func (g *MessagesGetAttachMenuBotsRequest ) FillFrom (from interface {
GetHash () (value int64 )
}) {
g .Hash = from .GetHash ()
}
func (*MessagesGetAttachMenuBotsRequest ) TypeID () uint32 {
return MessagesGetAttachMenuBotsRequestTypeID
}
func (*MessagesGetAttachMenuBotsRequest ) TypeName () string {
return "messages.getAttachMenuBots"
}
func (g *MessagesGetAttachMenuBotsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "messages.getAttachMenuBots" ,
ID : MessagesGetAttachMenuBotsRequestTypeID ,
}
if g == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Hash" ,
SchemaName : "hash" ,
},
}
return typ
}
func (g *MessagesGetAttachMenuBotsRequest ) Encode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode messages.getAttachMenuBots#16fcc2cb as nil" )
}
b .PutID (MessagesGetAttachMenuBotsRequestTypeID )
return g .EncodeBare (b )
}
func (g *MessagesGetAttachMenuBotsRequest ) EncodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't encode messages.getAttachMenuBots#16fcc2cb as nil" )
}
b .PutLong (g .Hash )
return nil
}
func (g *MessagesGetAttachMenuBotsRequest ) Decode (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode messages.getAttachMenuBots#16fcc2cb to nil" )
}
if err := b .ConsumeID (MessagesGetAttachMenuBotsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode messages.getAttachMenuBots#16fcc2cb: %w" , err )
}
return g .DecodeBare (b )
}
func (g *MessagesGetAttachMenuBotsRequest ) DecodeBare (b *bin .Buffer ) error {
if g == nil {
return fmt .Errorf ("can't decode messages.getAttachMenuBots#16fcc2cb to nil" )
}
{
value , err := b .Long ()
if err != nil {
return fmt .Errorf ("unable to decode messages.getAttachMenuBots#16fcc2cb: field hash: %w" , err )
}
g .Hash = value
}
return nil
}
func (g *MessagesGetAttachMenuBotsRequest ) GetHash () (value int64 ) {
if g == nil {
return
}
return g .Hash
}
func (c *Client ) MessagesGetAttachMenuBots (ctx context .Context , hash int64 ) (AttachMenuBotsClass , error ) {
var result AttachMenuBotsBox
request := &MessagesGetAttachMenuBotsRequest {
Hash : hash ,
}
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return result .AttachMenuBots , 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 .