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 ChatlistsJoinChatlistUpdatesRequest struct {
Chatlist InputChatlistDialogFilter
Peers []InputPeerClass
}
const ChatlistsJoinChatlistUpdatesRequestTypeID = 0xe089f8f5
var (
_ bin .Encoder = &ChatlistsJoinChatlistUpdatesRequest {}
_ bin .Decoder = &ChatlistsJoinChatlistUpdatesRequest {}
_ bin .BareEncoder = &ChatlistsJoinChatlistUpdatesRequest {}
_ bin .BareDecoder = &ChatlistsJoinChatlistUpdatesRequest {}
)
func (j *ChatlistsJoinChatlistUpdatesRequest ) Zero () bool {
if j == nil {
return true
}
if !(j .Chatlist .Zero ()) {
return false
}
if !(j .Peers == nil ) {
return false
}
return true
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) String () string {
if j == nil {
return "ChatlistsJoinChatlistUpdatesRequest(nil)"
}
type Alias ChatlistsJoinChatlistUpdatesRequest
return fmt .Sprintf ("ChatlistsJoinChatlistUpdatesRequest%+v" , Alias (*j ))
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) FillFrom (from interface {
GetChatlist () (value InputChatlistDialogFilter )
GetPeers () (value []InputPeerClass )
}) {
j .Chatlist = from .GetChatlist ()
j .Peers = from .GetPeers ()
}
func (*ChatlistsJoinChatlistUpdatesRequest ) TypeID () uint32 {
return ChatlistsJoinChatlistUpdatesRequestTypeID
}
func (*ChatlistsJoinChatlistUpdatesRequest ) TypeName () string {
return "chatlists.joinChatlistUpdates"
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "chatlists.joinChatlistUpdates" ,
ID : ChatlistsJoinChatlistUpdatesRequestTypeID ,
}
if j == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Chatlist" ,
SchemaName : "chatlist" ,
},
{
Name : "Peers" ,
SchemaName : "peers" ,
},
}
return typ
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) Encode (b *bin .Buffer ) error {
if j == nil {
return fmt .Errorf ("can't encode chatlists.joinChatlistUpdates#e089f8f5 as nil" )
}
b .PutID (ChatlistsJoinChatlistUpdatesRequestTypeID )
return j .EncodeBare (b )
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) EncodeBare (b *bin .Buffer ) error {
if j == nil {
return fmt .Errorf ("can't encode chatlists.joinChatlistUpdates#e089f8f5 as nil" )
}
if err := j .Chatlist .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode chatlists.joinChatlistUpdates#e089f8f5: field chatlist: %w" , err )
}
b .PutVectorHeader (len (j .Peers ))
for idx , v := range j .Peers {
if v == nil {
return fmt .Errorf ("unable to encode chatlists.joinChatlistUpdates#e089f8f5: field peers element with index %d is nil" , idx )
}
if err := v .Encode (b ); err != nil {
return fmt .Errorf ("unable to encode chatlists.joinChatlistUpdates#e089f8f5: field peers element with index %d: %w" , idx , err )
}
}
return nil
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) Decode (b *bin .Buffer ) error {
if j == nil {
return fmt .Errorf ("can't decode chatlists.joinChatlistUpdates#e089f8f5 to nil" )
}
if err := b .ConsumeID (ChatlistsJoinChatlistUpdatesRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode chatlists.joinChatlistUpdates#e089f8f5: %w" , err )
}
return j .DecodeBare (b )
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) DecodeBare (b *bin .Buffer ) error {
if j == nil {
return fmt .Errorf ("can't decode chatlists.joinChatlistUpdates#e089f8f5 to nil" )
}
{
if err := j .Chatlist .Decode (b ); err != nil {
return fmt .Errorf ("unable to decode chatlists.joinChatlistUpdates#e089f8f5: field chatlist: %w" , err )
}
}
{
headerLen , err := b .VectorHeader ()
if err != nil {
return fmt .Errorf ("unable to decode chatlists.joinChatlistUpdates#e089f8f5: field peers: %w" , err )
}
if headerLen > 0 {
j .Peers = make ([]InputPeerClass , 0 , headerLen %bin .PreallocateLimit )
}
for idx := 0 ; idx < headerLen ; idx ++ {
value , err := DecodeInputPeer (b )
if err != nil {
return fmt .Errorf ("unable to decode chatlists.joinChatlistUpdates#e089f8f5: field peers: %w" , err )
}
j .Peers = append (j .Peers , value )
}
}
return nil
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) GetChatlist () (value InputChatlistDialogFilter ) {
if j == nil {
return
}
return j .Chatlist
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) GetPeers () (value []InputPeerClass ) {
if j == nil {
return
}
return j .Peers
}
func (j *ChatlistsJoinChatlistUpdatesRequest ) MapPeers () (value InputPeerClassArray ) {
return InputPeerClassArray (j .Peers )
}
func (c *Client ) ChatlistsJoinChatlistUpdates (ctx context .Context , request *ChatlistsJoinChatlistUpdatesRequest ) (UpdatesClass , error ) {
var result UpdatesBox
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return result .Updates , 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 .