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