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