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 AccountConnectedBots struct {
ConnectedBots []ConnectedBot
Users []UserClass
}
const AccountConnectedBotsTypeID = 0x17d7f87b
var (
_ bin .Encoder = &AccountConnectedBots {}
_ bin .Decoder = &AccountConnectedBots {}
_ bin .BareEncoder = &AccountConnectedBots {}
_ bin .BareDecoder = &AccountConnectedBots {}
)
func (c *AccountConnectedBots ) Zero () bool {
if c == nil {
return true
}
if !(c .ConnectedBots == nil ) {
return false
}
if !(c .Users == nil ) {
return false
}
return true
}
func (c *AccountConnectedBots ) String () string {
if c == nil {
return "AccountConnectedBots(nil)"
}
type Alias AccountConnectedBots
return fmt .Sprintf ("AccountConnectedBots%+v" , Alias (*c ))
}
func (c *AccountConnectedBots ) FillFrom (from interface {
GetConnectedBots () (value []ConnectedBot )
GetUsers () (value []UserClass )
}) {
c .ConnectedBots = from .GetConnectedBots ()
c .Users = from .GetUsers ()
}
func (*AccountConnectedBots ) TypeID () uint32 {
return AccountConnectedBotsTypeID
}
func (*AccountConnectedBots ) TypeName () string {
return "account.connectedBots"
}
func (c *AccountConnectedBots ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.connectedBots" ,
ID : AccountConnectedBotsTypeID ,
}
if c == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "ConnectedBots" ,
SchemaName : "connected_bots" ,
},
{
Name : "Users" ,
SchemaName : "users" ,
},
}
return typ
}
func (c *AccountConnectedBots ) Encode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode account.connectedBots#17d7f87b as nil" )
}
b .PutID (AccountConnectedBotsTypeID )
return c .EncodeBare (b )
}
func (c *AccountConnectedBots ) EncodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode account.connectedBots#17d7f87b as nil" )
}
b .PutVectorHeader (len (c .ConnectedBots ))
for idx , v := range c .ConnectedBots {
if err := v .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.connectedBots#17d7f87b: field connected_bots element with index %d: %w" , idx , err )
}
}
b .PutVectorHeader (len (c .Users ))
for idx , v := range c .Users {
if v == nil {
return fmt .Errorf ("unable to encode account.connectedBots#17d7f87b: field users element with index %d is nil" , idx )
}
if err := v .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode account.connectedBots#17d7f87b: field users element with index %d: %w" , idx , err )
}
}
return nil
}
func (c *AccountConnectedBots ) Decode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode account.connectedBots#17d7f87b to nil" )
}
if err := b .ConsumeID (AccountConnectedBotsTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.connectedBots#17d7f87b: %w" , err )
}
return c .DecodeBare (b )
}
func (c *AccountConnectedBots ) DecodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode account.connectedBots#17d7f87b to nil" )
}
{
headerLen , err := b .VectorHeader ()
if err != nil {
return fmt .Errorf ("unable to decode account.connectedBots#17d7f87b: field connected_bots: %w" , err )
}
if headerLen > 0 {
c .ConnectedBots = make ([]ConnectedBot , 0 , headerLen %bin .PreallocateLimit )
}
for idx := 0 ; idx < headerLen ; idx ++ {
var value ConnectedBot
if err := value .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode account.connectedBots#17d7f87b: field connected_bots: %w" , err )
}
c .ConnectedBots = append (c .ConnectedBots , value )
}
}
{
headerLen , err := b .VectorHeader ()
if err != nil {
return fmt .Errorf ("unable to decode account.connectedBots#17d7f87b: field users: %w" , err )
}
if headerLen > 0 {
c .Users = make ([]UserClass , 0 , headerLen %bin .PreallocateLimit )
}
for idx := 0 ; idx < headerLen ; idx ++ {
value , err := DecodeUser (b )
if err != nil {
return fmt .Errorf ("unable to decode account.connectedBots#17d7f87b: field users: %w" , err )
}
c .Users = append (c .Users , value )
}
}
return nil
}
func (c *AccountConnectedBots ) GetConnectedBots () (value []ConnectedBot ) {
if c == nil {
return
}
return c .ConnectedBots
}
func (c *AccountConnectedBots ) GetUsers () (value []UserClass ) {
if c == nil {
return
}
return c .Users
}
func (c *AccountConnectedBots ) MapUsers () (value UserClassArray ) {
return UserClassArray (c .Users )
}
The pages are generated with Golds v0.8.4 . (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds .