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 PaymentsConnectedStarRefBots struct {
Count int
ConnectedBots []ConnectedBotStarRef
Users []UserClass
}
const PaymentsConnectedStarRefBotsTypeID = 0x98d5ea1d
var (
_ bin .Encoder = &PaymentsConnectedStarRefBots {}
_ bin .Decoder = &PaymentsConnectedStarRefBots {}
_ bin .BareEncoder = &PaymentsConnectedStarRefBots {}
_ bin .BareDecoder = &PaymentsConnectedStarRefBots {}
)
func (c *PaymentsConnectedStarRefBots ) Zero () bool {
if c == nil {
return true
}
if !(c .Count == 0 ) {
return false
}
if !(c .ConnectedBots == nil ) {
return false
}
if !(c .Users == nil ) {
return false
}
return true
}
func (c *PaymentsConnectedStarRefBots ) String () string {
if c == nil {
return "PaymentsConnectedStarRefBots(nil)"
}
type Alias PaymentsConnectedStarRefBots
return fmt .Sprintf ("PaymentsConnectedStarRefBots%+v" , Alias (*c ))
}
func (c *PaymentsConnectedStarRefBots ) FillFrom (from interface {
GetCount () (value int )
GetConnectedBots () (value []ConnectedBotStarRef )
GetUsers () (value []UserClass )
}) {
c .Count = from .GetCount ()
c .ConnectedBots = from .GetConnectedBots ()
c .Users = from .GetUsers ()
}
func (*PaymentsConnectedStarRefBots ) TypeID () uint32 {
return PaymentsConnectedStarRefBotsTypeID
}
func (*PaymentsConnectedStarRefBots ) TypeName () string {
return "payments.connectedStarRefBots"
}
func (c *PaymentsConnectedStarRefBots ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "payments.connectedStarRefBots" ,
ID : PaymentsConnectedStarRefBotsTypeID ,
}
if c == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Count" ,
SchemaName : "count" ,
},
{
Name : "ConnectedBots" ,
SchemaName : "connected_bots" ,
},
{
Name : "Users" ,
SchemaName : "users" ,
},
}
return typ
}
func (c *PaymentsConnectedStarRefBots ) Encode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode payments.connectedStarRefBots#98d5ea1d as nil" )
}
b .PutID (PaymentsConnectedStarRefBotsTypeID )
return c .EncodeBare (b )
}
func (c *PaymentsConnectedStarRefBots ) EncodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't encode payments.connectedStarRefBots#98d5ea1d as nil" )
}
b .PutInt (c .Count )
b .PutVectorHeader (len (c .ConnectedBots ))
for idx , v := range c .ConnectedBots {
if err := v .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode payments.connectedStarRefBots#98d5ea1d: 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 payments.connectedStarRefBots#98d5ea1d: field users element with index %d is nil" , idx )
}
if err := v .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode payments.connectedStarRefBots#98d5ea1d: field users element with index %d: %w" , idx , err )
}
}
return nil
}
func (c *PaymentsConnectedStarRefBots ) Decode (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode payments.connectedStarRefBots#98d5ea1d to nil" )
}
if err := b .ConsumeID (PaymentsConnectedStarRefBotsTypeID ); err != nil {
return fmt .Errorf ("unable to decode payments.connectedStarRefBots#98d5ea1d: %w" , err )
}
return c .DecodeBare (b )
}
func (c *PaymentsConnectedStarRefBots ) DecodeBare (b *bin .Buffer ) error {
if c == nil {
return fmt .Errorf ("can't decode payments.connectedStarRefBots#98d5ea1d to nil" )
}
{
value , err := b .Int ()
if err != nil {
return fmt .Errorf ("unable to decode payments.connectedStarRefBots#98d5ea1d: field count: %w" , err )
}
c .Count = value
}
{
headerLen , err := b .VectorHeader ()
if err != nil {
return fmt .Errorf ("unable to decode payments.connectedStarRefBots#98d5ea1d: field connected_bots: %w" , err )
}
if headerLen > 0 {
c .ConnectedBots = make ([]ConnectedBotStarRef , 0 , headerLen %bin .PreallocateLimit )
}
for idx := 0 ; idx < headerLen ; idx ++ {
var value ConnectedBotStarRef
if err := value .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode payments.connectedStarRefBots#98d5ea1d: field connected_bots: %w" , err )
}
c .ConnectedBots = append (c .ConnectedBots , value )
}
}
{
headerLen , err := b .VectorHeader ()
if err != nil {
return fmt .Errorf ("unable to decode payments.connectedStarRefBots#98d5ea1d: 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 payments.connectedStarRefBots#98d5ea1d: field users: %w" , err )
}
c .Users = append (c .Users , value )
}
}
return nil
}
func (c *PaymentsConnectedStarRefBots ) GetCount () (value int ) {
if c == nil {
return
}
return c .Count
}
func (c *PaymentsConnectedStarRefBots ) GetConnectedBots () (value []ConnectedBotStarRef ) {
if c == nil {
return
}
return c .ConnectedBots
}
func (c *PaymentsConnectedStarRefBots ) GetUsers () (value []UserClass ) {
if c == nil {
return
}
return c .Users
}
func (c *PaymentsConnectedStarRefBots ) 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 .