package bin
Import Path
github.com/gotd/td/bin (on go.dev )
Dependency Relation
imports 7 packages , and imported by 17 packages
Package-Level Type Names (total 12, all are exported)
/* sort exporteds by: alphabet | popularity */
type Buffer (struct)
Buffer implements low level binary (de-)serialization for TL.
Fields (only one, which is exported )
Buf []byte
Methods (total 45, all are exported )
(*Buffer) Bool () (bool , error )
Bool decodes bare boolean from Buffer.
(*Buffer) Bytes () ([]byte , error )
Bytes decodes byte slice from Buffer.
NB: returning value is a copy, it's safe to modify it.
(*Buffer) ConsumeID (id uint32 ) error
ConsumeID decodes type id from Buffer. If id differs from provided,
the *UnexpectedIDErr{ID: gotID} will be returned and buffer will be
not consumed.
(*Buffer) ConsumeN (target []byte , n int ) error
ConsumeN consumes n bytes from buffer, writing them to target.
Returns io.ErrUnexpectedEOF if buffer contains less that n bytes.
Expects that len(target) >= n.
(*Buffer) Copy () []byte
Copy returns new copy of buffer.
(*Buffer) Decode (d Decoder ) error
Decode wrapper.
(*Buffer) Double () (float64 , error )
Double decodes 64-bit floating point from Buffer.
(*Buffer) Encode (e Encoder ) error
Encode wrapper.
(*Buffer) Expand (n int )
Expand expands buffer to add n bytes.
(*Buffer) ID () (uint32 , error )
ID decodes type id from Buffer.
(*Buffer) Int () (int , error )
Int decodes integer from Buffer.
(*Buffer) Int128 () (Int128 , error )
Int128 decodes 128-bit signed integer from Buffer.
(*Buffer) Int256 () (Int256 , error )
Int256 decodes 256-bit signed integer from Buffer.
(*Buffer) Int32 () (int32 , error )
Int32 decodes signed 32-bit integer from Buffer.
(*Buffer) Int53 () (int64 , error )
Int53 decodes 53-bit signed integer from Buffer.
( Buffer) Len () int
Len returns length of internal buffer.
(*Buffer) Long () (int64 , error )
Long decodes 64-bit signed integer from Buffer.
(*Buffer) PeekID () (uint32 , error )
PeekID returns next type id in Buffer, but does not consume it.
(*Buffer) PeekN (target []byte , n int ) error
PeekN returns n bytes from Buffer to target, but does not consume it.
Returns io.ErrUnexpectedEOF if buffer contains less that n bytes.
Expects that len(target) >= n.
(*Buffer) Put (raw []byte )
Put appends raw bytes to buffer.
Buffer does not retain raw.
(*Buffer) PutBool (v bool )
PutBool serializes bare boolean.
(*Buffer) PutBytes (v []byte )
PutBytes serializes bare byte string.
(*Buffer) PutDouble (v float64 )
PutDouble serializes v as 64-bit floating point.
(*Buffer) PutID (id uint32 )
PutID serializes type definition id, like a8509bda.
(*Buffer) PutInt (v int )
PutInt serializes v as signed 32-bit integer.
If v is bigger than 32-bit, `behavior` is undefined.
(*Buffer) PutInt128 (v Int128 )
PutInt128 serializes v as 128-bit signed integer.
(*Buffer) PutInt256 (v Int256 )
PutInt256 serializes v as 256-bit signed integer.
(*Buffer) PutInt32 (v int32 )
PutInt32 serializes signed 32-bit integer.
(*Buffer) PutInt53 (v int64 )
PutInt53 serializes v as signed integer.
(*Buffer) PutLong (v int64 )
PutLong serializes v as signed integer.
(*Buffer) PutString (s string )
PutString serializes bare string.
(*Buffer) PutUint16 (v uint16 )
PutUint16 serializes unsigned 16-bit integer.
(*Buffer) PutUint32 (v uint32 )
PutUint32 serializes unsigned 32-bit integer.
(*Buffer) PutUint64 (v uint64 )
PutUint64 serializes v as unsigned 64-bit integer.
(*Buffer) PutVectorHeader (length int )
( Buffer) Raw () []byte
Raw returns internal byte slice.
(*Buffer) Read (p []byte ) (n int , err error )
Read implements io.Reader.
(*Buffer) Reset ()
Reset buffer to zero length.
(*Buffer) ResetN (n int )
ResetN resets buffer and expands it to fit n bytes.
(*Buffer) ResetTo (buf []byte )
ResetTo sets internal buffer exactly to provided value.
Buffer will retain buf, so user should not modify or read it
concurrently.
(*Buffer) Skip (n int )
Skip moves cursor for next n bytes.
(*Buffer) String () (string , error )
String decodes string from Buffer.
(*Buffer) Uint32 () (uint32 , error )
Uint32 decodes unsigned 32-bit integer from Buffer.
(*Buffer) Uint64 () (uint64 , error )
Uint64 decodes 64-bit unsigned integer from Buffer.
(*Buffer) VectorHeader () (int , error )
Implements (at least one exported )
*Buffer : io.Reader
As Outputs Of (at least 3, in which 2 are exported )
func (*Pool ).Get () *Buffer
func (*Pool ).GetSize (length int ) *Buffer
/* at least one unexported ... */ /* at least one unexported: */
func github.com/gotd/td/internal/mtproto.gzip (b *Buffer ) (*Buffer , error )
As Inputs Of (at least 8876, in which 8846 are exported )
func BareDecoder .DecodeBare (b *Buffer ) error
func BareEncoder .EncodeBare (b *Buffer ) error
func Decoder .Decode (b *Buffer ) error
func Encoder .Encode (b *Buffer ) error
func (*Fields ).Decode (b *Buffer ) error
func Fields .Encode (b *Buffer ) error
func (*Int128 ).Decode (buf *Buffer ) error
func Int128 .Encode (b *Buffer ) error
func (*Int256 ).Decode (buf *Buffer ) error
func Int256 .Encode (b *Buffer ) error
func Object .Decode (b *Buffer ) error
func Object .Encode (b *Buffer ) error
func (*Pool ).Put (buf *Buffer )
func github.com/gotd/td/internal/crypto.Cipher .DecryptFromBuffer (k crypto .AuthKey , buf *Buffer ) (*crypto .EncryptedMessageData , error )
func github.com/gotd/td/internal/crypto.Cipher .Encrypt (key crypto .AuthKey , data crypto .EncryptedMessageData , b *Buffer ) error
func github.com/gotd/td/internal/crypto.(*EncryptedMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/crypto.(*EncryptedMessage ).DecodeWithoutCopy (b *Buffer ) error
func github.com/gotd/td/internal/crypto.EncryptedMessage .Encode (b *Buffer ) error
func github.com/gotd/td/internal/crypto.(*EncryptedMessageData ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/crypto.(*EncryptedMessageData ).DecodeWithoutCopy (b *Buffer ) error
func github.com/gotd/td/internal/crypto.EncryptedMessageData .Encode (b *Buffer ) error
func github.com/gotd/td/internal/crypto.EncryptedMessageData .EncodeWithoutCopy (b *Buffer ) error
func github.com/gotd/td/internal/mt.DecodeBadMsgNotification (buf *Buffer ) (mt .BadMsgNotificationClass , error )
func github.com/gotd/td/internal/mt.DecodeDestroySessionRes (buf *Buffer ) (mt .DestroySessionResClass , error )
func github.com/gotd/td/internal/mt.DecodeMsgDetailedInfo (buf *Buffer ) (mt .MsgDetailedInfoClass , error )
func github.com/gotd/td/internal/mt.DecodePQInnerData (buf *Buffer ) (mt .PQInnerDataClass , error )
func github.com/gotd/td/internal/mt.DecodeRPCDropAnswer (buf *Buffer ) (mt .RPCDropAnswerClass , error )
func github.com/gotd/td/internal/mt.DecodeServerDHParams (buf *Buffer ) (mt .ServerDHParamsClass , error )
func github.com/gotd/td/internal/mt.DecodeSetClientDHParamsAnswer (buf *Buffer ) (mt .SetClientDHParamsAnswerClass , error )
func github.com/gotd/td/internal/mt.(*BadMsgNotification ).Decode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*BadMsgNotification ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*BadMsgNotification ).Encode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*BadMsgNotification ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*BadMsgNotificationBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*BadMsgNotificationBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.BadMsgNotificationClass .Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.BadMsgNotificationClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.BadMsgNotificationClass .Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.BadMsgNotificationClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*BadServerSalt ).Decode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*BadServerSalt ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*BadServerSalt ).Encode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*BadServerSalt ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*ClientDHInnerData ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ClientDHInnerData ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ClientDHInnerData ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ClientDHInnerData ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionNone ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionNone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionNone ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionNone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionOk ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionOk ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionOk ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionOk ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionResBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*DestroySessionResBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.DestroySessionResClass .Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.DestroySessionResClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.DestroySessionResClass .Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.DestroySessionResClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenFail ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenFail ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenFail ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenFail ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenOk ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenOk ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenOk ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenOk ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenRetry ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenRetry ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenRetry ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*DhGenRetry ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*FutureSalt ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*FutureSalt ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*FutureSalt ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*FutureSalt ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*FutureSalts ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*FutureSalts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*FutureSalts ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*FutureSalts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*GetFutureSaltsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*GetFutureSaltsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*GetFutureSaltsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*GetFutureSaltsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*GzipPacked ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*GzipPacked ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*GzipPacked ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*GzipPacked ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*HTTPWaitRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*HTTPWaitRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*HTTPWaitRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*HTTPWaitRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*Message ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*Message ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*Message ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*Message ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgContainer ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgContainer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgContainer ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgContainer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgCopy ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgCopy ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgCopy ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgCopy ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgDetailedInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgDetailedInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgDetailedInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgDetailedInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgDetailedInfoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgDetailedInfoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.MsgDetailedInfoClass .Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.MsgDetailedInfoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.MsgDetailedInfoClass .Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.MsgDetailedInfoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgNewDetailedInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgNewDetailedInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgNewDetailedInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgNewDetailedInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgResendReq ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgResendReq ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgResendReq ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgResendReq ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsAck ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsAck ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsAck ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsAck ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsAllInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsAllInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsAllInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsAllInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsStateInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsStateInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsStateInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsStateInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsStateReq ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsStateReq ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsStateReq ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*MsgsStateReq ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*NewSessionCreated ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*NewSessionCreated ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*NewSessionCreated ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*NewSessionCreated ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PingDelayDisconnectRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PingDelayDisconnectRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PingDelayDisconnectRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PingDelayDisconnectRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PingRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PingRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PingRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PingRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*Pong ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*Pong ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*Pong ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*Pong ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerData ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerData ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerData ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerData ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.PQInnerDataClass .Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.PQInnerDataClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.PQInnerDataClass .Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.PQInnerDataClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataDC ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataDC ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataDC ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataDC ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataTempDC ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataTempDC ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataTempDC ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*PQInnerDataTempDC ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqDHParamsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqDHParamsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqDHParamsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqDHParamsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqPqMultiRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqPqMultiRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqPqMultiRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqPqMultiRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqPqRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqPqRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqPqRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ReqPqRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ResPQ ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ResPQ ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ResPQ ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ResPQ ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerDropped ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerDropped ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerDropped ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerDropped ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerDroppedRunning ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerDroppedRunning ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerDroppedRunning ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerDroppedRunning ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerUnknown ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerUnknown ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerUnknown ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCAnswerUnknown ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCDropAnswerBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCDropAnswerBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.RPCDropAnswerClass .Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.RPCDropAnswerClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.RPCDropAnswerClass .Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.RPCDropAnswerClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCDropAnswerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCDropAnswerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCDropAnswerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCDropAnswerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCError ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCError ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCError ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCError ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCResult ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCResult ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCResult ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*RPCResult ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHInnerData ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHInnerData ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHInnerData ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHInnerData ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.ServerDHParamsClass .Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.ServerDHParamsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.ServerDHParamsClass .Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.ServerDHParamsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsFail ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsFail ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsFail ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsFail ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsOk ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsOk ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsOk ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*ServerDHParamsOk ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*SetClientDHParamsAnswerBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.(*SetClientDHParamsAnswerBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/internal/mt.SetClientDHParamsAnswerClass .Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.SetClientDHParamsAnswerClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.SetClientDHParamsAnswerClass .Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.SetClientDHParamsAnswerClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*SetClientDHParamsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*SetClientDHParamsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*SetClientDHParamsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/mt.(*SetClientDHParamsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/internal/mtproto.Cipher .DecryptFromBuffer (k crypto .AuthKey , buf *Buffer ) (*crypto .EncryptedMessageData , error )
func github.com/gotd/td/internal/mtproto.Cipher .Encrypt (key crypto .AuthKey , data crypto .EncryptedMessageData , b *Buffer ) error
func github.com/gotd/td/internal/mtproto.Handler .OnMessage (b *Buffer ) error
func github.com/gotd/td/internal/proto.(*GZIP ).Decode (b *Buffer ) (rErr error )
func github.com/gotd/td/internal/proto.GZIP .Encode (b *Buffer ) (rErr error )
func github.com/gotd/td/internal/proto.(*Message ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/proto.(*Message ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/proto.(*MessageContainer ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/proto.(*MessageContainer ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/proto.(*Result ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/proto.(*Result ).Encode (b *Buffer ) error
func github.com/gotd/td/internal/proto.(*UnencryptedMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/internal/proto.UnencryptedMessage .Encode (b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.Abridged .Read (r io .Reader , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.Abridged .Write (w io .Writer , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.Codec .Read (r io .Reader , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.Codec .Write (w io .Writer , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.(*Full ).Read (r io .Reader , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.(*Full ).Write (w io .Writer , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.Intermediate .Read (r io .Reader , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.Intermediate .Write (w io .Writer , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.PaddedIntermediate .Read (r io .Reader , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.PaddedIntermediate .Write (w io .Writer , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.TaggedCodec .Read (r io .Reader , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.TaggedCodec .Write (w io .Writer , b *Buffer ) error
func github.com/gotd/td/internal/rpc.(*Engine ).NotifyResult (msgID int64 , b *Buffer ) error
func github.com/gotd/td/telegram/internal/manager.(*Conn ).OnMessage (b *Buffer ) error
func github.com/gotd/td/telegram/internal/manager.Handler .OnMessage (b *Buffer ) error
func github.com/gotd/td/telegram/internal/manager.NoopHandler .OnMessage (b *Buffer ) error
func github.com/gotd/td/tg.DecodeAccountEmailVerified (buf *Buffer ) (tg .AccountEmailVerifiedClass , error )
func github.com/gotd/td/tg.DecodeAccountEmojiStatuses (buf *Buffer ) (tg .AccountEmojiStatusesClass , error )
func github.com/gotd/td/tg.DecodeAccountResetPasswordResult (buf *Buffer ) (tg .AccountResetPasswordResultClass , error )
func github.com/gotd/td/tg.DecodeAccountSavedRingtone (buf *Buffer ) (tg .AccountSavedRingtoneClass , error )
func github.com/gotd/td/tg.DecodeAccountSavedRingtones (buf *Buffer ) (tg .AccountSavedRingtonesClass , error )
func github.com/gotd/td/tg.DecodeAccountThemes (buf *Buffer ) (tg .AccountThemesClass , error )
func github.com/gotd/td/tg.DecodeAccountWallPapers (buf *Buffer ) (tg .AccountWallPapersClass , error )
func github.com/gotd/td/tg.DecodeAttachMenuBots (buf *Buffer ) (tg .AttachMenuBotsClass , error )
func github.com/gotd/td/tg.DecodeAttachMenuPeerType (buf *Buffer ) (tg .AttachMenuPeerTypeClass , error )
func github.com/gotd/td/tg.DecodeAuthAuthorization (buf *Buffer ) (tg .AuthAuthorizationClass , error )
func github.com/gotd/td/tg.DecodeAuthCodeType (buf *Buffer ) (tg .AuthCodeTypeClass , error )
func github.com/gotd/td/tg.DecodeAuthLoginToken (buf *Buffer ) (tg .AuthLoginTokenClass , error )
func github.com/gotd/td/tg.DecodeAuthSentCode (buf *Buffer ) (tg .AuthSentCodeClass , error )
func github.com/gotd/td/tg.DecodeAuthSentCodeType (buf *Buffer ) (tg .AuthSentCodeTypeClass , error )
func github.com/gotd/td/tg.DecodeBaseTheme (buf *Buffer ) (tg .BaseThemeClass , error )
func github.com/gotd/td/tg.DecodeBool (buf *Buffer ) (tg .BoolClass , error )
func github.com/gotd/td/tg.DecodeBotApp (buf *Buffer ) (tg .BotAppClass , error )
func github.com/gotd/td/tg.DecodeBotCommandScope (buf *Buffer ) (tg .BotCommandScopeClass , error )
func github.com/gotd/td/tg.DecodeBotInlineMessage (buf *Buffer ) (tg .BotInlineMessageClass , error )
func github.com/gotd/td/tg.DecodeBotInlineResult (buf *Buffer ) (tg .BotInlineResultClass , error )
func github.com/gotd/td/tg.DecodeBotMenuButton (buf *Buffer ) (tg .BotMenuButtonClass , error )
func github.com/gotd/td/tg.DecodeChannelAdminLogEventAction (buf *Buffer ) (tg .ChannelAdminLogEventActionClass , error )
func github.com/gotd/td/tg.DecodeChannelLocation (buf *Buffer ) (tg .ChannelLocationClass , error )
func github.com/gotd/td/tg.DecodeChannelMessagesFilter (buf *Buffer ) (tg .ChannelMessagesFilterClass , error )
func github.com/gotd/td/tg.DecodeChannelParticipant (buf *Buffer ) (tg .ChannelParticipantClass , error )
func github.com/gotd/td/tg.DecodeChannelParticipantsFilter (buf *Buffer ) (tg .ChannelParticipantsFilterClass , error )
func github.com/gotd/td/tg.DecodeChannelsChannelParticipants (buf *Buffer ) (tg .ChannelsChannelParticipantsClass , error )
func github.com/gotd/td/tg.DecodeChat (buf *Buffer ) (tg .ChatClass , error )
func github.com/gotd/td/tg.DecodeChatFull (buf *Buffer ) (tg .ChatFullClass , error )
func github.com/gotd/td/tg.DecodeChatInvite (buf *Buffer ) (tg .ChatInviteClass , error )
func github.com/gotd/td/tg.DecodeChatlistsChatlistInvite (buf *Buffer ) (tg .ChatlistsChatlistInviteClass , error )
func github.com/gotd/td/tg.DecodeChatParticipant (buf *Buffer ) (tg .ChatParticipantClass , error )
func github.com/gotd/td/tg.DecodeChatParticipants (buf *Buffer ) (tg .ChatParticipantsClass , error )
func github.com/gotd/td/tg.DecodeChatPhoto (buf *Buffer ) (tg .ChatPhotoClass , error )
func github.com/gotd/td/tg.DecodeChatReactions (buf *Buffer ) (tg .ChatReactionsClass , error )
func github.com/gotd/td/tg.DecodeContactsBlocked (buf *Buffer ) (tg .ContactsBlockedClass , error )
func github.com/gotd/td/tg.DecodeContactsContacts (buf *Buffer ) (tg .ContactsContactsClass , error )
func github.com/gotd/td/tg.DecodeContactsTopPeers (buf *Buffer ) (tg .ContactsTopPeersClass , error )
func github.com/gotd/td/tg.DecodeDialog (buf *Buffer ) (tg .DialogClass , error )
func github.com/gotd/td/tg.DecodeDialogFilter (buf *Buffer ) (tg .DialogFilterClass , error )
func github.com/gotd/td/tg.DecodeDialogPeer (buf *Buffer ) (tg .DialogPeerClass , error )
func github.com/gotd/td/tg.DecodeDocument (buf *Buffer ) (tg .DocumentClass , error )
func github.com/gotd/td/tg.DecodeDocumentAttribute (buf *Buffer ) (tg .DocumentAttributeClass , error )
func github.com/gotd/td/tg.DecodeDraftMessage (buf *Buffer ) (tg .DraftMessageClass , error )
func github.com/gotd/td/tg.DecodeEmailVerification (buf *Buffer ) (tg .EmailVerificationClass , error )
func github.com/gotd/td/tg.DecodeEmailVerifyPurpose (buf *Buffer ) (tg .EmailVerifyPurposeClass , error )
func github.com/gotd/td/tg.DecodeEmojiKeyword (buf *Buffer ) (tg .EmojiKeywordClass , error )
func github.com/gotd/td/tg.DecodeEmojiList (buf *Buffer ) (tg .EmojiListClass , error )
func github.com/gotd/td/tg.DecodeEmojiStatus (buf *Buffer ) (tg .EmojiStatusClass , error )
func github.com/gotd/td/tg.DecodeEncryptedChat (buf *Buffer ) (tg .EncryptedChatClass , error )
func github.com/gotd/td/tg.DecodeEncryptedFile (buf *Buffer ) (tg .EncryptedFileClass , error )
func github.com/gotd/td/tg.DecodeEncryptedMessage (buf *Buffer ) (tg .EncryptedMessageClass , error )
func github.com/gotd/td/tg.DecodeExportedChatInvite (buf *Buffer ) (tg .ExportedChatInviteClass , error )
func github.com/gotd/td/tg.DecodeForumTopic (buf *Buffer ) (tg .ForumTopicClass , error )
func github.com/gotd/td/tg.DecodeGeoPoint (buf *Buffer ) (tg .GeoPointClass , error )
func github.com/gotd/td/tg.DecodeGroupCall (buf *Buffer ) (tg .GroupCallClass , error )
func github.com/gotd/td/tg.DecodeHelpAppConfig (buf *Buffer ) (tg .HelpAppConfigClass , error )
func github.com/gotd/td/tg.DecodeHelpAppUpdate (buf *Buffer ) (tg .HelpAppUpdateClass , error )
func github.com/gotd/td/tg.DecodeHelpCountriesList (buf *Buffer ) (tg .HelpCountriesListClass , error )
func github.com/gotd/td/tg.DecodeHelpDeepLinkInfo (buf *Buffer ) (tg .HelpDeepLinkInfoClass , error )
func github.com/gotd/td/tg.DecodeHelpPassportConfig (buf *Buffer ) (tg .HelpPassportConfigClass , error )
func github.com/gotd/td/tg.DecodeHelpPeerColors (buf *Buffer ) (tg .HelpPeerColorsClass , error )
func github.com/gotd/td/tg.DecodeHelpPeerColorSet (buf *Buffer ) (tg .HelpPeerColorSetClass , error )
func github.com/gotd/td/tg.DecodeHelpPromoData (buf *Buffer ) (tg .HelpPromoDataClass , error )
func github.com/gotd/td/tg.DecodeHelpTermsOfServiceUpdate (buf *Buffer ) (tg .HelpTermsOfServiceUpdateClass , error )
func github.com/gotd/td/tg.DecodeHelpUserInfo (buf *Buffer ) (tg .HelpUserInfoClass , error )
func github.com/gotd/td/tg.DecodeInlineQueryPeerType (buf *Buffer ) (tg .InlineQueryPeerTypeClass , error )
func github.com/gotd/td/tg.DecodeInputBotApp (buf *Buffer ) (tg .InputBotAppClass , error )
func github.com/gotd/td/tg.DecodeInputBotInlineMessage (buf *Buffer ) (tg .InputBotInlineMessageClass , error )
func github.com/gotd/td/tg.DecodeInputBotInlineMessageID (buf *Buffer ) (tg .InputBotInlineMessageIDClass , error )
func github.com/gotd/td/tg.DecodeInputBotInlineResult (buf *Buffer ) (tg .InputBotInlineResultClass , error )
func github.com/gotd/td/tg.DecodeInputChannel (buf *Buffer ) (tg .InputChannelClass , error )
func github.com/gotd/td/tg.DecodeInputChatPhoto (buf *Buffer ) (tg .InputChatPhotoClass , error )
func github.com/gotd/td/tg.DecodeInputCheckPasswordSRP (buf *Buffer ) (tg .InputCheckPasswordSRPClass , error )
func github.com/gotd/td/tg.DecodeInputDialogPeer (buf *Buffer ) (tg .InputDialogPeerClass , error )
func github.com/gotd/td/tg.DecodeInputDocument (buf *Buffer ) (tg .InputDocumentClass , error )
func github.com/gotd/td/tg.DecodeInputEncryptedFile (buf *Buffer ) (tg .InputEncryptedFileClass , error )
func github.com/gotd/td/tg.DecodeInputFile (buf *Buffer ) (tg .InputFileClass , error )
func github.com/gotd/td/tg.DecodeInputFileLocation (buf *Buffer ) (tg .InputFileLocationClass , error )
func github.com/gotd/td/tg.DecodeInputGame (buf *Buffer ) (tg .InputGameClass , error )
func github.com/gotd/td/tg.DecodeInputGeoPoint (buf *Buffer ) (tg .InputGeoPointClass , error )
func github.com/gotd/td/tg.DecodeInputInvoice (buf *Buffer ) (tg .InputInvoiceClass , error )
func github.com/gotd/td/tg.DecodeInputMedia (buf *Buffer ) (tg .InputMediaClass , error )
func github.com/gotd/td/tg.DecodeInputMessage (buf *Buffer ) (tg .InputMessageClass , error )
func github.com/gotd/td/tg.DecodeInputNotifyPeer (buf *Buffer ) (tg .InputNotifyPeerClass , error )
func github.com/gotd/td/tg.DecodeInputPaymentCredentials (buf *Buffer ) (tg .InputPaymentCredentialsClass , error )
func github.com/gotd/td/tg.DecodeInputPeer (buf *Buffer ) (tg .InputPeerClass , error )
func github.com/gotd/td/tg.DecodeInputPhoto (buf *Buffer ) (tg .InputPhotoClass , error )
func github.com/gotd/td/tg.DecodeInputPrivacyKey (buf *Buffer ) (tg .InputPrivacyKeyClass , error )
func github.com/gotd/td/tg.DecodeInputPrivacyRule (buf *Buffer ) (tg .InputPrivacyRuleClass , error )
func github.com/gotd/td/tg.DecodeInputReplyTo (buf *Buffer ) (tg .InputReplyToClass , error )
func github.com/gotd/td/tg.DecodeInputSecureFile (buf *Buffer ) (tg .InputSecureFileClass , error )
func github.com/gotd/td/tg.DecodeInputStickeredMedia (buf *Buffer ) (tg .InputStickeredMediaClass , error )
func github.com/gotd/td/tg.DecodeInputStickerSet (buf *Buffer ) (tg .InputStickerSetClass , error )
func github.com/gotd/td/tg.DecodeInputStorePaymentPurpose (buf *Buffer ) (tg .InputStorePaymentPurposeClass , error )
func github.com/gotd/td/tg.DecodeInputTheme (buf *Buffer ) (tg .InputThemeClass , error )
func github.com/gotd/td/tg.DecodeInputUser (buf *Buffer ) (tg .InputUserClass , error )
func github.com/gotd/td/tg.DecodeInputWallPaper (buf *Buffer ) (tg .InputWallPaperClass , error )
func github.com/gotd/td/tg.DecodeInputWebFileLocation (buf *Buffer ) (tg .InputWebFileLocationClass , error )
func github.com/gotd/td/tg.DecodeIPPort (buf *Buffer ) (tg .IPPortClass , error )
func github.com/gotd/td/tg.DecodeJSONValue (buf *Buffer ) (tg .JSONValueClass , error )
func github.com/gotd/td/tg.DecodeKeyboardButton (buf *Buffer ) (tg .KeyboardButtonClass , error )
func github.com/gotd/td/tg.DecodeLangPackString (buf *Buffer ) (tg .LangPackStringClass , error )
func github.com/gotd/td/tg.DecodeMediaArea (buf *Buffer ) (tg .MediaAreaClass , error )
func github.com/gotd/td/tg.DecodeMessage (buf *Buffer ) (tg .MessageClass , error )
func github.com/gotd/td/tg.DecodeMessageAction (buf *Buffer ) (tg .MessageActionClass , error )
func github.com/gotd/td/tg.DecodeMessageEntity (buf *Buffer ) (tg .MessageEntityClass , error )
func github.com/gotd/td/tg.DecodeMessageExtendedMedia (buf *Buffer ) (tg .MessageExtendedMediaClass , error )
func github.com/gotd/td/tg.DecodeMessageMedia (buf *Buffer ) (tg .MessageMediaClass , error )
func github.com/gotd/td/tg.DecodeMessagePeerVote (buf *Buffer ) (tg .MessagePeerVoteClass , error )
func github.com/gotd/td/tg.DecodeMessageReplyHeader (buf *Buffer ) (tg .MessageReplyHeaderClass , error )
func github.com/gotd/td/tg.DecodeMessagesAllStickers (buf *Buffer ) (tg .MessagesAllStickersClass , error )
func github.com/gotd/td/tg.DecodeMessagesAvailableReactions (buf *Buffer ) (tg .MessagesAvailableReactionsClass , error )
func github.com/gotd/td/tg.DecodeMessagesChats (buf *Buffer ) (tg .MessagesChatsClass , error )
func github.com/gotd/td/tg.DecodeMessagesDhConfig (buf *Buffer ) (tg .MessagesDhConfigClass , error )
func github.com/gotd/td/tg.DecodeMessagesDialogs (buf *Buffer ) (tg .MessagesDialogsClass , error )
func github.com/gotd/td/tg.DecodeMessagesEmojiGroups (buf *Buffer ) (tg .MessagesEmojiGroupsClass , error )
func github.com/gotd/td/tg.DecodeMessagesExportedChatInvite (buf *Buffer ) (tg .MessagesExportedChatInviteClass , error )
func github.com/gotd/td/tg.DecodeMessagesFavedStickers (buf *Buffer ) (tg .MessagesFavedStickersClass , error )
func github.com/gotd/td/tg.DecodeMessagesFeaturedStickers (buf *Buffer ) (tg .MessagesFeaturedStickersClass , error )
func github.com/gotd/td/tg.DecodeMessagesFilter (buf *Buffer ) (tg .MessagesFilterClass , error )
func github.com/gotd/td/tg.DecodeMessagesFoundStickerSets (buf *Buffer ) (tg .MessagesFoundStickerSetsClass , error )
func github.com/gotd/td/tg.DecodeMessagesMessages (buf *Buffer ) (tg .MessagesMessagesClass , error )
func github.com/gotd/td/tg.DecodeMessagesReactions (buf *Buffer ) (tg .MessagesReactionsClass , error )
func github.com/gotd/td/tg.DecodeMessagesRecentStickers (buf *Buffer ) (tg .MessagesRecentStickersClass , error )
func github.com/gotd/td/tg.DecodeMessagesSavedGifs (buf *Buffer ) (tg .MessagesSavedGifsClass , error )
func github.com/gotd/td/tg.DecodeMessagesSentEncryptedMessage (buf *Buffer ) (tg .MessagesSentEncryptedMessageClass , error )
func github.com/gotd/td/tg.DecodeMessagesSponsoredMessages (buf *Buffer ) (tg .MessagesSponsoredMessagesClass , error )
func github.com/gotd/td/tg.DecodeMessagesStickers (buf *Buffer ) (tg .MessagesStickersClass , error )
func github.com/gotd/td/tg.DecodeMessagesStickerSet (buf *Buffer ) (tg .MessagesStickerSetClass , error )
func github.com/gotd/td/tg.DecodeMessagesStickerSetInstallResult (buf *Buffer ) (tg .MessagesStickerSetInstallResultClass , error )
func github.com/gotd/td/tg.DecodeNotificationSound (buf *Buffer ) (tg .NotificationSoundClass , error )
func github.com/gotd/td/tg.DecodeNotifyPeer (buf *Buffer ) (tg .NotifyPeerClass , error )
func github.com/gotd/td/tg.DecodePageBlock (buf *Buffer ) (tg .PageBlockClass , error )
func github.com/gotd/td/tg.DecodePageListItem (buf *Buffer ) (tg .PageListItemClass , error )
func github.com/gotd/td/tg.DecodePageListOrderedItem (buf *Buffer ) (tg .PageListOrderedItemClass , error )
func github.com/gotd/td/tg.DecodePasswordKdfAlgo (buf *Buffer ) (tg .PasswordKdfAlgoClass , error )
func github.com/gotd/td/tg.DecodePaymentsGiveawayInfo (buf *Buffer ) (tg .PaymentsGiveawayInfoClass , error )
func github.com/gotd/td/tg.DecodePaymentsPaymentResult (buf *Buffer ) (tg .PaymentsPaymentResultClass , error )
func github.com/gotd/td/tg.DecodePeer (buf *Buffer ) (tg .PeerClass , error )
func github.com/gotd/td/tg.DecodePeerLocated (buf *Buffer ) (tg .PeerLocatedClass , error )
func github.com/gotd/td/tg.DecodePhoneCall (buf *Buffer ) (tg .PhoneCallClass , error )
func github.com/gotd/td/tg.DecodePhoneCallDiscardReason (buf *Buffer ) (tg .PhoneCallDiscardReasonClass , error )
func github.com/gotd/td/tg.DecodePhoneConnection (buf *Buffer ) (tg .PhoneConnectionClass , error )
func github.com/gotd/td/tg.DecodePhoto (buf *Buffer ) (tg .PhotoClass , error )
func github.com/gotd/td/tg.DecodePhotoSize (buf *Buffer ) (tg .PhotoSizeClass , error )
func github.com/gotd/td/tg.DecodePhotosPhotos (buf *Buffer ) (tg .PhotosPhotosClass , error )
func github.com/gotd/td/tg.DecodePostInteractionCounters (buf *Buffer ) (tg .PostInteractionCountersClass , error )
func github.com/gotd/td/tg.DecodePrivacyKey (buf *Buffer ) (tg .PrivacyKeyClass , error )
func github.com/gotd/td/tg.DecodePrivacyRule (buf *Buffer ) (tg .PrivacyRuleClass , error )
func github.com/gotd/td/tg.DecodePublicForward (buf *Buffer ) (tg .PublicForwardClass , error )
func github.com/gotd/td/tg.DecodeReaction (buf *Buffer ) (tg .ReactionClass , error )
func github.com/gotd/td/tg.DecodeRecentMeURL (buf *Buffer ) (tg .RecentMeURLClass , error )
func github.com/gotd/td/tg.DecodeReplyMarkup (buf *Buffer ) (tg .ReplyMarkupClass , error )
func github.com/gotd/td/tg.DecodeReportReason (buf *Buffer ) (tg .ReportReasonClass , error )
func github.com/gotd/td/tg.DecodeRequestPeerType (buf *Buffer ) (tg .RequestPeerTypeClass , error )
func github.com/gotd/td/tg.DecodeRichText (buf *Buffer ) (tg .RichTextClass , error )
func github.com/gotd/td/tg.DecodeSecureFile (buf *Buffer ) (tg .SecureFileClass , error )
func github.com/gotd/td/tg.DecodeSecurePasswordKdfAlgo (buf *Buffer ) (tg .SecurePasswordKdfAlgoClass , error )
func github.com/gotd/td/tg.DecodeSecurePlainData (buf *Buffer ) (tg .SecurePlainDataClass , error )
func github.com/gotd/td/tg.DecodeSecureRequiredType (buf *Buffer ) (tg .SecureRequiredTypeClass , error )
func github.com/gotd/td/tg.DecodeSecureValueError (buf *Buffer ) (tg .SecureValueErrorClass , error )
func github.com/gotd/td/tg.DecodeSecureValueType (buf *Buffer ) (tg .SecureValueTypeClass , error )
func github.com/gotd/td/tg.DecodeSendMessageAction (buf *Buffer ) (tg .SendMessageActionClass , error )
func github.com/gotd/td/tg.DecodeStatsGraph (buf *Buffer ) (tg .StatsGraphClass , error )
func github.com/gotd/td/tg.DecodeStickerSetCovered (buf *Buffer ) (tg .StickerSetCoveredClass , error )
func github.com/gotd/td/tg.DecodeStorageFileType (buf *Buffer ) (tg .StorageFileTypeClass , error )
func github.com/gotd/td/tg.DecodeStoriesAllStories (buf *Buffer ) (tg .StoriesAllStoriesClass , error )
func github.com/gotd/td/tg.DecodeStoryItem (buf *Buffer ) (tg .StoryItemClass , error )
func github.com/gotd/td/tg.DecodeStoryReaction (buf *Buffer ) (tg .StoryReactionClass , error )
func github.com/gotd/td/tg.DecodeStoryView (buf *Buffer ) (tg .StoryViewClass , error )
func github.com/gotd/td/tg.DecodeTopPeerCategory (buf *Buffer ) (tg .TopPeerCategoryClass , error )
func github.com/gotd/td/tg.DecodeUpdate (buf *Buffer ) (tg .UpdateClass , error )
func github.com/gotd/td/tg.DecodeUpdates (buf *Buffer ) (tg .UpdatesClass , error )
func github.com/gotd/td/tg.DecodeUpdatesChannelDifference (buf *Buffer ) (tg .UpdatesChannelDifferenceClass , error )
func github.com/gotd/td/tg.DecodeUpdatesDifference (buf *Buffer ) (tg .UpdatesDifferenceClass , error )
func github.com/gotd/td/tg.DecodeUploadCDNFile (buf *Buffer ) (tg .UploadCDNFileClass , error )
func github.com/gotd/td/tg.DecodeUploadFile (buf *Buffer ) (tg .UploadFileClass , error )
func github.com/gotd/td/tg.DecodeURLAuthResult (buf *Buffer ) (tg .URLAuthResultClass , error )
func github.com/gotd/td/tg.DecodeUser (buf *Buffer ) (tg .UserClass , error )
func github.com/gotd/td/tg.DecodeUserProfilePhoto (buf *Buffer ) (tg .UserProfilePhotoClass , error )
func github.com/gotd/td/tg.DecodeUserStatus (buf *Buffer ) (tg .UserStatusClass , error )
func github.com/gotd/td/tg.DecodeVideoSize (buf *Buffer ) (tg .VideoSizeClass , error )
func github.com/gotd/td/tg.DecodeWallPaper (buf *Buffer ) (tg .WallPaperClass , error )
func github.com/gotd/td/tg.DecodeWebDocument (buf *Buffer ) (tg .WebDocumentClass , error )
func github.com/gotd/td/tg.DecodeWebPage (buf *Buffer ) (tg .WebPageClass , error )
func github.com/gotd/td/tg.DecodeWebPageAttribute (buf *Buffer ) (tg .WebPageAttributeClass , error )
func github.com/gotd/td/tg.(*AccessPointRule ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccessPointRule ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccessPointRule ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccessPointRule ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAcceptAuthorizationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAcceptAuthorizationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAcceptAuthorizationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAcceptAuthorizationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAuthorizationForm ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAuthorizationForm ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAuthorizationForm ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAuthorizationForm ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAuthorizations ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAuthorizations ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAuthorizations ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAuthorizations ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAutoDownloadSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAutoDownloadSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAutoDownloadSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAutoDownloadSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAutoSaveSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAutoSaveSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAutoSaveSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountAutoSaveSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCancelPasswordEmailRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCancelPasswordEmailRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCancelPasswordEmailRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCancelPasswordEmailRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountChangeAuthorizationSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountChangeAuthorizationSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountChangeAuthorizationSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountChangeAuthorizationSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountChangePhoneRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountChangePhoneRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountChangePhoneRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountChangePhoneRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCheckUsernameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCheckUsernameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCheckUsernameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCheckUsernameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountClearRecentEmojiStatusesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountClearRecentEmojiStatusesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountClearRecentEmojiStatusesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountClearRecentEmojiStatusesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountConfirmPasswordEmailRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountConfirmPasswordEmailRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountConfirmPasswordEmailRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountConfirmPasswordEmailRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountConfirmPhoneRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountConfirmPhoneRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountConfirmPhoneRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountConfirmPhoneRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountContentSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountContentSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountContentSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountContentSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCreateThemeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCreateThemeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCreateThemeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountCreateThemeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDaysTTL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDaysTTL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDaysTTL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDaysTTL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeclinePasswordResetRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeclinePasswordResetRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeclinePasswordResetRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeclinePasswordResetRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteAccountRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteAccountRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteAccountRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteAccountRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteAutoSaveExceptionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteAutoSaveExceptionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteAutoSaveExceptionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteAutoSaveExceptionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteSecureValueRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteSecureValueRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteSecureValueRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountDeleteSecureValueRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerifiedBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerifiedBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AccountEmailVerifiedClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AccountEmailVerifiedClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AccountEmailVerifiedClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AccountEmailVerifiedClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerifiedLogin ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerifiedLogin ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerifiedLogin ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmailVerifiedLogin ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatuses ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatuses ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatuses ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatuses ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatusesBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatusesBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AccountEmojiStatusesClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AccountEmojiStatusesClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AccountEmojiStatusesClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AccountEmojiStatusesClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatusesNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatusesNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatusesNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountEmojiStatusesNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountFinishTakeoutSessionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountFinishTakeoutSessionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountFinishTakeoutSessionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountFinishTakeoutSessionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAccountTTLRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAccountTTLRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAccountTTLRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAccountTTLRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAllSecureValuesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAllSecureValuesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAllSecureValuesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAllSecureValuesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAuthorizationFormRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAuthorizationFormRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAuthorizationFormRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAuthorizationFormRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAuthorizationsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAuthorizationsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAuthorizationsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAuthorizationsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAutoDownloadSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAutoDownloadSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAutoDownloadSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAutoDownloadSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAutoSaveSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAutoSaveSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAutoSaveSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetAutoSaveSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChannelDefaultEmojiStatusesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChannelDefaultEmojiStatusesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChannelDefaultEmojiStatusesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChannelDefaultEmojiStatusesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChannelRestrictedStatusEmojisRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChannelRestrictedStatusEmojisRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChannelRestrictedStatusEmojisRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChannelRestrictedStatusEmojisRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChatThemesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChatThemesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChatThemesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetChatThemesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetContactSignUpNotificationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetContactSignUpNotificationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetContactSignUpNotificationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetContactSignUpNotificationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetContentSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetContentSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetContentSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetContentSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultBackgroundEmojisRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultBackgroundEmojisRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultBackgroundEmojisRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultBackgroundEmojisRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultEmojiStatusesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultEmojiStatusesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultEmojiStatusesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultEmojiStatusesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultGroupPhotoEmojisRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultGroupPhotoEmojisRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultGroupPhotoEmojisRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultGroupPhotoEmojisRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultProfilePhotoEmojisRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultProfilePhotoEmojisRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultProfilePhotoEmojisRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetDefaultProfilePhotoEmojisRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetGlobalPrivacySettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetGlobalPrivacySettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetGlobalPrivacySettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetGlobalPrivacySettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetMultiWallPapersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetMultiWallPapersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetMultiWallPapersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetMultiWallPapersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetNotifyExceptionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetNotifyExceptionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetNotifyExceptionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetNotifyExceptionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetNotifySettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetNotifySettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetNotifySettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetNotifySettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPasswordRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPasswordRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPasswordRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPasswordRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPasswordSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPasswordSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPasswordSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPasswordSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPrivacyRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPrivacyRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPrivacyRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetPrivacyRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetRecentEmojiStatusesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetRecentEmojiStatusesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetRecentEmojiStatusesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetRecentEmojiStatusesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetSavedRingtonesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetSavedRingtonesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetSavedRingtonesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetSavedRingtonesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetSecureValueRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetSecureValueRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetSecureValueRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetSecureValueRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetThemeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetThemeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetThemeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetThemeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetThemesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetThemesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetThemesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetThemesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetTmpPasswordRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetTmpPasswordRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetTmpPasswordRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetTmpPasswordRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWallPaperRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWallPaperRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWallPaperRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWallPaperRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWallPapersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWallPapersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWallPapersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWallPapersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWebAuthorizationsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWebAuthorizationsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWebAuthorizationsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountGetWebAuthorizationsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInitTakeoutSessionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInitTakeoutSessionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInitTakeoutSessionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInitTakeoutSessionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInstallThemeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInstallThemeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInstallThemeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInstallThemeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInstallWallPaperRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInstallWallPaperRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInstallWallPaperRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInstallWallPaperRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInvalidateSignInCodesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInvalidateSignInCodesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInvalidateSignInCodesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountInvalidateSignInCodesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPassword ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPassword ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPassword ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPassword ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPasswordInputSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPasswordInputSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPasswordInputSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPasswordInputSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPasswordSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPasswordSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPasswordSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPasswordSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPrivacyRules ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPrivacyRules ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPrivacyRules ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountPrivacyRules ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountRegisterDeviceRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountRegisterDeviceRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountRegisterDeviceRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountRegisterDeviceRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReorderUsernamesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReorderUsernamesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReorderUsernamesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReorderUsernamesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReportPeerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReportPeerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReportPeerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReportPeerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReportProfilePhotoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReportProfilePhotoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReportProfilePhotoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountReportProfilePhotoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResendPasswordEmailRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResendPasswordEmailRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResendPasswordEmailRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResendPasswordEmailRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetAuthorizationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetAuthorizationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetAuthorizationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetAuthorizationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetNotifySettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetNotifySettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetNotifySettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetNotifySettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordFailedWait ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordFailedWait ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordFailedWait ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordFailedWait ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordOk ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordOk ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordOk ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordOk ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordRequestedWait ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordRequestedWait ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordRequestedWait ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordRequestedWait ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordResultBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetPasswordResultBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AccountResetPasswordResultClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AccountResetPasswordResultClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AccountResetPasswordResultClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AccountResetPasswordResultClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWallPapersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWallPapersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWallPapersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWallPapersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWebAuthorizationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWebAuthorizationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWebAuthorizationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWebAuthorizationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWebAuthorizationsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWebAuthorizationsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWebAuthorizationsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountResetWebAuthorizationsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveAutoDownloadSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveAutoDownloadSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveAutoDownloadSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveAutoDownloadSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveAutoSaveSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveAutoSaveSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveAutoSaveSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveAutoSaveSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtoneBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtoneBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AccountSavedRingtoneClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AccountSavedRingtoneClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AccountSavedRingtoneClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AccountSavedRingtoneClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtoneConverted ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtoneConverted ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtoneConverted ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtoneConverted ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtones ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtones ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtones ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtones ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtonesBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtonesBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AccountSavedRingtonesClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AccountSavedRingtonesClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AccountSavedRingtonesClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AccountSavedRingtonesClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtonesNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtonesNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtonesNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSavedRingtonesNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveRingtoneRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveRingtoneRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveRingtoneRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveRingtoneRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveSecureValueRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveSecureValueRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveSecureValueRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveSecureValueRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveThemeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveThemeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveThemeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveThemeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveWallPaperRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveWallPaperRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveWallPaperRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSaveWallPaperRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendChangePhoneCodeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendChangePhoneCodeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendChangePhoneCodeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendChangePhoneCodeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendConfirmPhoneCodeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendConfirmPhoneCodeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendConfirmPhoneCodeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendConfirmPhoneCodeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendVerifyEmailCodeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendVerifyEmailCodeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendVerifyEmailCodeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendVerifyEmailCodeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendVerifyPhoneCodeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendVerifyPhoneCodeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendVerifyPhoneCodeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSendVerifyPhoneCodeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSentEmailCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSentEmailCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSentEmailCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSentEmailCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetAccountTTLRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetAccountTTLRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetAccountTTLRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetAccountTTLRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetAuthorizationTTLRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetAuthorizationTTLRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetAuthorizationTTLRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetAuthorizationTTLRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetContactSignUpNotificationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetContactSignUpNotificationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetContactSignUpNotificationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetContactSignUpNotificationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetContentSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetContentSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetContentSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetContentSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetGlobalPrivacySettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetGlobalPrivacySettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetGlobalPrivacySettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetGlobalPrivacySettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetPrivacyRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetPrivacyRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetPrivacyRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountSetPrivacyRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountTakeout ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountTakeout ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountTakeout ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountTakeout ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemes ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemes ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemes ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemes ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemesBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemesBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AccountThemesClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AccountThemesClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AccountThemesClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AccountThemesClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemesNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemesNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemesNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountThemesNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountTmpPassword ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountTmpPassword ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountTmpPassword ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountTmpPassword ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountToggleUsernameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountToggleUsernameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountToggleUsernameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountToggleUsernameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUnregisterDeviceRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUnregisterDeviceRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUnregisterDeviceRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUnregisterDeviceRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateColorRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateColorRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateColorRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateColorRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateDeviceLockedRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateDeviceLockedRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateDeviceLockedRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateDeviceLockedRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateEmojiStatusRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateEmojiStatusRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateEmojiStatusRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateEmojiStatusRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateNotifySettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateNotifySettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateNotifySettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateNotifySettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdatePasswordSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdatePasswordSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdatePasswordSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdatePasswordSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateProfileRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateProfileRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateProfileRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateProfileRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateStatusRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateStatusRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateStatusRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateStatusRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateThemeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateThemeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateThemeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateThemeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateUsernameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateUsernameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateUsernameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUpdateUsernameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadRingtoneRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadRingtoneRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadRingtoneRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadRingtoneRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadThemeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadThemeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadThemeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadThemeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadWallPaperRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadWallPaperRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadWallPaperRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountUploadWallPaperRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountVerifyEmailRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountVerifyEmailRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountVerifyEmailRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountVerifyEmailRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountVerifyPhoneRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountVerifyPhoneRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountVerifyPhoneRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountVerifyPhoneRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapersBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapersBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AccountWallPapersClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AccountWallPapersClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AccountWallPapersClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AccountWallPapersClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapersNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapersNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapersNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWallPapersNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWebAuthorizations ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWebAuthorizations ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWebAuthorizations ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AccountWebAuthorizations ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AppWebViewResultURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AppWebViewResultURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AppWebViewResultURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AppWebViewResultURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBot ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBot ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBot ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBot ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotIcon ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotIcon ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotIcon ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotIcon ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotIconColor ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotIconColor ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotIconColor ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotIconColor ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBots ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBots ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBots ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBots ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsBot ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsBot ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsBot ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsBot ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AttachMenuBotsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AttachMenuBotsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AttachMenuBotsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AttachMenuBotsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuBotsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBotPM ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBotPM ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBotPM ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBotPM ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBroadcast ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBroadcast ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBroadcast ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeBroadcast ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AttachMenuPeerTypeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AttachMenuPeerTypeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AttachMenuPeerTypeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AttachMenuPeerTypeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypePM ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypePM ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypePM ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypePM ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeSameBotPM ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeSameBotPM ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeSameBotPM ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AttachMenuPeerTypeSameBotPM ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAcceptLoginTokenRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAcceptLoginTokenRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAcceptLoginTokenRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAcceptLoginTokenRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorization ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorization ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorization ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorization ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorizationBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorizationBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AuthAuthorizationClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AuthAuthorizationClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AuthAuthorizationClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AuthAuthorizationClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorizationSignUpRequired ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorizationSignUpRequired ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorizationSignUpRequired ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthAuthorizationSignUpRequired ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthBindTempAuthKeyRequest ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthBindTempAuthKeyRequest ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthBindTempAuthKeyRequest ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthBindTempAuthKeyRequest ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthCancelCodeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCancelCodeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCancelCodeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCancelCodeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCheckPasswordRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCheckPasswordRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCheckPasswordRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCheckPasswordRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCheckRecoveryPasswordRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCheckRecoveryPasswordRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCheckRecoveryPasswordRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCheckRecoveryPasswordRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AuthCodeTypeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AuthCodeTypeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AuthCodeTypeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AuthCodeTypeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeFlashCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeFlashCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeFlashCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeFlashCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeFragmentSMS ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeFragmentSMS ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeFragmentSMS ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeFragmentSMS ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeMissedCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeMissedCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeMissedCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeMissedCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeSMS ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeSMS ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeSMS ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthCodeTypeSMS ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthDropTempAuthKeysRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthDropTempAuthKeysRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthDropTempAuthKeysRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthDropTempAuthKeysRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportAuthorizationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportAuthorizationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportAuthorizationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportAuthorizationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportedAuthorization ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportedAuthorization ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportedAuthorization ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportedAuthorization ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportLoginTokenRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportLoginTokenRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportLoginTokenRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthExportLoginTokenRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportAuthorizationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportAuthorizationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportAuthorizationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportAuthorizationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportBotAuthorizationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportBotAuthorizationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportBotAuthorizationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportBotAuthorizationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportLoginTokenRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportLoginTokenRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportLoginTokenRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportLoginTokenRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportWebTokenAuthorizationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportWebTokenAuthorizationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportWebTokenAuthorizationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthImportWebTokenAuthorizationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoggedOut ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoggedOut ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoggedOut ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoggedOut ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginToken ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginToken ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginToken ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginToken ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AuthLoginTokenClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AuthLoginTokenClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AuthLoginTokenClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AuthLoginTokenClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenMigrateTo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenMigrateTo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenMigrateTo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenMigrateTo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenSuccess ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenSuccess ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenSuccess ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLoginTokenSuccess ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLogOutRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLogOutRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLogOutRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthLogOutRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Authorization ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Authorization ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Authorization ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Authorization ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthPasswordRecovery ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthPasswordRecovery ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthPasswordRecovery ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthPasswordRecovery ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRecoverPasswordRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRecoverPasswordRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRecoverPasswordRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRecoverPasswordRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRequestFirebaseSMSRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRequestFirebaseSMSRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRequestFirebaseSMSRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRequestFirebaseSMSRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRequestPasswordRecoveryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRequestPasswordRecoveryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRequestPasswordRecoveryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthRequestPasswordRecoveryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResendCodeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResendCodeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResendCodeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResendCodeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResetAuthorizationsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResetAuthorizationsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResetAuthorizationsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResetAuthorizationsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResetLoginEmailRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResetLoginEmailRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResetLoginEmailRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthResetLoginEmailRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSendCodeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSendCodeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSendCodeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSendCodeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.AuthSentCodeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AuthSentCodeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AuthSentCodeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AuthSentCodeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeSuccess ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeSuccess ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeSuccess ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeSuccess ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeApp ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeApp ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeApp ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeApp ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AuthSentCodeTypeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.AuthSentCodeTypeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.AuthSentCodeTypeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.AuthSentCodeTypeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeEmailCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeEmailCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeEmailCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeEmailCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFirebaseSMS ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFirebaseSMS ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFirebaseSMS ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFirebaseSMS ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFlashCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFlashCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFlashCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFlashCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFragmentSMS ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFragmentSMS ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFragmentSMS ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeFragmentSMS ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeMissedCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeMissedCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeMissedCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeMissedCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeSetUpEmailRequired ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeSetUpEmailRequired ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeSetUpEmailRequired ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeSetUpEmailRequired ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeSMS ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeSMS ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeSMS ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSentCodeTypeSMS ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSignInRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSignInRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSignInRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSignInRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSignUpRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSignUpRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSignUpRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AuthSignUpRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoDownloadSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoDownloadSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoDownloadSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoDownloadSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoSaveException ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoSaveException ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoSaveException ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoSaveException ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoSaveSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoSaveSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoSaveSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AutoSaveSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AvailableReaction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*AvailableReaction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*AvailableReaction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*AvailableReaction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BankCardOpenURL ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BankCardOpenURL ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BankCardOpenURL ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BankCardOpenURL ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeArctic ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeArctic ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeArctic ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeArctic ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.BaseThemeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.BaseThemeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.BaseThemeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.BaseThemeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeClassic ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeClassic ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeClassic ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeClassic ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeDay ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeDay ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeDay ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeDay ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeNight ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeNight ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeNight ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeNight ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeTinted ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeTinted ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeTinted ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BaseThemeTinted ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BoolBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BoolBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.BoolClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.BoolClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.BoolClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.BoolClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BoolFalse ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BoolFalse ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BoolFalse ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BoolFalse ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BoolTrue ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BoolTrue ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BoolTrue ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BoolTrue ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*Boost ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*Boost ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*Boost ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*Boost ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotApp ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotApp ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotApp ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotApp ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotAppBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotAppBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.BotAppClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.BotAppClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.BotAppClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.BotAppClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotAppNotModified ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotAppNotModified ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotAppNotModified ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotAppNotModified ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommand ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommand ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommand ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommand ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeChatAdmins ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeChatAdmins ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeChatAdmins ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeChatAdmins ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeChats ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeChats ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeChats ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeChats ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.BotCommandScopeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.BotCommandScopeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.BotCommandScopeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.BotCommandScopeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeDefault ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeDefault ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeDefault ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeDefault ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeer ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeer ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeer ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeer ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeerAdmins ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeerAdmins ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeerAdmins ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeerAdmins ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeerUser ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeerUser ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeerUser ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopePeerUser ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeUsers ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeUsers ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeUsers ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandScopeUsers ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotCommandVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotInfo ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInfo ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInfo ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInfo ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMediaResult ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMediaResult ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMediaResult ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMediaResult ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.BotInlineMessageClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.BotInlineMessageClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.BotInlineMessageClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.BotInlineMessageClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaAuto ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaAuto ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaAuto ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaAuto ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaContact ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaContact ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaContact ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaContact ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaGeo ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaGeo ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaGeo ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaGeo ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaInvoice ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaInvoice ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaInvoice ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaInvoice ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaVenue ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaVenue ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaVenue ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaVenue ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaWebPage ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaWebPage ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaWebPage ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageMediaWebPage ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageText ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageText ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageText ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineMessageText ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineResult ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineResult ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineResult ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineResult ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineResultBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotInlineResultBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.BotInlineResultClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.BotInlineResultClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.BotInlineResultClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.BotInlineResultClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButton ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButton ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButton ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButton ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.BotMenuButtonClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.BotMenuButtonClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.BotMenuButtonClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.BotMenuButtonClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonCommands ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonCommands ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonCommands ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonCommands ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonDefault ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonDefault ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonDefault ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotMenuButtonDefault ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotsAllowSendMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsAllowSendMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsAllowSendMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsAllowSendMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsAnswerWebhookJSONQueryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsAnswerWebhookJSONQueryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsAnswerWebhookJSONQueryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsAnswerWebhookJSONQueryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsBotInfo ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotsBotInfo ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotsBotInfo ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotsBotInfo ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*BotsCanSendMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsCanSendMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsCanSendMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsCanSendMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotCommandsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotCommandsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotCommandsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotCommandsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotInfoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotInfoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotInfoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotInfoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotMenuButtonRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotMenuButtonRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotMenuButtonRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsGetBotMenuButtonRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsInvokeWebViewCustomMethodRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsInvokeWebViewCustomMethodRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsInvokeWebViewCustomMethodRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsInvokeWebViewCustomMethodRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsReorderUsernamesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsReorderUsernamesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsReorderUsernamesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsReorderUsernamesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsResetBotCommandsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsResetBotCommandsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsResetBotCommandsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsResetBotCommandsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSendCustomRequestRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSendCustomRequestRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSendCustomRequestRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSendCustomRequestRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotBroadcastDefaultAdminRightsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotBroadcastDefaultAdminRightsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotBroadcastDefaultAdminRightsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotBroadcastDefaultAdminRightsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotCommandsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotCommandsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotCommandsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotCommandsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotGroupDefaultAdminRightsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotGroupDefaultAdminRightsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotGroupDefaultAdminRightsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotGroupDefaultAdminRightsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotInfoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotInfoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotInfoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotInfoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotMenuButtonRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotMenuButtonRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotMenuButtonRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsSetBotMenuButtonRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsToggleUsernameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsToggleUsernameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsToggleUsernameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*BotsToggleUsernameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Bytes ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*Bytes ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*Bytes ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*Bytes ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*CDNConfig ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*CDNConfig ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*CDNConfig ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*CDNConfig ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*CDNPublicKey ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*CDNPublicKey ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*CDNPublicKey ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*CDNPublicKey ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Channel ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Channel ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Channel ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Channel ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEvent ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEvent ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEvent ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEvent ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeAbout ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeAbout ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeAbout ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeAbout ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeAvailableReactions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeAvailableReactions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeAvailableReactions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeAvailableReactions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeEmojiStatus ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeEmojiStatus ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeEmojiStatus ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeEmojiStatus ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeHistoryTTL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeHistoryTTL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeHistoryTTL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeHistoryTTL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeLinkedChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeLinkedChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeLinkedChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeLinkedChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangePeerColor ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangePeerColor ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangePeerColor ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangePeerColor ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangePhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangePhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangePhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangePhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeProfilePeerColor ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeProfilePeerColor ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeProfilePeerColor ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeProfilePeerColor ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeStickerSet ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeStickerSet ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeStickerSet ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeStickerSet ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeTitle ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeTitle ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeTitle ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeTitle ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeUsername ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeUsername ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeUsername ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeUsername ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeUsernames ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeUsernames ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeUsernames ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeUsernames ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeWallpaper ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeWallpaper ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeWallpaper ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionChangeWallpaper ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChannelAdminLogEventActionClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelAdminLogEventActionClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChannelAdminLogEventActionClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelAdminLogEventActionClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionCreateTopic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionCreateTopic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionCreateTopic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionCreateTopic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDefaultBannedRights ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDefaultBannedRights ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDefaultBannedRights ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDefaultBannedRights ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDeleteMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDeleteMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDeleteMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDeleteMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDeleteTopic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDeleteTopic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDeleteTopic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDeleteTopic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDiscardGroupCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDiscardGroupCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDiscardGroupCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionDiscardGroupCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionEditMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionEditMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionEditMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionEditMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionEditTopic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionEditTopic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionEditTopic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionEditTopic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteDelete ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteDelete ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteDelete ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteDelete ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteEdit ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteEdit ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteEdit ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteEdit ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteRevoke ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteRevoke ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteRevoke ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionExportedInviteRevoke ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoin ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoin ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoin ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoin ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoinByInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoinByInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoinByInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoinByInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoinByRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoinByRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoinByRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantJoinByRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantLeave ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantLeave ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantLeave ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantLeave ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantMute ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantMute ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantMute ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantMute ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantToggleAdmin ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantToggleAdmin ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantToggleAdmin ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantToggleAdmin ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantToggleBan ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantToggleBan ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantToggleBan ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantToggleBan ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantUnmute ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantUnmute ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantUnmute ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantUnmute ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantVolume ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantVolume ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantVolume ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionParticipantVolume ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionPinTopic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionPinTopic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionPinTopic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionPinTopic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionSendMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionSendMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionSendMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionSendMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionStartGroupCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionStartGroupCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionStartGroupCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionStartGroupCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionStopPoll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionStopPoll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionStopPoll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionStopPoll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleAntiSpam ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleAntiSpam ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleAntiSpam ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleAntiSpam ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleForum ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleForum ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleForum ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleForum ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleGroupCallSetting ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleGroupCallSetting ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleGroupCallSetting ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleGroupCallSetting ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleInvites ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleInvites ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleInvites ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleInvites ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleNoForwards ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleNoForwards ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleNoForwards ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleNoForwards ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionTogglePreHistoryHidden ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionTogglePreHistoryHidden ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionTogglePreHistoryHidden ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionTogglePreHistoryHidden ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleSignatures ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleSignatures ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleSignatures ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleSignatures ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleSlowMode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleSlowMode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleSlowMode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionToggleSlowMode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionUpdatePinned ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionUpdatePinned ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionUpdatePinned ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventActionUpdatePinned ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventsFilter ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventsFilter ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventsFilter ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelAdminLogEventsFilter ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelForbidden ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelForbidden ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelForbidden ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelForbidden ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelFull ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelFull ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelFull ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelFull ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocationBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocationBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChannelLocationClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelLocationClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChannelLocationClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelLocationClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocationEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocationEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocationEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelLocationEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilter ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilter ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilter ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilter ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilterBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilterBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChannelMessagesFilterClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelMessagesFilterClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChannelMessagesFilterClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelMessagesFilterClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilterEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilterEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilterEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelMessagesFilterEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipant ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipant ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipant ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipant ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantAdmin ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantAdmin ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantAdmin ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantAdmin ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantBanned ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantBanned ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantBanned ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantBanned ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChannelParticipantClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelParticipantClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChannelParticipantClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelParticipantClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantCreator ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantCreator ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantCreator ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantCreator ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantLeft ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantLeft ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantLeft ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantLeft ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsAdmins ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsAdmins ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsAdmins ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsAdmins ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsBanned ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsBanned ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsBanned ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsBanned ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsBots ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsBots ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsBots ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsBots ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsContacts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsContacts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsContacts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsContacts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantSelf ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantSelf ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantSelf ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantSelf ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsFilterBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsFilterBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChannelParticipantsFilterClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelParticipantsFilterClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChannelParticipantsFilterClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelParticipantsFilterClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsKicked ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsKicked ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsKicked ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsKicked ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsMentions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsMentions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsMentions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsMentions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsRecent ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsRecent ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsRecent ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsRecent ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsSearch ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsSearch ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsSearch ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelParticipantsSearch ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsAdminLogResults ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsAdminLogResults ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsAdminLogResults ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsAdminLogResults ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipant ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipant ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipant ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipant ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipants ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipants ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipants ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipants ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipantsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipantsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChannelsChannelParticipantsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelsChannelParticipantsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChannelsChannelParticipantsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChannelsChannelParticipantsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipantsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipantsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipantsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsChannelParticipantsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCheckUsernameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCheckUsernameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCheckUsernameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCheckUsernameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsClickSponsoredMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsClickSponsoredMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsClickSponsoredMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsClickSponsoredMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsConvertToGigagroupRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsConvertToGigagroupRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsConvertToGigagroupRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsConvertToGigagroupRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCreateChannelRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCreateChannelRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCreateChannelRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCreateChannelRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCreateForumTopicRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCreateForumTopicRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCreateForumTopicRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsCreateForumTopicRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeactivateAllUsernamesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeactivateAllUsernamesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeactivateAllUsernamesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeactivateAllUsernamesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteChannelRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteChannelRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteChannelRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteChannelRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteParticipantHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteParticipantHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteParticipantHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteParticipantHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteTopicHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteTopicHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteTopicHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsDeleteTopicHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditAdminRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditAdminRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditAdminRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditAdminRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditBannedRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditBannedRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditBannedRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditBannedRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditCreatorRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditCreatorRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditCreatorRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditCreatorRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditForumTopicRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditForumTopicRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditForumTopicRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditForumTopicRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditLocationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditLocationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditLocationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditLocationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditPhotoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditPhotoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditPhotoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditPhotoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditTitleRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditTitleRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditTitleRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsEditTitleRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsExportMessageLinkRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsExportMessageLinkRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsExportMessageLinkRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsExportMessageLinkRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetAdminedPublicChannelsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetAdminedPublicChannelsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetAdminedPublicChannelsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetAdminedPublicChannelsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetAdminLogRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetAdminLogRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetAdminLogRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetAdminLogRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetChannelRecommendationsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetChannelRecommendationsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetChannelRecommendationsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetChannelRecommendationsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetChannelsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetChannelsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetChannelsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetChannelsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetForumTopicsByIDRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetForumTopicsByIDRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetForumTopicsByIDRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetForumTopicsByIDRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetForumTopicsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetForumTopicsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetForumTopicsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetForumTopicsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetFullChannelRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetFullChannelRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetFullChannelRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetFullChannelRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetGroupsForDiscussionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetGroupsForDiscussionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetGroupsForDiscussionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetGroupsForDiscussionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetInactiveChannelsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetInactiveChannelsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetInactiveChannelsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetInactiveChannelsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetLeftChannelsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetLeftChannelsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetLeftChannelsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetLeftChannelsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetParticipantRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetParticipantRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetParticipantRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetParticipantRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetParticipantsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetParticipantsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetParticipantsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetParticipantsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetSendAsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetSendAsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetSendAsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetSendAsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetSponsoredMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetSponsoredMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetSponsoredMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsGetSponsoredMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsInviteToChannelRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsInviteToChannelRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsInviteToChannelRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsInviteToChannelRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsJoinChannelRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsJoinChannelRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsJoinChannelRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsJoinChannelRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsLeaveChannelRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsLeaveChannelRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsLeaveChannelRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsLeaveChannelRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReadHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReadHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReadHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReadHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReadMessageContentsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReadMessageContentsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReadMessageContentsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReadMessageContentsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReorderPinnedForumTopicsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReorderPinnedForumTopicsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReorderPinnedForumTopicsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReorderPinnedForumTopicsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReorderUsernamesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReorderUsernamesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReorderUsernamesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReorderUsernamesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReportAntiSpamFalsePositiveRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReportAntiSpamFalsePositiveRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReportAntiSpamFalsePositiveRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReportAntiSpamFalsePositiveRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReportSpamRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReportSpamRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReportSpamRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsReportSpamRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSendAsPeers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSendAsPeers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSendAsPeers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSendAsPeers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSetDiscussionGroupRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSetDiscussionGroupRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSetDiscussionGroupRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSetDiscussionGroupRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSetStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSetStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSetStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsSetStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleAntiSpamRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleAntiSpamRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleAntiSpamRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleAntiSpamRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleForumRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleForumRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleForumRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleForumRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleJoinRequestRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleJoinRequestRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleJoinRequestRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleJoinRequestRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleJoinToSendRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleJoinToSendRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleJoinToSendRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleJoinToSendRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleParticipantsHiddenRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleParticipantsHiddenRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleParticipantsHiddenRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleParticipantsHiddenRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsTogglePreHistoryHiddenRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsTogglePreHistoryHiddenRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsTogglePreHistoryHiddenRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsTogglePreHistoryHiddenRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleSignaturesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleSignaturesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleSignaturesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleSignaturesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleSlowModeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleSlowModeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleSlowModeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleSlowModeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleUsernameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleUsernameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleUsernameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleUsernameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleViewForumAsMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleViewForumAsMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleViewForumAsMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsToggleViewForumAsMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateColorRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateColorRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateColorRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateColorRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateEmojiStatusRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateEmojiStatusRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateEmojiStatusRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateEmojiStatusRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdatePinnedForumTopicRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdatePinnedForumTopicRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdatePinnedForumTopicRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdatePinnedForumTopicRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateUsernameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateUsernameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateUsernameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsUpdateUsernameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsViewSponsoredMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsViewSponsoredMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsViewSponsoredMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChannelsViewSponsoredMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Chat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Chat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Chat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Chat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatAdminRights ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatAdminRights ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatAdminRights ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatAdminRights ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatAdminWithInvites ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatAdminWithInvites ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatAdminWithInvites ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatAdminWithInvites ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatBannedRights ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatBannedRights ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatBannedRights ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatBannedRights ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChatBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChatClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChatClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChatClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChatClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatForbidden ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatForbidden ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatForbidden ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatForbidden ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatFull ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatFull ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatFull ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatFull ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatFullBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChatFullBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChatFullClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChatFullClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChatFullClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChatFullClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteAlready ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteAlready ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteAlready ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteAlready ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChatInviteClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChatInviteClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChatInviteClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChatInviteClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteExported ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteExported ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteExported ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteExported ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteImporter ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteImporter ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteImporter ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInviteImporter ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvitePeek ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvitePeek ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvitePeek ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvitePeek ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvitePublicJoinRequests ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvitePublicJoinRequests ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvitePublicJoinRequests ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatInvitePublicJoinRequests ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInviteAlready ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInviteAlready ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInviteAlready ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInviteAlready ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInviteBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistInviteBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChatlistsChatlistInviteClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChatlistsChatlistInviteClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChatlistsChatlistInviteClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChatlistsChatlistInviteClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistUpdates ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistUpdates ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistUpdates ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsChatlistUpdates ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsCheckChatlistInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsCheckChatlistInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsCheckChatlistInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsCheckChatlistInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsDeleteExportedInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsDeleteExportedInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsDeleteExportedInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsDeleteExportedInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsEditExportedInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsEditExportedInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsEditExportedInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsEditExportedInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportChatlistInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportChatlistInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportChatlistInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportChatlistInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportedChatlistInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportedChatlistInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportedChatlistInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportedChatlistInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportedInvites ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportedInvites ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportedInvites ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsExportedInvites ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetChatlistUpdatesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetChatlistUpdatesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetChatlistUpdatesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetChatlistUpdatesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetExportedInvitesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetExportedInvitesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetExportedInvitesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetExportedInvitesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetLeaveChatlistSuggestionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetLeaveChatlistSuggestionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetLeaveChatlistSuggestionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsGetLeaveChatlistSuggestionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsHideChatlistUpdatesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsHideChatlistUpdatesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsHideChatlistUpdatesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsHideChatlistUpdatesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsJoinChatlistInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsJoinChatlistInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsJoinChatlistInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsJoinChatlistInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsJoinChatlistUpdatesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsJoinChatlistUpdatesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsJoinChatlistUpdatesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsJoinChatlistUpdatesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsLeaveChatlistRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsLeaveChatlistRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsLeaveChatlistRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatlistsLeaveChatlistRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatOnlines ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatOnlines ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatOnlines ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatOnlines ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipant ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipant ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipant ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipant ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantAdmin ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantAdmin ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantAdmin ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantAdmin ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChatParticipantClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChatParticipantClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChatParticipantClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChatParticipantClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantCreator ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantCreator ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantCreator ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantCreator ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipants ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipants ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipants ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipants ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChatParticipantsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChatParticipantsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChatParticipantsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChatParticipantsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantsForbidden ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantsForbidden ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantsForbidden ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatParticipantsForbidden ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhotoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhotoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChatPhotoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChatPhotoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChatPhotoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChatPhotoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhotoEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhotoEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhotoEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatPhotoEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsAll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsAll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsAll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsAll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ChatReactionsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ChatReactionsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ChatReactionsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ChatReactionsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsNone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsNone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsNone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsNone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsSome ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsSome ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsSome ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ChatReactionsSome ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*CodeSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*CodeSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*CodeSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*CodeSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Config ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Config ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Config ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Config ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Contact ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Contact ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Contact ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Contact ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsAcceptContactRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsAcceptContactRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsAcceptContactRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsAcceptContactRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsAddContactRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsAddContactRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsAddContactRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsAddContactRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlocked ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlocked ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlocked ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlocked ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockedBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockedBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ContactsBlockedClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ContactsBlockedClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ContactsBlockedClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ContactsBlockedClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockedSlice ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockedSlice ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockedSlice ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockedSlice ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockFromRepliesRequest ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockFromRepliesRequest ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockFromRepliesRequest ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockFromRepliesRequest ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockRequest ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockRequest ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockRequest ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsBlockRequest ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContacts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContacts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContacts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContacts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContactsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContactsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ContactsContactsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ContactsContactsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ContactsContactsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ContactsContactsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContactsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContactsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContactsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsContactsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsDeleteByPhonesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsDeleteByPhonesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsDeleteByPhonesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsDeleteByPhonesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsDeleteContactsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsDeleteContactsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsDeleteContactsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsDeleteContactsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsEditCloseFriendsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsEditCloseFriendsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsEditCloseFriendsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsEditCloseFriendsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsExportContactTokenRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsExportContactTokenRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsExportContactTokenRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsExportContactTokenRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsFound ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsFound ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsFound ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsFound ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetBlockedRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetBlockedRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetBlockedRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetBlockedRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetContactIDsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetContactIDsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetContactIDsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetContactIDsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetContactsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetContactsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetContactsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetContactsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetLocatedRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetLocatedRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetLocatedRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetLocatedRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetSavedRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetSavedRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetSavedRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetSavedRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetStatusesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetStatusesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetStatusesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetStatusesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetTopPeersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetTopPeersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetTopPeersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsGetTopPeersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportContactsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportContactsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportContactsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportContactsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportContactTokenRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportContactTokenRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportContactTokenRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportContactTokenRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportedContacts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportedContacts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportedContacts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsImportedContacts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResetSavedRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResetSavedRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResetSavedRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResetSavedRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResetTopPeerRatingRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResetTopPeerRatingRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResetTopPeerRatingRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResetTopPeerRatingRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolvedPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolvedPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolvedPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolvedPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolvePhoneRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolvePhoneRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolvePhoneRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolvePhoneRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolveUsernameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolveUsernameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolveUsernameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsResolveUsernameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsSearchRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsSearchRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsSearchRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsSearchRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsSetBlockedRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsSetBlockedRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsSetBlockedRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsSetBlockedRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactStatus ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactStatus ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactStatus ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactStatus ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactStatusVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactStatusVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactStatusVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactStatusVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsToggleTopPeersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsToggleTopPeersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsToggleTopPeersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsToggleTopPeersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ContactsTopPeersClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ContactsTopPeersClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ContactsTopPeersClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ContactsTopPeersClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersDisabled ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersDisabled ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersDisabled ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersDisabled ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsTopPeersNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsUnblockRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsUnblockRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsUnblockRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ContactsUnblockRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DataJSON ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DataJSON ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DataJSON ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DataJSON ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DCOption ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DCOption ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DCOption ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DCOption ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DefaultHistoryTTL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DefaultHistoryTTL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DefaultHistoryTTL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DefaultHistoryTTL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Dialog ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Dialog ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Dialog ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Dialog ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*DialogBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.DialogClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.DialogClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.DialogClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.DialogClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilter ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilter ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilter ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilter ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterChatlist ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterChatlist ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterChatlist ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterChatlist ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.DialogFilterClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.DialogFilterClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.DialogFilterClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.DialogFilterClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterClassVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterClassVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterClassVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterClassVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterDefault ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterDefault ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterDefault ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterDefault ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterSuggested ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterSuggested ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterSuggested ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterSuggested ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterSuggestedVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterSuggestedVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterSuggestedVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFilterSuggestedVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFolder ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFolder ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFolder ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogFolder ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.DialogPeerClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.DialogPeerClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.DialogPeerClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.DialogPeerClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerClassVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerClassVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerClassVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerClassVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerFolder ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerFolder ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerFolder ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DialogPeerFolder ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Document ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Document ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Document ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Document ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeAnimated ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeAnimated ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeAnimated ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeAnimated ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeAudio ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeAudio ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeAudio ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeAudio ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.DocumentAttributeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.DocumentAttributeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.DocumentAttributeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.DocumentAttributeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeCustomEmoji ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeCustomEmoji ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeCustomEmoji ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeCustomEmoji ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeFilename ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeFilename ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeFilename ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeFilename ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeHasStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeHasStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeHasStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeHasStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeImageSize ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeImageSize ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeImageSize ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeImageSize ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeSticker ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeSticker ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeSticker ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeSticker ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeVideo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeVideo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeVideo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentAttributeVideo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*DocumentBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.DocumentClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.DocumentClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.DocumentClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.DocumentClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentClassVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentClassVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentClassVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentClassVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DocumentEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Double ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Double ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Double ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Double ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessageBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessageBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.DraftMessageClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.DraftMessageClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.DraftMessageClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.DraftMessageClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessageEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessageEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessageEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*DraftMessageEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationApple ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationApple ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationApple ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationApple ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.EmailVerificationClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.EmailVerificationClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.EmailVerificationClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.EmailVerificationClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationGoogle ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationGoogle ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationGoogle ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerificationGoogle ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.EmailVerifyPurposeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.EmailVerifyPurposeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.EmailVerifyPurposeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.EmailVerifyPurposeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeLoginChange ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeLoginChange ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeLoginChange ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeLoginChange ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeLoginSetup ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeLoginSetup ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeLoginSetup ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposeLoginSetup ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposePassport ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposePassport ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposePassport ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmailVerifyPurposePassport ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiGroup ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiGroup ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiGroup ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiGroup ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeyword ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeyword ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeyword ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeyword ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.EmojiKeywordClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.EmojiKeywordClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.EmojiKeywordClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.EmojiKeywordClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordDeleted ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordDeleted ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordDeleted ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordDeleted ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordsDifference ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordsDifference ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordsDifference ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiKeywordsDifference ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiLanguage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiLanguage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiLanguage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiLanguage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiLanguageVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiLanguageVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiLanguageVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiLanguageVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiList ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiList ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiList ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiList ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiListBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*EmojiListBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.EmojiListClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.EmojiListClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.EmojiListClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.EmojiListClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiListNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiListNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiListNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiListNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatus ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatus ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatus ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatus ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.EmojiStatusClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.EmojiStatusClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.EmojiStatusClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.EmojiStatusClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusUntil ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusUntil ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusUntil ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiStatusUntil ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EmojiURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.EncryptedChatClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.EncryptedChatClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.EncryptedChatClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.EncryptedChatClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatDiscarded ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatDiscarded ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatDiscarded ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatDiscarded ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatRequested ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatRequested ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatRequested ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatRequested ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatWaiting ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatWaiting ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatWaiting ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedChatWaiting ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFileBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFileBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.EncryptedFileClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.EncryptedFileClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.EncryptedFileClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.EncryptedFileClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFileEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFileEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFileEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedFileEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessageBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessageBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.EncryptedMessageClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.EncryptedMessageClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.EncryptedMessageClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.EncryptedMessageClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessageService ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessageService ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessageService ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*EncryptedMessageService ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Error ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Error ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Error ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Error ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedChatInviteBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ExportedChatInviteBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ExportedChatInviteClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ExportedChatInviteClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ExportedChatInviteClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ExportedChatInviteClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedChatlistInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedChatlistInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedChatlistInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedChatlistInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedContactToken ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedContactToken ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedContactToken ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedContactToken ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedMessageLink ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedMessageLink ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedMessageLink ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedMessageLink ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedStoryLink ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedStoryLink ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedStoryLink ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ExportedStoryLink ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*FileHash ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*FileHash ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*FileHash ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*FileHash ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*FileHashVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*FileHashVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*FileHashVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*FileHashVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Folder ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Folder ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Folder ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Folder ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*FolderPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*FolderPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*FolderPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*FolderPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*FoldersEditPeerFoldersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*FoldersEditPeerFoldersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*FoldersEditPeerFoldersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*FoldersEditPeerFoldersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopicBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopicBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ForumTopicClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ForumTopicClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ForumTopicClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ForumTopicClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopicDeleted ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopicDeleted ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopicDeleted ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ForumTopicDeleted ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.FullChat .Decode (b *Buffer ) error
func github.com/gotd/td/tg.FullChat .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.FullChat .Encode (b *Buffer ) error
func github.com/gotd/td/tg.FullChat .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Game ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Game ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Game ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Game ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GeoPoint ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*GeoPoint ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GeoPoint ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*GeoPoint ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GeoPointBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*GeoPointBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.GeoPointClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.GeoPointClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.GeoPointClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.GeoPointClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GeoPointEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*GeoPointEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GeoPointEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*GeoPointEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GlobalPrivacySettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*GlobalPrivacySettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GlobalPrivacySettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*GlobalPrivacySettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.GroupCallClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.GroupCallClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.GroupCallClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.GroupCallClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallDiscarded ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallDiscarded ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallDiscarded ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallDiscarded ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipant ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipant ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipant ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipant ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipantVideo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipantVideo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipantVideo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipantVideo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipantVideoSourceGroup ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipantVideoSourceGroup ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipantVideoSourceGroup ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallParticipantVideoSourceGroup ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallStreamChannel ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallStreamChannel ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallStreamChannel ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*GroupCallStreamChannel ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAcceptTermsOfServiceRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAcceptTermsOfServiceRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAcceptTermsOfServiceRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAcceptTermsOfServiceRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfig ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfig ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfig ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfig ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfigBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfigBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpAppConfigClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpAppConfigClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpAppConfigClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpAppConfigClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfigNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfigNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfigNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppConfigNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppUpdate ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppUpdate ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppUpdate ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppUpdate ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppUpdateBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpAppUpdateBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpAppUpdateClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpAppUpdateClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpAppUpdateClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpAppUpdateClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpConfigSimple ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpConfigSimple ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpConfigSimple ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpConfigSimple ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesList ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesList ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesList ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesList ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesListBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesListBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpCountriesListClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpCountriesListClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpCountriesListClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpCountriesListClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesListNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesListNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesListNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountriesListNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountry ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountry ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountry ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountry ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountryCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountryCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountryCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpCountryCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpDeepLinkInfoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpDeepLinkInfoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpDeepLinkInfoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpDeepLinkInfoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfoEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfoEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfoEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDeepLinkInfoEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDismissSuggestionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDismissSuggestionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDismissSuggestionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpDismissSuggestionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpEditUserInfoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpEditUserInfoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpEditUserInfoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpEditUserInfoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetAppConfigRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetAppConfigRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetAppConfigRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetAppConfigRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetAppUpdateRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetAppUpdateRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetAppUpdateRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetAppUpdateRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetCDNConfigRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetCDNConfigRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetCDNConfigRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetCDNConfigRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetConfigRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetConfigRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetConfigRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetConfigRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetCountriesListRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetCountriesListRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetCountriesListRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetCountriesListRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetDeepLinkInfoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetDeepLinkInfoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetDeepLinkInfoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetDeepLinkInfoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetInviteTextRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetInviteTextRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetInviteTextRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetInviteTextRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetNearestDCRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetNearestDCRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetNearestDCRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetNearestDCRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPassportConfigRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPassportConfigRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPassportConfigRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPassportConfigRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPeerColorsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPeerColorsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPeerColorsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPeerColorsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPeerProfileColorsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPeerProfileColorsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPeerProfileColorsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPeerProfileColorsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPremiumPromoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPremiumPromoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPremiumPromoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPremiumPromoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPromoDataRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPromoDataRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPromoDataRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetPromoDataRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetRecentMeURLsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetRecentMeURLsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetRecentMeURLsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetRecentMeURLsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetSupportNameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetSupportNameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetSupportNameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetSupportNameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetSupportRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetSupportRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetSupportRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetSupportRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetTermsOfServiceUpdateRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetTermsOfServiceUpdateRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetTermsOfServiceUpdateRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetTermsOfServiceUpdateRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetUserInfoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetUserInfoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetUserInfoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpGetUserInfoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpHidePromoDataRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpHidePromoDataRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpHidePromoDataRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpHidePromoDataRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpInviteText ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpInviteText ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpInviteText ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpInviteText ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpNoAppUpdate ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpNoAppUpdate ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpNoAppUpdate ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpNoAppUpdate ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfig ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfig ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfig ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfig ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfigBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfigBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpPassportConfigClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpPassportConfigClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpPassportConfigClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpPassportConfigClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfigNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfigNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfigNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPassportConfigNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorOption ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorOption ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorOption ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorOption ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorProfileSet ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorProfileSet ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorProfileSet ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorProfileSet ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColors ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColors ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColors ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColors ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpPeerColorsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpPeerColorsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpPeerColorsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpPeerColorsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorSet ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorSet ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorSet ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorSet ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorSetBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorSetBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpPeerColorSetClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpPeerColorSetClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpPeerColorSetClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpPeerColorSetClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPeerColorsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPremiumPromo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPremiumPromo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPremiumPromo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPremiumPromo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoData ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoData ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoData ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoData ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoDataBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoDataBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpPromoDataClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpPromoDataClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpPromoDataClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpPromoDataClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoDataEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoDataEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoDataEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpPromoDataEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpRecentMeURLs ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpRecentMeURLs ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpRecentMeURLs ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpRecentMeURLs ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSaveAppLogRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSaveAppLogRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSaveAppLogRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSaveAppLogRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSetBotUpdatesStatusRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSetBotUpdatesStatusRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSetBotUpdatesStatusRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSetBotUpdatesStatusRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSupport ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSupport ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSupport ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSupport ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSupportName ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSupportName ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSupportName ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpSupportName ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfService ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfService ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfService ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfService ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdate ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdate ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdate ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdate ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdateBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdateBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpTermsOfServiceUpdateClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpTermsOfServiceUpdateClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpTermsOfServiceUpdateClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpTermsOfServiceUpdateClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdateEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdateEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdateEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpTermsOfServiceUpdateEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.HelpUserInfoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.HelpUserInfoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.HelpUserInfoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.HelpUserInfoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfoEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfoEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfoEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HelpUserInfoEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HighScore ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*HighScore ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*HighScore ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*HighScore ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ImportedContact ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ImportedContact ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ImportedContact ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ImportedContact ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InitConnectionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InitConnectionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InitConnectionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InitConnectionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineBotSwitchPM ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineBotSwitchPM ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineBotSwitchPM ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineBotSwitchPM ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineBotWebView ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineBotWebView ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineBotWebView ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineBotWebView ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBotPM ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBotPM ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBotPM ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBotPM ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBroadcast ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBroadcast ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBroadcast ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeBroadcast ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InlineQueryPeerTypeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InlineQueryPeerTypeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InlineQueryPeerTypeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InlineQueryPeerTypeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeMegagroup ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeMegagroup ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeMegagroup ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeMegagroup ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypePM ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypePM ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypePM ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypePM ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeSameBotPM ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeSameBotPM ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeSameBotPM ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InlineQueryPeerTypeSameBotPM ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputAppEvent ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputAppEvent ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputAppEvent ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputAppEvent ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputBotAppClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputBotAppClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputBotAppClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputBotAppClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppID ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppID ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppID ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppID ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppShortName ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppShortName ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppShortName ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotAppShortName ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineMessageClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineMessageClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineMessageClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineMessageClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageGame ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageGame ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageGame ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageGame ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageID ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageID ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageID ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageID ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageID64 ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageID64 ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageID64 ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageID64 ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageIDBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageIDBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineMessageIDClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineMessageIDClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineMessageIDClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineMessageIDClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaAuto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaAuto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaAuto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaAuto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaContact ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaContact ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaContact ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaContact ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaGeo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaGeo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaGeo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaGeo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaInvoice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaInvoice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaInvoice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaInvoice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaVenue ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaVenue ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaVenue ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaVenue ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaWebPage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaWebPage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaWebPage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageMediaWebPage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageText ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageText ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageText ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineMessageText ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResult ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResult ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResult ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResult ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineResultClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineResultClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineResultClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputBotInlineResultClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultDocument ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultDocument ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultDocument ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultDocument ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultGame ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultGame ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultGame ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultGame ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputBotInlineResultPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannel ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannel ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannel ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannel ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputChannelClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputChannelClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputChannelClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputChannelClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelFromMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelFromMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelFromMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChannelFromMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatlistDialogFilter ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatlistDialogFilter ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatlistDialogFilter ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatlistDialogFilter ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhotoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhotoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputChatPhotoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputChatPhotoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputChatPhotoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputChatPhotoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhotoEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhotoEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhotoEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatPhotoEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatUploadedPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatUploadedPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatUploadedPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputChatUploadedPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordSRP ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordSRP ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordSRP ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordSRP ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordSRPBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputCheckPasswordSRPBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputCheckPasswordSRPClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputCheckPasswordSRPClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputCheckPasswordSRPClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputCheckPasswordSRPClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputClientProxy ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputClientProxy ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputClientProxy ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputClientProxy ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeerBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeerBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputDialogPeerClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputDialogPeerClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputDialogPeerClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputDialogPeerClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeerFolder ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeerFolder ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeerFolder ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDialogPeerFolder ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocument ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocument ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocument ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocument ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputDocumentClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputDocumentClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputDocumentClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputDocumentClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentFileLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentFileLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentFileLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputDocumentFileLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileBigUploaded ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileBigUploaded ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileBigUploaded ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileBigUploaded ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputEncryptedFileClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputEncryptedFileClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputEncryptedFileClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputEncryptedFileClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileUploaded ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileUploaded ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileUploaded ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputEncryptedFileUploaded ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileBig ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileBig ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileBig ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileBig ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputFileBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputFileClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputFileClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputFileClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputFileClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFileLocationBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputFileLocationBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputFileLocationClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputFileLocationClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputFileLocationClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputFileLocationClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFolderPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFolderPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFolderPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputFolderPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGameBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputGameBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputGameClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputGameClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputGameClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputGameClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGameID ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGameID ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGameID ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGameID ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGameShortName ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGameShortName ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGameShortName ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGameShortName ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPoint ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPoint ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPoint ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPoint ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPointBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPointBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputGeoPointClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputGeoPointClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputGeoPointClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputGeoPointClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPointEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPointEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPointEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGeoPointEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGroupCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGroupCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGroupCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGroupCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGroupCallStream ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGroupCallStream ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGroupCallStream ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputGroupCallStream ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputInvoiceClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputInvoiceClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputInvoiceClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputInvoiceClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoicePremiumGiftCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoicePremiumGiftCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoicePremiumGiftCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoicePremiumGiftCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceSlug ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceSlug ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceSlug ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputInvoiceSlug ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputKeyboardButtonURLAuth ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputKeyboardButtonURLAuth ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputKeyboardButtonURLAuth ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputKeyboardButtonURLAuth ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputKeyboardButtonUserProfile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputKeyboardButtonUserProfile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputKeyboardButtonUserProfile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputKeyboardButtonUserProfile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaAreaChannelPost ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaAreaChannelPost ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaAreaChannelPost ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaAreaChannelPost ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaAreaVenue ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaAreaVenue ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaAreaVenue ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaAreaVenue ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputMediaClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputMediaClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputMediaClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputMediaClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaContact ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaContact ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaContact ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaContact ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDocument ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDocument ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDocument ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDocument ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDocumentExternal ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDocumentExternal ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDocumentExternal ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaDocumentExternal ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGame ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGame ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGame ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGame ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGeoLive ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGeoLive ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGeoLive ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGeoLive ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGeoPoint ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGeoPoint ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGeoPoint ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaGeoPoint ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaInvoice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaInvoice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaInvoice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaInvoice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPhotoExternal ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPhotoExternal ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPhotoExternal ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPhotoExternal ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPoll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPoll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPoll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaPoll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaStory ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaStory ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaStory ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaStory ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaUploadedDocument ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaUploadedDocument ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaUploadedDocument ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaUploadedDocument ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaUploadedPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaUploadedPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaUploadedPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaUploadedPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaVenue ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaVenue ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaVenue ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaVenue ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaWebPage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaWebPage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaWebPage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMediaWebPage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageCallbackQuery ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageCallbackQuery ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageCallbackQuery ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageCallbackQuery ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputMessageClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputMessageClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputMessageClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputMessageClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageEntityMentionName ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageEntityMentionName ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageEntityMentionName ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageEntityMentionName ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageID ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageID ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageID ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageID ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagePinned ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagePinned ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagePinned ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagePinned ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageReplyTo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageReplyTo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageReplyTo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessageReplyTo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterChatPhotos ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterChatPhotos ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterChatPhotos ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterChatPhotos ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterContacts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterContacts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterContacts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterContacts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterDocument ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterDocument ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterDocument ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterDocument ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterGeo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterGeo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterGeo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterGeo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterGif ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterGif ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterGif ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterGif ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterMusic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterMusic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterMusic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterMusic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterMyMentions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterMyMentions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterMyMentions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterMyMentions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhoneCalls ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhoneCalls ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhoneCalls ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhoneCalls ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhotos ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhotos ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhotos ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhotos ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhotoVideo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhotoVideo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhotoVideo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPhotoVideo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPinned ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPinned ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPinned ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterPinned ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterRoundVideo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterRoundVideo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterRoundVideo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterRoundVideo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterRoundVoice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterRoundVoice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterRoundVoice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterRoundVoice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterVideo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterVideo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterVideo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterVideo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterVoice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterVoice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterVoice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputMessagesFilterVoice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyBroadcasts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyBroadcasts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyBroadcasts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyBroadcasts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyChats ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyChats ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyChats ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyChats ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyForumTopic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyForumTopic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyForumTopic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyForumTopic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyPeerBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyPeerBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputNotifyPeerClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputNotifyPeerClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputNotifyPeerClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputNotifyPeerClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyUsers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyUsers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyUsers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputNotifyUsers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentials ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentials ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentials ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentials ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsApplePay ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsApplePay ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsApplePay ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsApplePay ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputPaymentCredentialsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputPaymentCredentialsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputPaymentCredentialsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputPaymentCredentialsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsGooglePay ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsGooglePay ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsGooglePay ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsGooglePay ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsSaved ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsSaved ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsSaved ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPaymentCredentialsSaved ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChannel ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChannel ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChannel ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChannel ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChannelFromMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChannelFromMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChannelFromMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChannelFromMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputPeerClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputPeerClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputPeerClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputPeerClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerNotifySettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerNotifySettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerNotifySettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerNotifySettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerPhotoFileLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerPhotoFileLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerPhotoFileLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerPhotoFileLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerPhotoFileLocationLegacy ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerPhotoFileLocationLegacy ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerPhotoFileLocationLegacy ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerPhotoFileLocationLegacy ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerSelf ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerSelf ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerSelf ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerSelf ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerUser ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerUser ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerUser ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerUser ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerUserFromMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerUserFromMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerUserFromMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPeerUserFromMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoneCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoneCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoneCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoneCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoneContact ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoneContact ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoneContact ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoneContact ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputPhotoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputPhotoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputPhotoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputPhotoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoFileLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoFileLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoFileLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoFileLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoLegacyFileLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoLegacyFileLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoLegacyFileLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPhotoLegacyFileLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyAbout ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyAbout ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyAbout ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyAbout ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyAddedByPhone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyAddedByPhone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyAddedByPhone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyAddedByPhone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyChatInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyChatInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyChatInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyChatInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputPrivacyKeyClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputPrivacyKeyClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputPrivacyKeyClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputPrivacyKeyClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyForwards ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyForwards ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyForwards ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyForwards ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneNumber ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneNumber ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneNumber ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneNumber ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneP2P ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneP2P ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneP2P ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyPhoneP2P ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyProfilePhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyProfilePhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyProfilePhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyProfilePhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyStatusTimestamp ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyStatusTimestamp ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyStatusTimestamp ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyStatusTimestamp ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyVoiceMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyVoiceMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyVoiceMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyKeyVoiceMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyRuleBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyRuleBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputPrivacyRuleClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputPrivacyRuleClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputPrivacyRuleClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputPrivacyRuleClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowAll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowAll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowAll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowAll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowChatParticipants ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowChatParticipants ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowChatParticipants ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowChatParticipants ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowCloseFriends ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowCloseFriends ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowCloseFriends ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowCloseFriends ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowContacts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowContacts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowContacts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowContacts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowUsers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowUsers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowUsers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueAllowUsers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowAll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowAll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowAll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowAll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowChatParticipants ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowChatParticipants ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowChatParticipants ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowChatParticipants ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowContacts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowContacts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowContacts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowContacts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowUsers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowUsers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowUsers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputPrivacyValueDisallowUsers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputReplyToClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputReplyToClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputReplyToClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputReplyToClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToStory ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToStory ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToStory ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReplyToStory ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonChildAbuse ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonChildAbuse ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonChildAbuse ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonChildAbuse ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonCopyright ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonCopyright ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonCopyright ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonCopyright ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonFake ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonFake ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonFake ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonFake ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonGeoIrrelevant ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonGeoIrrelevant ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonGeoIrrelevant ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonGeoIrrelevant ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonIllegalDrugs ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonIllegalDrugs ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonIllegalDrugs ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonIllegalDrugs ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonOther ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonOther ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonOther ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonOther ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonPersonalDetails ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonPersonalDetails ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonPersonalDetails ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonPersonalDetails ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonPornography ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonPornography ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonPornography ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonPornography ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonSpam ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonSpam ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonSpam ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonSpam ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonViolence ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonViolence ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonViolence ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputReportReasonViolence ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputSecureFileClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputSecureFileClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputSecureFileClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputSecureFileClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileUploaded ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileUploaded ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileUploaded ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureFileUploaded ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureValue ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureValue ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureValue ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSecureValue ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSingleMedia ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSingleMedia ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSingleMedia ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputSingleMedia ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputStickeredMediaClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputStickeredMediaClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputStickeredMediaClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputStickeredMediaClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaDocument ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaDocument ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaDocument ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaDocument ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickeredMediaPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetAnimatedEmoji ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetAnimatedEmoji ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetAnimatedEmoji ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetAnimatedEmoji ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetAnimatedEmojiAnimations ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetAnimatedEmojiAnimations ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetAnimatedEmojiAnimations ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetAnimatedEmojiAnimations ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputStickerSetClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputStickerSetClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputStickerSetClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputStickerSetClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetDice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetDice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetDice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetDice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiChannelDefaultStatuses ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiChannelDefaultStatuses ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiChannelDefaultStatuses ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiChannelDefaultStatuses ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiDefaultStatuses ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiDefaultStatuses ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiDefaultStatuses ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiDefaultStatuses ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiDefaultTopicIcons ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiDefaultTopicIcons ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiDefaultTopicIcons ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiDefaultTopicIcons ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiGenericAnimations ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiGenericAnimations ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiGenericAnimations ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmojiGenericAnimations ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetID ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetID ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetID ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetID ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetItem ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetItem ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetItem ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetItem ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetPremiumGifts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetPremiumGifts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetPremiumGifts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetPremiumGifts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetShortName ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetShortName ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetShortName ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetShortName ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetThumb ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetThumb ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetThumb ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetThumb ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetThumbLegacy ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetThumbLegacy ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetThumbLegacy ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStickerSetThumbLegacy ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentGiftPremium ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentGiftPremium ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentGiftPremium ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentGiftPremium ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumGiftCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumGiftCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumGiftCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumGiftCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumGiveaway ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumGiveaway ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumGiveaway ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumGiveaway ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumSubscription ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumSubscription ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumSubscription ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPremiumSubscription ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPurposeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputStorePaymentPurposeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputStorePaymentPurposeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputStorePaymentPurposeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputStorePaymentPurposeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputStorePaymentPurposeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputTakeoutFileLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputTakeoutFileLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputTakeoutFileLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputTakeoutFileLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputTheme ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputTheme ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputTheme ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputTheme ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputThemeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputThemeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputThemeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputThemeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeSlug ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeSlug ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeSlug ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputThemeSlug ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUser ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUser ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUser ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUser ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputUserBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputUserClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputUserClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputUserClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputUserClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserFromMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserFromMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserFromMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserFromMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserSelf ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserSelf ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserSelf ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputUserSelf ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaper ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaper ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaper ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaper ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputWallPaperClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputWallPaperClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputWallPaperClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputWallPaperClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperNoFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperNoFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperNoFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperNoFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperSlug ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperSlug ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperSlug ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWallPaperSlug ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebDocument ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebDocument ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebDocument ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebDocument ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileAudioAlbumThumbLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileAudioAlbumThumbLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileAudioAlbumThumbLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileAudioAlbumThumbLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileGeoPointLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileGeoPointLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileGeoPointLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileGeoPointLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileLocationBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*InputWebFileLocationBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.InputWebFileLocationClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.InputWebFileLocationClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.InputWebFileLocationClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.InputWebFileLocationClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Int ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Int ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Int ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Int ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*IntVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*IntVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*IntVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*IntVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Invoice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Invoice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Invoice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Invoice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeAfterMsgRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeAfterMsgRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeAfterMsgRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeAfterMsgRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeAfterMsgsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeAfterMsgsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeAfterMsgsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeAfterMsgsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithLayerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithLayerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithLayerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithLayerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithMessagesRangeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithMessagesRangeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithMessagesRangeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithMessagesRangeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithoutUpdatesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithoutUpdatesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithoutUpdatesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithoutUpdatesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithTakeoutRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithTakeoutRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithTakeoutRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*InvokeWithTakeoutRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*IPPort ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*IPPort ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*IPPort ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*IPPort ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*IPPortBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*IPPortBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.IPPortClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.IPPortClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.IPPortClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.IPPortClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*IPPortSecret ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*IPPortSecret ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*IPPortSecret ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*IPPortSecret ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONArray ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONArray ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONArray ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONArray ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONBool ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONBool ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONBool ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONBool ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONNull ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONNull ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONNull ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONNull ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONNumber ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONNumber ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONNumber ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONNumber ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONObject ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONObject ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONObject ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONObject ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONObjectValue ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONObjectValue ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONObjectValue ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONObjectValue ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONString ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONString ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONString ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONString ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*JSONValueBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*JSONValueBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.JSONValueClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.JSONValueClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.JSONValueClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.JSONValueClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButton ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButton ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButton ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButton ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonBuy ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonBuy ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonBuy ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonBuy ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonCallback ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonCallback ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonCallback ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonCallback ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.KeyboardButtonClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.KeyboardButtonClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.KeyboardButtonClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.KeyboardButtonClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonGame ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonGame ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonGame ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonGame ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestGeoLocation ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestGeoLocation ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestGeoLocation ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestGeoLocation ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPhone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPhone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPhone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPhone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPoll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPoll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPoll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRequestPoll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRow ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRow ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRow ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonRow ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonSimpleWebView ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonSimpleWebView ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonSimpleWebView ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonSimpleWebView ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonSwitchInline ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonSwitchInline ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonSwitchInline ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonSwitchInline ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonURLAuth ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonURLAuth ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonURLAuth ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonURLAuth ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonUserProfile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonUserProfile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonUserProfile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonUserProfile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonWebView ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonWebView ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonWebView ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*KeyboardButtonWebView ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LabeledPrice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LabeledPrice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LabeledPrice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LabeledPrice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackDifference ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackDifference ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackDifference ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackDifference ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetDifferenceRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetDifferenceRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetDifferenceRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetDifferenceRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLangPackRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLangPackRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLangPackRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLangPackRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLanguageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLanguageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLanguageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLanguageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLanguagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLanguagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLanguagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetLanguagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetStringsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetStringsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetStringsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangpackGetStringsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackLanguage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackLanguage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackLanguage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackLanguage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackLanguageVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackLanguageVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackLanguageVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackLanguageVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackString ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackString ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackString ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackString ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.LangPackStringClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.LangPackStringClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.LangPackStringClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.LangPackStringClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringClassVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringClassVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringClassVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringClassVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringDeleted ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringDeleted ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringDeleted ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringDeleted ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringPluralized ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringPluralized ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringPluralized ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LangPackStringPluralized ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Long ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Long ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Long ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Long ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LongVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*LongVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*LongVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*LongVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MaskCoords ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MaskCoords ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MaskCoords ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MaskCoords ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaChannelPost ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaChannelPost ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaChannelPost ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaChannelPost ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MediaAreaClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MediaAreaClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MediaAreaClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MediaAreaClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaCoordinates ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaCoordinates ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaCoordinates ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaCoordinates ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaGeoPoint ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaGeoPoint ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaGeoPoint ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaGeoPoint ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaSuggestedReaction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaSuggestedReaction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaSuggestedReaction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaSuggestedReaction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaVenue ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaVenue ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaVenue ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MediaAreaVenue ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Message ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Message ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Message ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Message ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionBotAllowed ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionBotAllowed ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionBotAllowed ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionBotAllowed ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChannelCreate ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChannelCreate ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChannelCreate ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChannelCreate ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChannelMigrateFrom ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChannelMigrateFrom ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChannelMigrateFrom ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChannelMigrateFrom ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatAddUser ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatAddUser ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatAddUser ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatAddUser ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatCreate ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatCreate ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatCreate ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatCreate ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatDeletePhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatDeletePhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatDeletePhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatDeletePhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatDeleteUser ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatDeleteUser ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatDeleteUser ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatDeleteUser ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatEditPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatEditPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatEditPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatEditPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatEditTitle ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatEditTitle ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatEditTitle ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatEditTitle ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatJoinedByLink ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatJoinedByLink ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatJoinedByLink ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatJoinedByLink ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatJoinedByRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatJoinedByRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatJoinedByRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatJoinedByRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatMigrateTo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatMigrateTo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatMigrateTo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionChatMigrateTo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessageActionClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessageActionClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessageActionClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessageActionClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionContactSignUp ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionContactSignUp ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionContactSignUp ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionContactSignUp ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionCustomAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionCustomAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionCustomAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionCustomAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGameScore ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGameScore ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGameScore ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGameScore ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGeoProximityReached ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGeoProximityReached ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGeoProximityReached ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGeoProximityReached ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiftCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiftCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiftCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiftCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiftPremium ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiftPremium ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiftPremium ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiftPremium ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiveawayLaunch ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiveawayLaunch ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiveawayLaunch ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiveawayLaunch ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiveawayResults ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiveawayResults ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiveawayResults ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGiveawayResults ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGroupCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGroupCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGroupCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGroupCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGroupCallScheduled ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGroupCallScheduled ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGroupCallScheduled ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionGroupCallScheduled ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionHistoryClear ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionHistoryClear ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionHistoryClear ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionHistoryClear ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionInviteToGroupCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionInviteToGroupCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionInviteToGroupCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionInviteToGroupCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPaymentSent ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPaymentSent ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPaymentSent ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPaymentSent ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPaymentSentMe ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPaymentSentMe ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPaymentSentMe ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPaymentSentMe ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPhoneCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPhoneCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPhoneCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPhoneCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPinMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPinMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPinMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionPinMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionRequestedPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionRequestedPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionRequestedPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionRequestedPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionScreenshotTaken ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionScreenshotTaken ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionScreenshotTaken ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionScreenshotTaken ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSecureValuesSent ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSecureValuesSent ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSecureValuesSent ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSecureValuesSent ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSecureValuesSentMe ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSecureValuesSentMe ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSecureValuesSentMe ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSecureValuesSentMe ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetChatTheme ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetChatTheme ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetChatTheme ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetChatTheme ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetChatWallPaper ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetChatWallPaper ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetChatWallPaper ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetChatWallPaper ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetMessagesTTL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetMessagesTTL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetMessagesTTL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSetMessagesTTL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSuggestProfilePhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSuggestProfilePhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSuggestProfilePhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionSuggestProfilePhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionTopicCreate ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionTopicCreate ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionTopicCreate ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionTopicCreate ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionTopicEdit ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionTopicEdit ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionTopicEdit ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionTopicEdit ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionWebViewDataSent ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionWebViewDataSent ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionWebViewDataSent ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionWebViewDataSent ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionWebViewDataSentMe ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionWebViewDataSentMe ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionWebViewDataSentMe ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageActionWebViewDataSentMe ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessageBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessageClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessageClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessageClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessageClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBankCard ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBankCard ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBankCard ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBankCard ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBlockquote ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBlockquote ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBlockquote ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBlockquote ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBold ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBold ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBold ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBold ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBotCommand ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBotCommand ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBotCommand ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBotCommand ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCashtag ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCashtag ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCashtag ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCashtag ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessageEntityClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessageEntityClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessageEntityClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessageEntityClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCustomEmoji ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCustomEmoji ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCustomEmoji ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityCustomEmoji ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityEmail ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityEmail ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityEmail ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityEmail ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityHashtag ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityHashtag ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityHashtag ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityHashtag ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityItalic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityItalic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityItalic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityItalic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityMention ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityMention ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityMention ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityMention ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityMentionName ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityMentionName ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityMentionName ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityMentionName ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityPhone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityPhone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityPhone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityPhone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityPre ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityPre ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityPre ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityPre ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntitySpoiler ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntitySpoiler ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntitySpoiler ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntitySpoiler ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityStrike ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityStrike ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityStrike ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityStrike ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityTextURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityTextURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityTextURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityTextURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityUnderline ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityUnderline ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityUnderline ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityUnderline ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityUnknown ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityUnknown ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityUnknown ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityUnknown ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageEntityURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMedia ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMedia ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMedia ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMedia ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMediaBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMediaBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessageExtendedMediaClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessageExtendedMediaClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessageExtendedMediaClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessageExtendedMediaClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMediaPreview ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMediaPreview ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMediaPreview ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageExtendedMediaPreview ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageFwdHeader ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageFwdHeader ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageFwdHeader ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageFwdHeader ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessageMediaClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessageMediaClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessageMediaClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessageMediaClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaContact ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaContact ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaContact ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaContact ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaDice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaDice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaDice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaDice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaDocument ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaDocument ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaDocument ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaDocument ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGame ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGame ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGame ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGame ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGeo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGeo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGeo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGeo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGeoLive ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGeoLive ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGeoLive ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGeoLive ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGiveaway ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGiveaway ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGiveaway ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGiveaway ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGiveawayResults ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGiveawayResults ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGiveawayResults ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaGiveawayResults ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaInvoice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaInvoice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaInvoice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaInvoice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaPoll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaPoll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaPoll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaPoll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaStory ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaStory ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaStory ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaStory ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaUnsupported ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaUnsupported ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaUnsupported ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaUnsupported ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaVenue ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaVenue ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaVenue ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaVenue ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaWebPage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaWebPage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaWebPage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageMediaWebPage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerReaction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerReaction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerReaction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerReaction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVote ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVote ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVote ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVote ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagePeerVoteClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagePeerVoteClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagePeerVoteClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagePeerVoteClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteInputOption ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteInputOption ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteInputOption ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteInputOption ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteMultiple ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteMultiple ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteMultiple ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagePeerVoteMultiple ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageRange ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageRange ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageRange ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageRange ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageRangeVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageRangeVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageRangeVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageRangeVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReactions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReactions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReactions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReactions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplies ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplies ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplies ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplies ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyHeader ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyHeader ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyHeader ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyHeader ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyHeaderBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyHeaderBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessageReplyHeaderClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessageReplyHeaderClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessageReplyHeaderClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessageReplyHeaderClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyStoryHeader ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyStoryHeader ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyStoryHeader ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageReplyStoryHeader ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAcceptEncryptionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAcceptEncryptionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAcceptEncryptionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAcceptEncryptionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAcceptURLAuthRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAcceptURLAuthRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAcceptURLAuthRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAcceptURLAuthRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAddChatUserRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAddChatUserRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAddChatUserRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAddChatUserRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedFoundMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedFoundMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedFoundMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedFoundMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedHistory ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedHistory ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedHistory ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedHistory ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAffectedMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickersBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickersBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesAllStickersClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesAllStickersClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesAllStickersClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesAllStickersClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickersNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickersNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickersNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAllStickersNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesArchivedStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesArchivedStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesArchivedStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesArchivedStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactionsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactionsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesAvailableReactionsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesAvailableReactionsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesAvailableReactionsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesAvailableReactionsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactionsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactionsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactionsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesAvailableReactionsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotApp ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotApp ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotApp ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotApp ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotCallbackAnswer ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotCallbackAnswer ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotCallbackAnswer ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotCallbackAnswer ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotResults ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotResults ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotResults ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesBotResults ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChannelMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChannelMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChannelMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChannelMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatAdminsWithInvites ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatAdminsWithInvites ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatAdminsWithInvites ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatAdminsWithInvites ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatFull ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatFull ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatFull ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatFull ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatInviteImporters ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatInviteImporters ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatInviteImporters ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatInviteImporters ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChats ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChats ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChats ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChats ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesChatsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesChatsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesChatsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesChatsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatsSlice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatsSlice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatsSlice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesChatsSlice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckChatInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckChatInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckChatInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckChatInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckedHistoryImportPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckedHistoryImportPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckedHistoryImportPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckedHistoryImportPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckHistoryImportPeerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckHistoryImportPeerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckHistoryImportPeerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckHistoryImportPeerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckHistoryImportRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckHistoryImportRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckHistoryImportRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCheckHistoryImportRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearAllDraftsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearAllDraftsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearAllDraftsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearAllDraftsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearRecentReactionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearRecentReactionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearRecentReactionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearRecentReactionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearRecentStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearRecentStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearRecentStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesClearRecentStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCreateChatRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCreateChatRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCreateChatRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesCreateChatRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteChatRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteChatRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteChatRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteChatRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteChatUserRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteChatUserRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteChatUserRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteChatUserRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteExportedChatInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteExportedChatInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteExportedChatInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteExportedChatInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeletePhoneCallHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeletePhoneCallHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeletePhoneCallHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeletePhoneCallHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteRevokedExportedChatInvitesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteRevokedExportedChatInvitesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteRevokedExportedChatInvitesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteRevokedExportedChatInvitesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteScheduledMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteScheduledMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteScheduledMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDeleteScheduledMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfig ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfig ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfig ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfig ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfigBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfigBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesDhConfigClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesDhConfigClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesDhConfigClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesDhConfigClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfigNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfigNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfigNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDhConfigNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogs ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogs ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogs ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogs ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesDialogsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesDialogsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesDialogsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesDialogsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsSlice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsSlice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsSlice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDialogsSlice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDiscardEncryptionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDiscardEncryptionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDiscardEncryptionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDiscardEncryptionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDiscussionMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDiscussionMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDiscussionMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesDiscussionMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatAboutRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatAboutRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatAboutRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatAboutRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatAdminRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatAdminRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatAdminRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatAdminRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatDefaultBannedRightsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatDefaultBannedRightsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatDefaultBannedRightsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatDefaultBannedRightsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatPhotoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatPhotoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatPhotoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatPhotoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatTitleRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatTitleRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatTitleRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditChatTitleRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditExportedChatInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditExportedChatInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditExportedChatInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditExportedChatInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditInlineBotMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditInlineBotMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditInlineBotMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditInlineBotMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEditMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroups ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroups ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroups ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroups ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroupsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroupsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesEmojiGroupsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesEmojiGroupsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesEmojiGroupsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesEmojiGroupsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroupsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroupsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroupsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesEmojiGroupsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageService ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageService ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageService ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageService ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportChatInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportChatInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportChatInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportChatInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInviteBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInviteBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesExportedChatInviteClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesExportedChatInviteClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesExportedChatInviteClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesExportedChatInviteClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInviteReplaced ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInviteReplaced ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInviteReplaced ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInviteReplaced ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInvites ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInvites ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInvites ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesExportedChatInvites ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickersBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickersBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesFavedStickersClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFavedStickersClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFavedStickersClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFavedStickersClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickersNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickersNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickersNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFavedStickersNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFaveStickerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFaveStickerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFaveStickerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFaveStickerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickersBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickersBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesFeaturedStickersClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFeaturedStickersClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFeaturedStickersClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFeaturedStickersClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickersNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickersNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickersNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFeaturedStickersNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFilterBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFilterBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesFilterClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFilterClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFilterClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFilterClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesForumTopics ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesForumTopics ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesForumTopics ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesForumTopics ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesForwardMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesForwardMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesForwardMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesForwardMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSets ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSets ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSets ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSets ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSetsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSetsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesFoundStickerSetsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFoundStickerSetsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFoundStickerSetsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesFoundStickerSetsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSetsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSetsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSetsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesFoundStickerSetsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAdminsWithInvitesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAdminsWithInvitesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAdminsWithInvitesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAdminsWithInvitesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAllDraftsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAllDraftsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAllDraftsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAllDraftsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAllStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAllStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAllStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAllStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetArchivedStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetArchivedStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetArchivedStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetArchivedStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachedStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachedStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachedStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachedStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachMenuBotRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachMenuBotRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachMenuBotRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachMenuBotRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachMenuBotsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachMenuBotsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachMenuBotsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAttachMenuBotsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAvailableReactionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAvailableReactionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAvailableReactionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetAvailableReactionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetBotAppRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetBotAppRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetBotAppRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetBotAppRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetBotCallbackAnswerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetBotCallbackAnswerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetBotCallbackAnswerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetBotCallbackAnswerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetChatInviteImportersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetChatInviteImportersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetChatInviteImportersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetChatInviteImportersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetChatsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetChatsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetChatsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetChatsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetCommonChatsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetCommonChatsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetCommonChatsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetCommonChatsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetCustomEmojiDocumentsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetCustomEmojiDocumentsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetCustomEmojiDocumentsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetCustomEmojiDocumentsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDefaultHistoryTTLRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDefaultHistoryTTLRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDefaultHistoryTTLRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDefaultHistoryTTLRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDhConfigRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDhConfigRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDhConfigRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDhConfigRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogFiltersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogFiltersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogFiltersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogFiltersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogUnreadMarksRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogUnreadMarksRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogUnreadMarksRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDialogUnreadMarksRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDiscussionMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDiscussionMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDiscussionMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDiscussionMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDocumentByHashRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDocumentByHashRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDocumentByHashRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetDocumentByHashRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiGroupsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiGroupsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiGroupsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiGroupsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsDifferenceRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsDifferenceRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsDifferenceRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsDifferenceRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsLanguagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsLanguagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsLanguagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsLanguagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiKeywordsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiProfilePhotoGroupsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiProfilePhotoGroupsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiProfilePhotoGroupsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiProfilePhotoGroupsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiStatusGroupsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiStatusGroupsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiStatusGroupsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiStatusGroupsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiURLRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiURLRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiURLRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetEmojiURLRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExportedChatInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExportedChatInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExportedChatInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExportedChatInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExportedChatInvitesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExportedChatInvitesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExportedChatInvitesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExportedChatInvitesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExtendedMediaRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExtendedMediaRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExtendedMediaRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetExtendedMediaRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFavedStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFavedStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFavedStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFavedStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFeaturedEmojiStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFeaturedEmojiStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFeaturedEmojiStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFeaturedEmojiStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFeaturedStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFeaturedStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFeaturedStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFeaturedStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFullChatRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFullChatRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFullChatRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetFullChatRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetGameHighScoresRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetGameHighScoresRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetGameHighScoresRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetGameHighScoresRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetInlineBotResultsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetInlineBotResultsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetInlineBotResultsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetInlineBotResultsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetInlineGameHighScoresRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetInlineGameHighScoresRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetInlineGameHighScoresRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetInlineGameHighScoresRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMaskStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMaskStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMaskStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMaskStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageEditDataRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageEditDataRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageEditDataRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageEditDataRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageReactionsListRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageReactionsListRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageReactionsListRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageReactionsListRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageReadParticipantsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageReadParticipantsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageReadParticipantsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessageReadParticipantsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesReactionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesReactionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesReactionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesReactionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesViewsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesViewsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesViewsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetMessagesViewsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetOldFeaturedStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetOldFeaturedStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetOldFeaturedStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetOldFeaturedStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetOnlinesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetOnlinesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetOnlinesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetOnlinesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPeerDialogsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPeerDialogsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPeerDialogsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPeerDialogsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPeerSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPeerSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPeerSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPeerSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPinnedDialogsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPinnedDialogsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPinnedDialogsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPinnedDialogsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPollResultsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPollResultsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPollResultsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPollResultsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPollVotesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPollVotesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPollVotesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetPollVotesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentLocationsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentLocationsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentLocationsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentLocationsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentReactionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentReactionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentReactionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentReactionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRecentStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRepliesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRepliesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRepliesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetRepliesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSavedGifsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSavedGifsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSavedGifsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSavedGifsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetScheduledHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetScheduledHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetScheduledHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetScheduledHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetScheduledMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetScheduledMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetScheduledMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetScheduledMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchCountersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchCountersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchCountersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchCountersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchResultsCalendarRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchResultsCalendarRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchResultsCalendarRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchResultsCalendarRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchResultsPositionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchResultsPositionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchResultsPositionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSearchResultsPositionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSplitRangesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSplitRangesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSplitRangesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSplitRangesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetStickerSetRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetStickerSetRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetStickerSetRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetStickerSetRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSuggestedDialogFiltersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSuggestedDialogFiltersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSuggestedDialogFiltersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetSuggestedDialogFiltersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetTopReactionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetTopReactionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetTopReactionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetTopReactionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetUnreadMentionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetUnreadMentionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetUnreadMentionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetUnreadMentionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetUnreadReactionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetUnreadReactionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetUnreadReactionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetUnreadReactionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetWebPagePreviewRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetWebPagePreviewRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetWebPagePreviewRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetWebPagePreviewRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetWebPageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetWebPageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetWebPageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesGetWebPageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHideAllChatJoinRequestsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHideAllChatJoinRequestsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHideAllChatJoinRequestsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHideAllChatJoinRequestsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHideChatJoinRequestRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHideChatJoinRequestRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHideChatJoinRequestRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHideChatJoinRequestRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHidePeerSettingsBarRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHidePeerSettingsBarRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHidePeerSettingsBarRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHidePeerSettingsBarRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHighScores ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHighScores ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHighScores ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHighScores ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHistoryImport ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHistoryImport ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHistoryImport ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHistoryImport ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHistoryImportParsed ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHistoryImportParsed ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHistoryImportParsed ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesHistoryImportParsed ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesImportChatInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesImportChatInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesImportChatInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesImportChatInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInactiveChats ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInactiveChats ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInactiveChats ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInactiveChats ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInitHistoryImportRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInitHistoryImportRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInitHistoryImportRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInitHistoryImportRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInstallStickerSetRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInstallStickerSetRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInstallStickerSetRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesInstallStickerSetRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMarkDialogUnreadRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMarkDialogUnreadRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMarkDialogUnreadRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMarkDialogUnreadRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageEditData ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageEditData ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageEditData ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageEditData ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageReactionsList ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageReactionsList ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageReactionsList ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageReactionsList ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesMessagesClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesMessagesClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesMessagesClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesMessagesClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesSlice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesSlice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesSlice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessagesSlice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageViews ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageViews ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageViews ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMessageViews ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMigrateChatRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMigrateChatRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMigrateChatRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesMigrateChatRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesPeerDialogs ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesPeerDialogs ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesPeerDialogs ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesPeerDialogs ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesPeerSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesPeerSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesPeerSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesPeerSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesProlongWebViewRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesProlongWebViewRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesProlongWebViewRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesProlongWebViewRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRateTranscribedAudioRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRateTranscribedAudioRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRateTranscribedAudioRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRateTranscribedAudioRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactionsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactionsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesReactionsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesReactionsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesReactionsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesReactionsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactionsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactionsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactionsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReactionsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadDiscussionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadDiscussionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadDiscussionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadDiscussionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadEncryptedHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadEncryptedHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadEncryptedHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadEncryptedHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadFeaturedStickersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadFeaturedStickersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadFeaturedStickersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadFeaturedStickersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadHistoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadHistoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadHistoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadHistoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadMentionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadMentionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadMentionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadMentionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadMessageContentsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadMessageContentsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadMessageContentsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadMessageContentsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadReactionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadReactionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadReactionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReadReactionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReceivedMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReceivedMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReceivedMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReceivedMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReceivedQueueRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReceivedQueueRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReceivedQueueRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReceivedQueueRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickersBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickersBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesRecentStickersClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesRecentStickersClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesRecentStickersClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesRecentStickersClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickersNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickersNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickersNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRecentStickersNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReorderPinnedDialogsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReorderPinnedDialogsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReorderPinnedDialogsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReorderPinnedDialogsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReorderStickerSetsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReorderStickerSetsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReorderStickerSetsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReorderStickerSetsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportEncryptedSpamRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportEncryptedSpamRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportEncryptedSpamRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportEncryptedSpamRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportReactionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportReactionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportReactionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportReactionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportSpamRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportSpamRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportSpamRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesReportSpamRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestAppWebViewRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestAppWebViewRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestAppWebViewRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestAppWebViewRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestEncryptionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestEncryptionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestEncryptionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestEncryptionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestSimpleWebViewRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestSimpleWebViewRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestSimpleWebViewRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestSimpleWebViewRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestURLAuthRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestURLAuthRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestURLAuthRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestURLAuthRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestWebViewRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestWebViewRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestWebViewRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesRequestWebViewRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveDefaultSendAsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveDefaultSendAsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveDefaultSendAsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveDefaultSendAsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifs ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifs ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifs ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifs ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifsBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifsBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesSavedGifsClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesSavedGifsClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesSavedGifsClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesSavedGifsClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifsNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifsNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifsNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSavedGifsNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveDraftRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveDraftRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveDraftRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveDraftRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveGifRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveGifRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveGifRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveGifRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveRecentStickerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveRecentStickerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveRecentStickerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSaveRecentStickerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCounter ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCounter ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCounter ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCounter ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCounterVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCounterVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCounterVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCounterVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCustomEmojiRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCustomEmojiRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCustomEmojiRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchCustomEmojiRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchEmojiStickerSetsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchEmojiStickerSetsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchEmojiStickerSetsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchEmojiStickerSetsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchGlobalRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchGlobalRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchGlobalRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchGlobalRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchResultsCalendar ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchResultsCalendar ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchResultsCalendar ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchResultsCalendar ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchResultsPositions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchResultsPositions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchResultsPositions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchResultsPositions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchSentMediaRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchSentMediaRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchSentMediaRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchSentMediaRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchStickerSetsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchStickerSetsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchStickerSetsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSearchStickerSetsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendBotRequestedPeerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendBotRequestedPeerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendBotRequestedPeerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendBotRequestedPeerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedFileRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedFileRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedFileRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedFileRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedServiceRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedServiceRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedServiceRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendEncryptedServiceRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendInlineBotResultRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendInlineBotResultRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendInlineBotResultRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendInlineBotResultRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMediaRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMediaRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMediaRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMediaRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMultiMediaRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMultiMediaRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMultiMediaRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendMultiMediaRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendReactionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendReactionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendReactionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendReactionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendScheduledMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendScheduledMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendScheduledMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendScheduledMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendScreenshotNotificationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendScreenshotNotificationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendScreenshotNotificationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendScreenshotNotificationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendVoteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendVoteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendVoteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendVoteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendWebViewDataRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendWebViewDataRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendWebViewDataRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendWebViewDataRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendWebViewResultMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendWebViewResultMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendWebViewResultMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSendWebViewResultMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedMessageBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSentEncryptedMessageBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesSentEncryptedMessageClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesSentEncryptedMessageClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesSentEncryptedMessageClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesSentEncryptedMessageClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotCallbackAnswerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotCallbackAnswerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotCallbackAnswerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotCallbackAnswerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotPrecheckoutResultsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotPrecheckoutResultsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotPrecheckoutResultsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotPrecheckoutResultsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotShippingResultsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotShippingResultsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotShippingResultsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetBotShippingResultsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatAvailableReactionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatAvailableReactionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatAvailableReactionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatAvailableReactionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatThemeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatThemeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatThemeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatThemeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatWallPaperRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatWallPaperRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatWallPaperRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetChatWallPaperRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetDefaultHistoryTTLRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetDefaultHistoryTTLRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetDefaultHistoryTTLRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetDefaultHistoryTTLRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetDefaultReactionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetDefaultReactionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetDefaultReactionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetDefaultReactionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetEncryptedTypingRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetEncryptedTypingRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetEncryptedTypingRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetEncryptedTypingRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetGameScoreRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetGameScoreRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetGameScoreRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetGameScoreRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetHistoryTTLRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetHistoryTTLRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetHistoryTTLRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetHistoryTTLRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetInlineBotResultsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetInlineBotResultsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetInlineBotResultsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetInlineBotResultsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetInlineGameScoreRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetInlineGameScoreRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetInlineGameScoreRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetInlineGameScoreRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetTypingRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetTypingRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetTypingRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSetTypingRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessagesBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessagesBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesSponsoredMessagesClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesSponsoredMessagesClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesSponsoredMessagesClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesSponsoredMessagesClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessagesEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessagesEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessagesEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesSponsoredMessagesEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStartBotRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStartBotRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStartBotRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStartBotRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStartHistoryImportRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStartHistoryImportRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStartHistoryImportRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStartHistoryImportRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickersBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickersBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesStickersClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesStickersClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesStickersClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesStickersClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSet ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSet ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSet ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSet ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesStickerSetClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesStickerSetClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesStickerSetClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesStickerSetClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultArchive ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultArchive ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultArchive ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultArchive ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.MessagesStickerSetInstallResultClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesStickerSetInstallResultClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.MessagesStickerSetInstallResultClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.MessagesStickerSetInstallResultClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultSuccess ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultSuccess ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultSuccess ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetInstallResultSuccess ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickerSetNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickersNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickersNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickersNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesStickersNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleBotInAttachMenuRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleBotInAttachMenuRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleBotInAttachMenuRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleBotInAttachMenuRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleDialogPinRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleDialogPinRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleDialogPinRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleDialogPinRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleNoForwardsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleNoForwardsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleNoForwardsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleNoForwardsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTogglePeerTranslationsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTogglePeerTranslationsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTogglePeerTranslationsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTogglePeerTranslationsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleStickerSetsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleStickerSetsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleStickerSetsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesToggleStickerSetsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranscribeAudioRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranscribeAudioRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranscribeAudioRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranscribeAudioRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranscribedAudio ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranscribedAudio ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranscribedAudio ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranscribedAudio ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranslateResult ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranslateResult ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranslateResult ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranslateResult ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranslateTextRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranslateTextRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranslateTextRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesTranslateTextRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUninstallStickerSetRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUninstallStickerSetRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUninstallStickerSetRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUninstallStickerSetRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUnpinAllMessagesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUnpinAllMessagesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUnpinAllMessagesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUnpinAllMessagesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdateDialogFilterRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdateDialogFilterRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdateDialogFilterRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdateDialogFilterRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdateDialogFiltersOrderRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdateDialogFiltersOrderRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdateDialogFiltersOrderRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdateDialogFiltersOrderRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdatePinnedMessageRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdatePinnedMessageRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdatePinnedMessageRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUpdatePinnedMessageRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadEncryptedFileRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadEncryptedFileRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadEncryptedFileRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadEncryptedFileRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadImportedMediaRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadImportedMediaRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadImportedMediaRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadImportedMediaRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadMediaRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadMediaRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadMediaRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesUploadMediaRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesVotesList ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesVotesList ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesVotesList ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesVotesList ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesWebPage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesWebPage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesWebPage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessagesWebPage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageViews ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageViews ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageViews ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MessageViews ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedMessagesDialogs .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedMessagesDialogs .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedMessagesDialogs .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedMessagesDialogs .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedMessagesMessages .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedMessagesMessages .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedMessagesMessages .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedMessagesMessages .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedWebPage .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedWebPage .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedWebPage .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ModifiedWebPage .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MyBoost ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*MyBoost ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*MyBoost ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*MyBoost ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NearestDC ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NearestDC ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NearestDC ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NearestDC ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyChat .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyChat .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyChat .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyChat .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyEmojiStatus .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyEmojiStatus .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyEmojiStatus .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyEmojiStatus .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyEncryptedChat .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyEncryptedChat .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyEncryptedChat .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyEncryptedChat .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyInputChannel .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyInputChannel .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyInputChannel .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyInputChannel .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyInputEncryptedFile .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyInputEncryptedFile .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyInputEncryptedFile .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyInputEncryptedFile .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyMessage .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyMessage .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyMessage .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyMessage .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyPhoneCall .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyPhoneCall .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyPhoneCall .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyPhoneCall .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyPhotoSize .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyPhotoSize .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyPhotoSize .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyPhotoSize .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyUpdatesChannelDifference .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyUpdatesChannelDifference .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyUpdatesChannelDifference .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotEmptyUpdatesChannelDifference .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotForbiddenChat .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotForbiddenChat .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotForbiddenChat .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotForbiddenChat .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.NotificationSoundClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotificationSoundClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotificationSoundClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotificationSoundClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundDefault ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundDefault ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundDefault ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundDefault ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundLocal ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundLocal ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundLocal ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundLocal ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundNone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundNone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundNone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundNone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundRingtone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundRingtone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundRingtone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotificationSoundRingtone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyBroadcasts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyBroadcasts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyBroadcasts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyBroadcasts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyChats ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyChats ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyChats ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyChats ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyForumTopic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyForumTopic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyForumTopic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyForumTopic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyPeerBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*NotifyPeerBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.NotifyPeerClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.NotifyPeerClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.NotifyPeerClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.NotifyPeerClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyUsers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyUsers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyUsers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*NotifyUsers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Null ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Null ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Null ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Null ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Page ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Page ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Page ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Page ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAnchor ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAnchor ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAnchor ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAnchor ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAudio ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAudio ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAudio ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAudio ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAuthorDate ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAuthorDate ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAuthorDate ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockAuthorDate ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockBlockquote ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockBlockquote ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockBlockquote ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockBlockquote ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockChannel ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockChannel ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockChannel ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockChannel ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PageBlockClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PageBlockClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PageBlockClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PageBlockClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockCollage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockCollage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockCollage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockCollage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockCover ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockCover ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockCover ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockCover ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockDetails ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockDetails ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockDetails ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockDetails ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockDivider ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockDivider ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockDivider ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockDivider ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockEmbed ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockEmbed ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockEmbed ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockEmbed ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockEmbedPost ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockEmbedPost ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockEmbedPost ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockEmbedPost ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockFooter ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockFooter ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockFooter ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockFooter ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockHeader ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockHeader ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockHeader ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockHeader ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockKicker ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockKicker ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockKicker ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockKicker ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockList ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockList ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockList ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockList ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockMap ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockMap ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockMap ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockMap ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockOrderedList ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockOrderedList ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockOrderedList ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockOrderedList ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockParagraph ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockParagraph ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockParagraph ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockParagraph ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPreformatted ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPreformatted ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPreformatted ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPreformatted ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPullquote ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPullquote ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPullquote ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockPullquote ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockRelatedArticles ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockRelatedArticles ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockRelatedArticles ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockRelatedArticles ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSlideshow ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSlideshow ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSlideshow ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSlideshow ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSubheader ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSubheader ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSubheader ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSubheader ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSubtitle ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSubtitle ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSubtitle ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockSubtitle ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockTable ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockTable ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockTable ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockTable ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockTitle ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockTitle ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockTitle ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockTitle ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockUnsupported ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockUnsupported ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockUnsupported ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockUnsupported ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockVideo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockVideo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockVideo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageBlockVideo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageCaption ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageCaption ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageCaption ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageCaption ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemBlocks ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemBlocks ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemBlocks ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemBlocks ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PageListItemClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PageListItemClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PageListItemClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PageListItemClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemText ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemText ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemText ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListItemText ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemBlocks ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemBlocks ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemBlocks ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemBlocks ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PageListOrderedItemClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PageListOrderedItemClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PageListOrderedItemClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PageListOrderedItemClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemText ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemText ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemText ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageListOrderedItemText ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageRelatedArticle ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageRelatedArticle ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageRelatedArticle ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageRelatedArticle ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageTableCell ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageTableCell ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageTableCell ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageTableCell ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageTableRow ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageTableRow ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PageTableRow ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PageTableRow ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PasswordKdfAlgoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PasswordKdfAlgoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PasswordKdfAlgoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PasswordKdfAlgoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoUnknown ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoUnknown ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoUnknown ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PasswordKdfAlgoUnknown ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentCharge ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentCharge ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentCharge ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentCharge ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentFormMethod ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentFormMethod ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentFormMethod ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentFormMethod ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentRequestedInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentRequestedInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentRequestedInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentRequestedInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsApplyGiftCodeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsApplyGiftCodeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsApplyGiftCodeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsApplyGiftCodeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsAssignAppStoreTransactionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsAssignAppStoreTransactionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsAssignAppStoreTransactionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsAssignAppStoreTransactionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsAssignPlayMarketTransactionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsAssignPlayMarketTransactionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsAssignPlayMarketTransactionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsAssignPlayMarketTransactionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentSavedCredentialsCard ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentSavedCredentialsCard ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentSavedCredentialsCard ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentSavedCredentialsCard ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsBankCardData ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsBankCardData ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsBankCardData ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsBankCardData ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCanPurchasePremiumRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCanPurchasePremiumRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCanPurchasePremiumRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCanPurchasePremiumRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCheckedGiftCode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCheckedGiftCode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCheckedGiftCode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCheckedGiftCode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCheckGiftCodeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCheckGiftCodeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCheckGiftCodeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsCheckGiftCodeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsClearSavedInfoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsClearSavedInfoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsClearSavedInfoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsClearSavedInfoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsExportedInvoice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsExportedInvoice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsExportedInvoice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsExportedInvoice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsExportInvoiceRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsExportInvoiceRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsExportInvoiceRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsExportInvoiceRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetBankCardDataRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetBankCardDataRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetBankCardDataRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetBankCardDataRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetGiveawayInfoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetGiveawayInfoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetGiveawayInfoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetGiveawayInfoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPaymentFormRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPaymentFormRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPaymentFormRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPaymentFormRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPaymentReceiptRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPaymentReceiptRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPaymentReceiptRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPaymentReceiptRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPremiumGiftCodeOptionsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPremiumGiftCodeOptionsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPremiumGiftCodeOptionsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetPremiumGiftCodeOptionsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetSavedInfoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetSavedInfoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetSavedInfoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGetSavedInfoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PaymentsGiveawayInfoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PaymentsGiveawayInfoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PaymentsGiveawayInfoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PaymentsGiveawayInfoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfoResults ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfoResults ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfoResults ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsGiveawayInfoResults ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsLaunchPrepaidGiveawayRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsLaunchPrepaidGiveawayRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsLaunchPrepaidGiveawayRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsLaunchPrepaidGiveawayRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentForm ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentForm ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentForm ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentForm ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentReceipt ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentReceipt ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentReceipt ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentReceipt ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentResult ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentResult ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentResult ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentResult ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentResultBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentResultBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PaymentsPaymentResultClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PaymentsPaymentResultClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PaymentsPaymentResultClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PaymentsPaymentResultClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentVerificationNeeded ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentVerificationNeeded ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentVerificationNeeded ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsPaymentVerificationNeeded ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsSavedInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsSavedInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsSavedInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsSavedInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsSendPaymentFormRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsSendPaymentFormRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsSendPaymentFormRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsSendPaymentFormRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsValidatedRequestedInfo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsValidatedRequestedInfo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsValidatedRequestedInfo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsValidatedRequestedInfo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsValidateRequestedInfoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsValidateRequestedInfoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsValidateRequestedInfoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PaymentsValidateRequestedInfoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerBlocked ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerBlocked ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerBlocked ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerBlocked ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PeerBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PeerChannel ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerChannel ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerChannel ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerChannel ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PeerClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PeerClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PeerClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PeerClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerClassVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerClassVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerClassVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerClassVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerColor ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerColor ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerColor ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerColor ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerLocated ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerLocated ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerLocated ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerLocated ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerLocatedBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PeerLocatedBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PeerLocatedClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PeerLocatedClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PeerLocatedClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PeerLocatedClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerNotifySettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerNotifySettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerNotifySettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerNotifySettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerSelfLocated ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerSelfLocated ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerSelfLocated ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerSelfLocated ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerStories ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerStories ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerStories ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerStories ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerUser ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerUser ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerUser ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PeerUser ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneAcceptCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneAcceptCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneAcceptCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneAcceptCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallAccepted ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallAccepted ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallAccepted ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallAccepted ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PhoneCallClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PhoneCallClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PhoneCallClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PhoneCallClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscarded ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscarded ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscarded ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscarded ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonBusy ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonBusy ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonBusy ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonBusy ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PhoneCallDiscardReasonClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PhoneCallDiscardReasonClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PhoneCallDiscardReasonClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PhoneCallDiscardReasonClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonDisconnect ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonDisconnect ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonDisconnect ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonDisconnect ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonHangup ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonHangup ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonHangup ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonHangup ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonMissed ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonMissed ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonMissed ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallDiscardReasonMissed ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallProtocol ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallProtocol ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallProtocol ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallProtocol ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallRequested ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallRequested ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallRequested ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallRequested ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallWaiting ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallWaiting ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallWaiting ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCallWaiting ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCheckGroupCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCheckGroupCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCheckGroupCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCheckGroupCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConfirmCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConfirmCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConfirmCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConfirmCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnection ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnection ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnection ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnection ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnectionBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnectionBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PhoneConnectionClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PhoneConnectionClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PhoneConnectionClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PhoneConnectionClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnectionWebrtc ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnectionWebrtc ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnectionWebrtc ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneConnectionWebrtc ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCreateGroupCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCreateGroupCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCreateGroupCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneCreateGroupCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneDiscardCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneDiscardCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneDiscardCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneDiscardCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneDiscardGroupCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneDiscardGroupCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneDiscardGroupCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneDiscardGroupCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneEditGroupCallParticipantRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneEditGroupCallParticipantRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneEditGroupCallParticipantRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneEditGroupCallParticipantRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneEditGroupCallTitleRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneEditGroupCallTitleRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneEditGroupCallTitleRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneEditGroupCallTitleRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneExportedGroupCallInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneExportedGroupCallInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneExportedGroupCallInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneExportedGroupCallInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneExportGroupCallInviteRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneExportGroupCallInviteRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneExportGroupCallInviteRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneExportGroupCallInviteRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetCallConfigRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetCallConfigRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetCallConfigRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetCallConfigRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallJoinAsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallJoinAsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallJoinAsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallJoinAsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallStreamChannelsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallStreamChannelsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallStreamChannelsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallStreamChannelsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallStreamRtmpURLRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallStreamRtmpURLRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallStreamRtmpURLRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupCallStreamRtmpURLRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupParticipantsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupParticipantsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupParticipantsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGetGroupParticipantsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCallStreamChannels ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCallStreamChannels ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCallStreamChannels ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCallStreamChannels ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCallStreamRtmpURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCallStreamRtmpURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCallStreamRtmpURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupCallStreamRtmpURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupParticipants ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupParticipants ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupParticipants ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneGroupParticipants ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneInviteToGroupCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneInviteToGroupCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneInviteToGroupCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneInviteToGroupCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinAsPeers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinAsPeers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinAsPeers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinAsPeers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinGroupCallPresentationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinGroupCallPresentationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinGroupCallPresentationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinGroupCallPresentationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinGroupCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinGroupCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinGroupCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneJoinGroupCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneLeaveGroupCallPresentationRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneLeaveGroupCallPresentationRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneLeaveGroupCallPresentationRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneLeaveGroupCallPresentationRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneLeaveGroupCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneLeaveGroupCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneLeaveGroupCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneLeaveGroupCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhonePhoneCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhonePhoneCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhonePhoneCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhonePhoneCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneReceivedCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneReceivedCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneReceivedCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneReceivedCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneRequestCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneRequestCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneRequestCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneRequestCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveCallDebugRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveCallDebugRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveCallDebugRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveCallDebugRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveCallLogRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveCallLogRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveCallLogRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveCallLogRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveDefaultGroupCallJoinAsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveDefaultGroupCallJoinAsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveDefaultGroupCallJoinAsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSaveDefaultGroupCallJoinAsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSendSignalingDataRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSendSignalingDataRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSendSignalingDataRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSendSignalingDataRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSetCallRatingRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSetCallRatingRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSetCallRatingRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneSetCallRatingRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneStartScheduledGroupCallRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneStartScheduledGroupCallRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneStartScheduledGroupCallRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneStartScheduledGroupCallRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallRecordRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallRecordRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallRecordRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallRecordRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallSettingsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallSettingsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallSettingsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallSettingsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallStartSubscriptionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallStartSubscriptionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallStartSubscriptionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhoneToggleGroupCallStartSubscriptionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Photo ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Photo ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Photo ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Photo ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PhotoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PhotoCachedSize ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoCachedSize ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoCachedSize ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoCachedSize ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PhotoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PhotoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PhotoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PhotoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoPathSize ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoPathSize ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoPathSize ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoPathSize ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosDeletePhotosRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosDeletePhotosRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosDeletePhotosRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosDeletePhotosRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosGetUserPhotosRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosGetUserPhotosRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosGetUserPhotosRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosGetUserPhotosRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSize ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSize ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSize ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSize ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PhotoSizeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PhotoSizeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PhotoSizeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PhotoSizeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeProgressive ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeProgressive ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeProgressive ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoSizeProgressive ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotos ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotos ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotos ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotos ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotosBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotosBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PhotosPhotosClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PhotosPhotosClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PhotosPhotosClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PhotosPhotosClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotosSlice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotosSlice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotosSlice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosPhotosSlice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoStrippedSize ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoStrippedSize ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoStrippedSize ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotoStrippedSize ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUpdateProfilePhotoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUpdateProfilePhotoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUpdateProfilePhotoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUpdateProfilePhotoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUploadContactProfilePhotoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUploadContactProfilePhotoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUploadContactProfilePhotoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUploadContactProfilePhotoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUploadProfilePhotoRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUploadProfilePhotoRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUploadProfilePhotoRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PhotosUploadProfilePhotoRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Poll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Poll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Poll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Poll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PollAnswer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PollAnswer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PollAnswer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PollAnswer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PollAnswerVoters ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PollAnswerVoters ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PollAnswerVoters ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PollAnswerVoters ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PollResults ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PollResults ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PollResults ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PollResults ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PopularContact ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PopularContact ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PopularContact ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PopularContact ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PostAddress ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PostAddress ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PostAddress ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PostAddress ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PostInteractionCountersClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PostInteractionCountersClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PostInteractionCountersClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PostInteractionCountersClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersStory ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersStory ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersStory ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PostInteractionCountersStory ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumApplyBoostRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumApplyBoostRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumApplyBoostRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumApplyBoostRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumBoostsList ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PremiumBoostsList ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*PremiumBoostsList ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PremiumBoostsList ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*PremiumBoostsStatus ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PremiumBoostsStatus ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*PremiumBoostsStatus ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PremiumBoostsStatus ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetBoostsListRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetBoostsListRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetBoostsListRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetBoostsListRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetBoostsStatusRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetBoostsStatusRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetBoostsStatusRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetBoostsStatusRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetMyBoostsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetMyBoostsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetMyBoostsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetMyBoostsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetUserBoostsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetUserBoostsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetUserBoostsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGetUserBoostsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftCodeOption ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftCodeOption ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftCodeOption ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftCodeOption ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftCodeOptionVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftCodeOptionVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftCodeOptionVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftCodeOptionVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftOption ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftOption ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftOption ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumGiftOption ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumMyBoosts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumMyBoosts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumMyBoosts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumMyBoosts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumSubscriptionOption ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumSubscriptionOption ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumSubscriptionOption ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PremiumSubscriptionOption ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrepaidGiveaway ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrepaidGiveaway ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrepaidGiveaway ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrepaidGiveaway ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyAbout ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyAbout ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyAbout ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyAbout ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyAddedByPhone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyAddedByPhone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyAddedByPhone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyAddedByPhone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyChatInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyChatInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyChatInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyChatInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PrivacyKeyClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PrivacyKeyClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PrivacyKeyClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PrivacyKeyClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyForwards ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyForwards ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyForwards ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyForwards ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneNumber ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneNumber ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneNumber ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneNumber ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneP2P ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneP2P ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneP2P ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyPhoneP2P ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyProfilePhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyProfilePhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyProfilePhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyProfilePhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyStatusTimestamp ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyStatusTimestamp ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyStatusTimestamp ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyStatusTimestamp ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyVoiceMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyVoiceMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyVoiceMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyKeyVoiceMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyRuleBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyRuleBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PrivacyRuleClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PrivacyRuleClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PrivacyRuleClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PrivacyRuleClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowAll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowAll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowAll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowAll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowChatParticipants ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowChatParticipants ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowChatParticipants ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowChatParticipants ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowCloseFriends ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowCloseFriends ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowCloseFriends ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowCloseFriends ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowContacts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowContacts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowContacts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowContacts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowUsers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowUsers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowUsers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueAllowUsers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowAll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowAll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowAll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowAll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowChatParticipants ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowChatParticipants ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowChatParticipants ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowChatParticipants ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowContacts ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowContacts ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowContacts ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowContacts ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowUsers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowUsers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowUsers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PrivacyValueDisallowUsers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.PublicForwardClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.PublicForwardClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.PublicForwardClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.PublicForwardClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardStory ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardStory ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardStory ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*PublicForwardStory ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ReactionBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ReactionClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ReactionClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ReactionClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ReactionClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionCount ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionCount ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionCount ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionCount ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionCustomEmoji ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionCustomEmoji ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionCustomEmoji ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionCustomEmoji ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionEmoji ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionEmoji ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionEmoji ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionEmoji ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReactionEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReadParticipantDate ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReadParticipantDate ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReadParticipantDate ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReadParticipantDate ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReadParticipantDateVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReadParticipantDateVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReadParticipantDateVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReadParticipantDateVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReceivedNotifyMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReceivedNotifyMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReceivedNotifyMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReceivedNotifyMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReceivedNotifyMessageVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReceivedNotifyMessageVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReceivedNotifyMessageVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReceivedNotifyMessageVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLChatInvite ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLChatInvite ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLChatInvite ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLChatInvite ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.RecentMeURLClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.RecentMeURLClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.RecentMeURLClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.RecentMeURLClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLStickerSet ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLStickerSet ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLStickerSet ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLStickerSet ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLUnknown ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLUnknown ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLUnknown ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLUnknown ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLUser ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLUser ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLUser ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*RecentMeURLUser ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyInlineMarkup ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyInlineMarkup ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyInlineMarkup ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyInlineMarkup ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardForceReply ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardForceReply ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardForceReply ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardForceReply ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardHide ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardHide ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardHide ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardHide ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardMarkup ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardMarkup ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardMarkup ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyKeyboardMarkup ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReplyMarkupBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ReplyMarkupBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ReplyMarkupClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ReplyMarkupClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ReplyMarkupClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ReplyMarkupClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ReportReasonBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*ReportReasonBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.ReportReasonClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.ReportReasonClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.ReportReasonClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.ReportReasonClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeBroadcast ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeBroadcast ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeBroadcast ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeBroadcast ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.RequestPeerTypeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.RequestPeerTypeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.RequestPeerTypeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.RequestPeerTypeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeUser ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeUser ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeUser ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*RequestPeerTypeUser ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RestrictionReason ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*RestrictionReason ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RestrictionReason ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*RestrictionReason ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*RichTextBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*RichTextBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.RichTextClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.RichTextClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.RichTextClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.RichTextClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SavedPhoneContact ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SavedPhoneContact ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SavedPhoneContact ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SavedPhoneContact ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SavedPhoneContactVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SavedPhoneContactVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SavedPhoneContactVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SavedPhoneContactVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SearchResultPosition ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SearchResultPosition ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SearchResultPosition ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SearchResultPosition ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SearchResultsCalendarPeriod ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SearchResultsCalendarPeriod ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SearchResultsCalendarPeriod ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SearchResultsCalendarPeriod ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureCredentialsEncrypted ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureCredentialsEncrypted ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureCredentialsEncrypted ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureCredentialsEncrypted ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureData ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureData ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureData ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureData ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureFileBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*SecureFileBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.SecureFileClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.SecureFileClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.SecureFileClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.SecureFileClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureFileEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureFileEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureFileEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureFileEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.SecurePasswordKdfAlgoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.SecurePasswordKdfAlgoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.SecurePasswordKdfAlgoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.SecurePasswordKdfAlgoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000 ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000 ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000 ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000 ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoSHA512 ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoSHA512 ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoSHA512 ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoSHA512 ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoUnknown ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoUnknown ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoUnknown ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePasswordKdfAlgoUnknown ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainDataBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainDataBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.SecurePlainDataClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.SecurePlainDataClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.SecurePlainDataClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.SecurePlainDataClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainEmail ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainEmail ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainEmail ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainEmail ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainPhone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainPhone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainPhone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecurePlainPhone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredType ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredType ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredType ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredType ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredTypeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredTypeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.SecureRequiredTypeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.SecureRequiredTypeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.SecureRequiredTypeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.SecureRequiredTypeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredTypeOneOf ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredTypeOneOf ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredTypeOneOf ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureRequiredTypeOneOf ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureSecretSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureSecretSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureSecretSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureSecretSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValue ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValue ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValue ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValue ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueError ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueError ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueError ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueError ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.SecureValueErrorClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.SecureValueErrorClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.SecureValueErrorClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.SecureValueErrorClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorData ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorData ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorData ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorData ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFiles ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFiles ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFiles ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFiles ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFrontSide ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFrontSide ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFrontSide ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorFrontSide ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorReverseSide ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorReverseSide ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorReverseSide ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorReverseSide ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorSelfie ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorSelfie ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorSelfie ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorSelfie ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorTranslationFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorTranslationFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorTranslationFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorTranslationFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorTranslationFiles ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorTranslationFiles ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorTranslationFiles ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueErrorTranslationFiles ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueHash ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueHash ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueHash ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueHash ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeAddress ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeAddress ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeAddress ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeAddress ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeBankStatement ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeBankStatement ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeBankStatement ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeBankStatement ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.SecureValueTypeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.SecureValueTypeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.SecureValueTypeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.SecureValueTypeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeDriverLicense ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeDriverLicense ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeDriverLicense ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeDriverLicense ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeEmail ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeEmail ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeEmail ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeEmail ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeIdentityCard ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeIdentityCard ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeIdentityCard ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeIdentityCard ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeInternalPassport ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeInternalPassport ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeInternalPassport ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeInternalPassport ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePassport ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePassport ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePassport ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePassport ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePassportRegistration ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePassportRegistration ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePassportRegistration ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePassportRegistration ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePersonalDetails ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePersonalDetails ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePersonalDetails ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePersonalDetails ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePhone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePhone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePhone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypePhone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeRentalAgreement ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeRentalAgreement ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeRentalAgreement ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeRentalAgreement ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeTemporaryRegistration ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeTemporaryRegistration ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeTemporaryRegistration ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeTemporaryRegistration ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeUtilityBill ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeUtilityBill ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeUtilityBill ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueTypeUtilityBill ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SecureValueVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendAsPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendAsPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendAsPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendAsPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageActionBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageActionBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.SendMessageActionClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.SendMessageActionClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.SendMessageActionClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.SendMessageActionClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageCancelAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageCancelAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageCancelAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageCancelAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageChooseContactAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageChooseContactAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageChooseContactAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageChooseContactAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageChooseStickerAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageChooseStickerAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageChooseStickerAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageChooseStickerAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageEmojiInteraction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageEmojiInteraction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageEmojiInteraction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageEmojiInteraction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageEmojiInteractionSeen ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageEmojiInteractionSeen ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageEmojiInteractionSeen ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageEmojiInteractionSeen ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageGamePlayAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageGamePlayAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageGamePlayAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageGamePlayAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageGeoLocationAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageGeoLocationAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageGeoLocationAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageGeoLocationAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageHistoryImportAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageHistoryImportAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageHistoryImportAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageHistoryImportAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordAudioAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordAudioAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordAudioAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordAudioAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordRoundAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordRoundAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordRoundAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordRoundAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordVideoAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordVideoAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordVideoAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageRecordVideoAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageTypingAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageTypingAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageTypingAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageTypingAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadAudioAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadAudioAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadAudioAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadAudioAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadDocumentAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadDocumentAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadDocumentAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadDocumentAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadPhotoAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadPhotoAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadPhotoAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadPhotoAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadRoundAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadRoundAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadRoundAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadRoundAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadVideoAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadVideoAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadVideoAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SendMessageUploadVideoAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ServerDispatcher ).Handle (ctx context .Context , b *Buffer ) (Encoder , error )
func github.com/gotd/td/tg.(*ShippingOption ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ShippingOption ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ShippingOption ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ShippingOption ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SimpleWebViewResultURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SimpleWebViewResultURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SimpleWebViewResultURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SimpleWebViewResultURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SpeakingInGroupCallAction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SpeakingInGroupCallAction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SpeakingInGroupCallAction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SpeakingInGroupCallAction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SponsoredMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SponsoredMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SponsoredMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SponsoredMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SponsoredWebPage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*SponsoredWebPage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*SponsoredWebPage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*SponsoredWebPage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsAbsValueAndPrev ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsAbsValueAndPrev ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsAbsValueAndPrev ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsAbsValueAndPrev ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsBroadcastStats ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*StatsBroadcastStats ).DecodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*StatsBroadcastStats ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*StatsBroadcastStats ).EncodeBare (buf *Buffer ) error
func github.com/gotd/td/tg.(*StatsDateRangeDays ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsDateRangeDays ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsDateRangeDays ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsDateRangeDays ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetBroadcastStatsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetBroadcastStatsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetBroadcastStatsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetBroadcastStatsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMegagroupStatsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMegagroupStatsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMegagroupStatsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMegagroupStatsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMessagePublicForwardsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMessagePublicForwardsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMessagePublicForwardsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMessagePublicForwardsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMessageStatsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMessageStatsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMessageStatsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetMessageStatsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetStoryPublicForwardsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetStoryPublicForwardsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetStoryPublicForwardsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetStoryPublicForwardsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetStoryStatsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetStoryStatsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetStoryStatsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGetStoryStatsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraph ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraph ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraph ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraph ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphAsync ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphAsync ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphAsync ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphAsync ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.StatsGraphClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.StatsGraphClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.StatsGraphClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.StatsGraphClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphError ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphError ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphError ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGraphError ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopAdmin ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopAdmin ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopAdmin ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopAdmin ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopInviter ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopInviter ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopInviter ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopInviter ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopPoster ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopPoster ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopPoster ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsGroupTopPoster ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsLoadAsyncGraphRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsLoadAsyncGraphRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsLoadAsyncGraphRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsLoadAsyncGraphRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsMegagroupStats ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsMegagroupStats ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsMegagroupStats ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsMegagroupStats ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsMessageStats ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsMessageStats ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsMessageStats ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsMessageStats ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsPercentValue ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsPercentValue ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsPercentValue ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsPercentValue ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsPublicForwards ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsPublicForwards ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsPublicForwards ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsPublicForwards ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsStoryStats ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsStoryStats ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsStoryStats ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsStoryStats ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StatsURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerKeyword ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerKeyword ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerKeyword ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerKeyword ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerPack ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerPack ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerPack ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerPack ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersAddStickerToSetRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersAddStickerToSetRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersAddStickerToSetRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersAddStickerToSetRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersChangeStickerPositionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersChangeStickerPositionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersChangeStickerPositionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersChangeStickerPositionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersChangeStickerRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersChangeStickerRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersChangeStickerRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersChangeStickerRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersCheckShortNameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersCheckShortNameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersCheckShortNameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersCheckShortNameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersCreateStickerSetRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersCreateStickerSetRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersCreateStickerSetRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersCreateStickerSetRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersDeleteStickerSetRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersDeleteStickerSetRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersDeleteStickerSetRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersDeleteStickerSetRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSet ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSet ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSet ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSet ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCovered ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCovered ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCovered ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCovered ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCoveredBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCoveredBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.StickerSetCoveredClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.StickerSetCoveredClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.StickerSetCoveredClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.StickerSetCoveredClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCoveredClassVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCoveredClassVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCoveredClassVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetCoveredClassVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetFullCovered ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetFullCovered ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetFullCovered ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetFullCovered ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetMultiCovered ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetMultiCovered ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetMultiCovered ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetMultiCovered ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetNoCovered ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetNoCovered ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetNoCovered ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickerSetNoCovered ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersRemoveStickerFromSetRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersRemoveStickerFromSetRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersRemoveStickerFromSetRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersRemoveStickerFromSetRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersRenameStickerSetRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersRenameStickerSetRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersRenameStickerSetRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersRenameStickerSetRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSetStickerSetThumbRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSetStickerSetThumbRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSetStickerSetThumbRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSetStickerSetThumbRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSuggestedShortName ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSuggestedShortName ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSuggestedShortName ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSuggestedShortName ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSuggestShortNameRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSuggestShortNameRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSuggestShortNameRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StickersSuggestShortNameRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileGif ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileGif ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileGif ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileGif ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileJpeg ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileJpeg ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileJpeg ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileJpeg ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMov ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMov ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMov ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMov ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMp3 ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMp3 ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMp3 ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMp3 ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMp4 ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMp4 ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMp4 ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileMp4 ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePartial ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePartial ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePartial ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePartial ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePdf ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePdf ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePdf ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePdf ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePng ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePng ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePng ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFilePng ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileTypeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileTypeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.StorageFileTypeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.StorageFileTypeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.StorageFileTypeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.StorageFileTypeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileUnknown ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileUnknown ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileUnknown ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileUnknown ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileWebp ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileWebp ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileWebp ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StorageFileWebp ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesActivateStealthModeRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesActivateStealthModeRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesActivateStealthModeRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesActivateStealthModeRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStories ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStories ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStories ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStories ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStoriesBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStoriesBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.StoriesAllStoriesClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.StoriesAllStoriesClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.StoriesAllStoriesClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.StoriesAllStoriesClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStoriesNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStoriesNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStoriesNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesAllStoriesNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesCanSendStoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesCanSendStoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesCanSendStoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesCanSendStoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesDeleteStoriesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesDeleteStoriesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesDeleteStoriesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesDeleteStoriesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesEditStoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesEditStoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesEditStoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesEditStoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesExportStoryLinkRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesExportStoryLinkRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesExportStoryLinkRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesExportStoryLinkRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetAllReadPeerStoriesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetAllReadPeerStoriesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetAllReadPeerStoriesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetAllReadPeerStoriesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetAllStoriesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetAllStoriesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetAllStoriesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetAllStoriesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetChatsToSendRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetChatsToSendRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetChatsToSendRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetChatsToSendRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPeerMaxIDsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPeerMaxIDsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPeerMaxIDsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPeerMaxIDsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPeerStoriesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPeerStoriesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPeerStoriesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPeerStoriesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPinnedStoriesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPinnedStoriesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPinnedStoriesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetPinnedStoriesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesArchiveRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesArchiveRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesArchiveRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesArchiveRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesByIDRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesByIDRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesByIDRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesByIDRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesViewsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesViewsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesViewsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoriesViewsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoryReactionsListRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoryReactionsListRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoryReactionsListRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoryReactionsListRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoryViewsListRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoryViewsListRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoryViewsListRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesGetStoryViewsListRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesIncrementStoryViewsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesIncrementStoryViewsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesIncrementStoryViewsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesIncrementStoryViewsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesPeerStories ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesPeerStories ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesPeerStories ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesPeerStories ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesReadStoriesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesReadStoriesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesReadStoriesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesReadStoriesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesReportRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesReportRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesReportRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesReportRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesSendReactionRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesSendReactionRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesSendReactionRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesSendReactionRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesSendStoryRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesSendStoryRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesSendStoryRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesSendStoryRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStealthMode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStealthMode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStealthMode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStealthMode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStories ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStories ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStories ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStories ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryReactionsList ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryReactionsList ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryReactionsList ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryReactionsList ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryViews ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryViews ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryViews ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryViews ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryViewsList ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryViewsList ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryViewsList ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesStoryViewsList ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesToggleAllStoriesHiddenRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesToggleAllStoriesHiddenRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesToggleAllStoriesHiddenRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesToggleAllStoriesHiddenRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesTogglePeerStoriesHiddenRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesTogglePeerStoriesHiddenRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesTogglePeerStoriesHiddenRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesTogglePeerStoriesHiddenRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesTogglePinnedRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesTogglePinnedRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesTogglePinnedRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoriesTogglePinnedRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryFwdHeader ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryFwdHeader ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryFwdHeader ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryFwdHeader ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItem ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItem ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItem ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItem ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.StoryItemClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.StoryItemClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.StoryItemClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.StoryItemClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemDeleted ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemDeleted ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemDeleted ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemDeleted ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemSkipped ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemSkipped ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemSkipped ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryItemSkipped ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReaction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReaction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReaction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReaction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.StoryReactionClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.StoryReactionClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.StoryReactionClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.StoryReactionClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionPublicForward ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionPublicForward ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionPublicForward ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionPublicForward ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionPublicRepost ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionPublicRepost ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionPublicRepost ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryReactionPublicRepost ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryView ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryView ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryView ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryView ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.StoryViewClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.StoryViewClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.StoryViewClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.StoryViewClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewPublicForward ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewPublicForward ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewPublicForward ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewPublicForward ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewPublicRepost ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewPublicRepost ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewPublicRepost ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViewPublicRepost ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViews ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViews ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViews ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*StoryViews ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*String ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*String ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*String ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*String ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TestUseConfigSimpleRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TestUseConfigSimpleRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TestUseConfigSimpleRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TestUseConfigSimpleRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TestUseErrorRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TestUseErrorRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TestUseErrorRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TestUseErrorRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextAnchor ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextAnchor ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextAnchor ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextAnchor ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextBold ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextBold ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextBold ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextBold ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextConcat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextConcat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextConcat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextConcat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextEmail ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextEmail ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextEmail ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextEmail ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextFixed ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextFixed ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextFixed ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextFixed ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextImage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextImage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextImage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextImage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextItalic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextItalic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextItalic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextItalic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextMarked ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextMarked ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextMarked ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextMarked ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextPhone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextPhone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextPhone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextPhone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextPlain ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextPlain ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextPlain ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextPlain ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextStrike ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextStrike ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextStrike ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextStrike ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextSubscript ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextSubscript ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextSubscript ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextSubscript ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextSuperscript ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextSuperscript ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextSuperscript ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextSuperscript ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextUnderline ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextUnderline ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextUnderline ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextUnderline ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextWithEntities ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextWithEntities ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TextWithEntities ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TextWithEntities ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Theme ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Theme ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Theme ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Theme ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ThemeSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*ThemeSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*ThemeSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*ThemeSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeer ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeer ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeer ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeer ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBotsInline ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBotsInline ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBotsInline ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBotsInline ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBotsPM ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBotsPM ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBotsPM ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBotsPM ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryChannels ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryChannels ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryChannels ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryChannels ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.TopPeerCategoryClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.TopPeerCategoryClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.TopPeerCategoryClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.TopPeerCategoryClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryCorrespondents ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryCorrespondents ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryCorrespondents ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryCorrespondents ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryForwardChats ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryForwardChats ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryForwardChats ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryForwardChats ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryForwardUsers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryForwardUsers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryForwardUsers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryForwardUsers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryGroups ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryGroups ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryGroups ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryGroups ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryPeers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryPeers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryPeers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryPeers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryPhoneCalls ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryPhoneCalls ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryPhoneCalls ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*TopPeerCategoryPhoneCalls ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*True ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*True ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*True ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*True ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateAttachMenuBots ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateAttachMenuBots ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateAttachMenuBots ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateAttachMenuBots ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateAutoSaveSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateAutoSaveSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateAutoSaveSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateAutoSaveSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotCallbackQuery ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotCallbackQuery ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotCallbackQuery ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotCallbackQuery ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotChatBoost ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotChatBoost ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotChatBoost ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotChatBoost ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotChatInviteRequester ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotChatInviteRequester ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotChatInviteRequester ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotChatInviteRequester ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotCommands ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotCommands ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotCommands ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotCommands ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotInlineQuery ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotInlineQuery ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotInlineQuery ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotInlineQuery ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotInlineSend ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotInlineSend ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotInlineSend ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotInlineSend ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMenuButton ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMenuButton ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMenuButton ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMenuButton ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMessageReaction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMessageReaction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMessageReaction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMessageReaction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMessageReactions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMessageReactions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMessageReactions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotMessageReactions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotPrecheckoutQuery ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotPrecheckoutQuery ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotPrecheckoutQuery ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotPrecheckoutQuery ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotShippingQuery ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotShippingQuery ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotShippingQuery ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotShippingQuery ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotStopped ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotStopped ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotStopped ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotStopped ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotWebhookJSON ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotWebhookJSON ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotWebhookJSON ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotWebhookJSON ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotWebhookJSONQuery ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotWebhookJSONQuery ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotWebhookJSONQuery ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBotWebhookJSONQuery ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UpdateBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannel ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannel ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannel ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannel ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelAvailableMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelAvailableMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelAvailableMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelAvailableMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelMessageForwards ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelMessageForwards ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelMessageForwards ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelMessageForwards ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelMessageViews ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelMessageViews ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelMessageViews ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelMessageViews ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelParticipant ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelParticipant ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelParticipant ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelParticipant ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelPinnedTopic ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelPinnedTopic ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelPinnedTopic ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelPinnedTopic ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelPinnedTopics ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelPinnedTopics ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelPinnedTopics ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelPinnedTopics ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelReadMessagesContents ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelReadMessagesContents ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelReadMessagesContents ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelReadMessagesContents ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelTooLong ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelTooLong ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelTooLong ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelTooLong ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelUserTyping ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelUserTyping ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelUserTyping ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelUserTyping ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelViewForumAsMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelViewForumAsMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelViewForumAsMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelViewForumAsMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelWebPage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelWebPage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelWebPage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChannelWebPage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChat ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChat ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChat ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChat ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatDefaultBannedRights ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatDefaultBannedRights ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatDefaultBannedRights ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatDefaultBannedRights ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipant ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipant ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipant ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipant ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantAdd ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantAdd ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantAdd ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantAdd ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantAdmin ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantAdmin ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantAdmin ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantAdmin ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantDelete ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantDelete ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantDelete ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipantDelete ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipants ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipants ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipants ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatParticipants ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatUserTyping ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatUserTyping ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatUserTyping ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateChatUserTyping ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UpdateClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.UpdateClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UpdateClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.UpdateClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateConfig ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateConfig ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateConfig ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateConfig ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateContactsReset ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateContactsReset ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateContactsReset ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateContactsReset ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDCOptions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDCOptions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDCOptions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDCOptions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteChannelMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteChannelMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteChannelMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteChannelMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteScheduledMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteScheduledMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteScheduledMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDeleteScheduledMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilter ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilter ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilter ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilter ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilterOrder ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilterOrder ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilterOrder ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilterOrder ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilters ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilters ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilters ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogFilters ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogPinned ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogPinned ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogPinned ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogPinned ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogUnreadMark ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogUnreadMark ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogUnreadMark ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDialogUnreadMark ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDraftMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDraftMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDraftMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateDraftMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEditChannelMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEditChannelMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEditChannelMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEditChannelMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEditMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEditMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEditMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEditMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryptedChatTyping ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryptedChatTyping ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryptedChatTyping ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryptedChatTyping ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryptedMessagesRead ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryptedMessagesRead ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryptedMessagesRead ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryptedMessagesRead ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryption ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryption ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryption ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateEncryption ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateFavedStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateFavedStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateFavedStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateFavedStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateFolderPeers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateFolderPeers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateFolderPeers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateFolderPeers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGeoLiveViewed ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGeoLiveViewed ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGeoLiveViewed ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGeoLiveViewed ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCallConnection ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCallConnection ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCallConnection ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCallConnection ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCallParticipants ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCallParticipants ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCallParticipants ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupCallParticipants ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupInvitePrivacyForbidden ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupInvitePrivacyForbidden ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupInvitePrivacyForbidden ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateGroupInvitePrivacyForbidden ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateInlineBotCallbackQuery ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateInlineBotCallbackQuery ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateInlineBotCallbackQuery ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateInlineBotCallbackQuery ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLangPack ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLangPack ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLangPack ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLangPack ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLangPackTooLong ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLangPackTooLong ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLangPackTooLong ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLangPackTooLong ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLoginToken ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLoginToken ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLoginToken ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateLoginToken ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageExtendedMedia ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageExtendedMedia ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageExtendedMedia ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageExtendedMedia ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageID ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageID ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageID ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageID ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessagePoll ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessagePoll ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessagePoll ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessagePoll ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessagePollVote ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessagePollVote ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessagePollVote ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessagePollVote ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageReactions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageReactions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageReactions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMessageReactions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMoveStickerSetToTop ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMoveStickerSetToTop ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMoveStickerSetToTop ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateMoveStickerSetToTop ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewAuthorization ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewAuthorization ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewAuthorization ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewAuthorization ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewChannelMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewChannelMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewChannelMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewChannelMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewEncryptedMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewEncryptedMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewEncryptedMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewEncryptedMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewScheduledMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewScheduledMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewScheduledMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewScheduledMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewStickerSet ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewStickerSet ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewStickerSet ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNewStickerSet ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNotifySettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNotifySettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNotifySettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateNotifySettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerBlocked ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerBlocked ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerBlocked ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerBlocked ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerHistoryTTL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerHistoryTTL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerHistoryTTL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerHistoryTTL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerLocated ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerLocated ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerLocated ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerLocated ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerWallpaper ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerWallpaper ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerWallpaper ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePeerWallpaper ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePendingJoinRequests ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePendingJoinRequests ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePendingJoinRequests ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePendingJoinRequests ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePhoneCall ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePhoneCall ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePhoneCall ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePhoneCall ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePhoneCallSignalingData ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePhoneCallSignalingData ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePhoneCallSignalingData ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePhoneCallSignalingData ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedChannelMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedChannelMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedChannelMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedChannelMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedDialogs ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedDialogs ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedDialogs ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedDialogs ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedMessages ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedMessages ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedMessages ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePinnedMessages ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePrivacy ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePrivacy ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePrivacy ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePrivacy ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePtsChanged ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePtsChanged ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePtsChanged ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatePtsChanged ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelDiscussionInbox ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelDiscussionInbox ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelDiscussionInbox ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelDiscussionInbox ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelDiscussionOutbox ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelDiscussionOutbox ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelDiscussionOutbox ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelDiscussionOutbox ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelInbox ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelInbox ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelInbox ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelInbox ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelOutbox ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelOutbox ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelOutbox ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadChannelOutbox ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadFeaturedEmojiStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadFeaturedEmojiStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadFeaturedEmojiStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadFeaturedEmojiStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadFeaturedStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadFeaturedStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadFeaturedStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadFeaturedStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadHistoryInbox ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadHistoryInbox ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadHistoryInbox ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadHistoryInbox ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadHistoryOutbox ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadHistoryOutbox ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadHistoryOutbox ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadHistoryOutbox ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadMessagesContents ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadMessagesContents ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadMessagesContents ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadMessagesContents ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadStories ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadStories ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadStories ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateReadStories ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentEmojiStatuses ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentEmojiStatuses ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentEmojiStatuses ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentEmojiStatuses ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentReactions ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentReactions ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentReactions ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentReactions ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentStickers ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentStickers ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentStickers ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateRecentStickers ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Updates ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Updates ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Updates ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Updates ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSavedGifs ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSavedGifs ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSavedGifs ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSavedGifs ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSavedRingtones ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSavedRingtones ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSavedRingtones ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSavedRingtones ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifference ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifference ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifference ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifference ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.UpdatesChannelDifferenceClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesChannelDifferenceClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesChannelDifferenceClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesChannelDifferenceClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceTooLong ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceTooLong ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceTooLong ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesChannelDifferenceTooLong ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesCombined ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesCombined ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesCombined ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesCombined ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifference ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifference ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifference ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifference ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.UpdatesDifferenceClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesDifferenceClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesDifferenceClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.UpdatesDifferenceClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceSlice ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceSlice ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceSlice ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceSlice ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceTooLong ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceTooLong ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceTooLong ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesDifferenceTooLong ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSentStoryReaction ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSentStoryReaction ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSentStoryReaction ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateSentStoryReaction ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateServiceNotification ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateServiceNotification ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateServiceNotification ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateServiceNotification ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetChannelDifferenceRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetChannelDifferenceRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetChannelDifferenceRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetChannelDifferenceRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetDifferenceRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetDifferenceRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetDifferenceRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetDifferenceRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetStateRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetStateRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetStateRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesGetStateRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShort ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShort ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShort ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShort ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortChatMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortChatMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortChatMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortChatMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortSentMessage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortSentMessage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortSentMessage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateShortSentMessage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesState ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesState ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesState ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesState ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStickerSets ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStickerSets ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStickerSets ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStickerSets ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStickerSetsOrder ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStickerSetsOrder ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStickerSetsOrder ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStickerSetsOrder ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesTooLong ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesTooLong ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesTooLong ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdatesTooLong ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStoriesStealthMode ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStoriesStealthMode ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStoriesStealthMode ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStoriesStealthMode ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStory ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStory ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStory ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStory ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStoryID ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStoryID ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStoryID ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateStoryID ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateTheme ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateTheme ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateTheme ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateTheme ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateTranscribedAudio ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateTranscribedAudio ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateTranscribedAudio ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateTranscribedAudio ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUser ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUser ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUser ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUser ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserEmojiStatus ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserEmojiStatus ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserEmojiStatus ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserEmojiStatus ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserName ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserName ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserName ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserName ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserPhone ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserPhone ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserPhone ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserPhone ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserStatus ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserStatus ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserStatus ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserStatus ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserTyping ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserTyping ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserTyping ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateUserTyping ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateWebPage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateWebPage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateWebPage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateWebPage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateWebViewResultSent ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateWebViewResultSent ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateWebViewResultSent ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UpdateWebViewResultSent ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFileBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFileBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.UploadCDNFileClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.UploadCDNFileClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UploadCDNFileClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.UploadCDNFileClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFileReuploadNeeded ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFileReuploadNeeded ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFileReuploadNeeded ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadCDNFileReuploadNeeded ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadFileBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UploadFileBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UploadFileCDNRedirect ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadFileCDNRedirect ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadFileCDNRedirect ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadFileCDNRedirect ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UploadFileClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.UploadFileClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UploadFileClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.UploadFileClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetCDNFileHashesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetCDNFileHashesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetCDNFileHashesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetCDNFileHashesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetCDNFileRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetCDNFileRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetCDNFileRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetCDNFileRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetFileHashesRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetFileHashesRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetFileHashesRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetFileHashesRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetFileRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetFileRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetFileRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetFileRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetWebFileRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetWebFileRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetWebFileRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadGetWebFileRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadReuploadCDNFileRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadReuploadCDNFileRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadReuploadCDNFileRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadReuploadCDNFileRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadSaveBigFilePartRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadSaveBigFilePartRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadSaveBigFilePartRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadSaveBigFilePartRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadSaveFilePartRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadSaveFilePartRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadSaveFilePartRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadSaveFilePartRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadWebFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadWebFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadWebFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UploadWebFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultAccepted ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultAccepted ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultAccepted ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultAccepted ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.URLAuthResultClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.URLAuthResultClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.URLAuthResultClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.URLAuthResultClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultDefault ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultDefault ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultDefault ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultDefault ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*URLAuthResultRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*User ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*User ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*User ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*User ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UserBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.UserClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.UserClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UserClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.UserClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserClassVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserClassVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserClassVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserClassVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserFull ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserFull ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserFull ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserFull ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Username ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*Username ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*Username ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*Username ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhoto ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhoto ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhoto ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhoto ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhotoBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhotoBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.UserProfilePhotoClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.UserProfilePhotoClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UserProfilePhotoClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.UserProfilePhotoClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhotoEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhotoEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhotoEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserProfilePhotoEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersGetFullUserRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersGetFullUserRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersGetFullUserRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersGetFullUserRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersGetUsersRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersGetUsersRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersGetUsersRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersGetUsersRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersSetSecureValueErrorsRequest ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersSetSecureValueErrorsRequest ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersSetSecureValueErrorsRequest ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersSetSecureValueErrorsRequest ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.UserStatusClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.UserStatusClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.UserStatusClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.UserStatusClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusLastMonth ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusLastMonth ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusLastMonth ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusLastMonth ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusLastWeek ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusLastWeek ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusLastWeek ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusLastWeek ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusOffline ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusOffline ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusOffline ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusOffline ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusOnline ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusOnline ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusOnline ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusOnline ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusRecently ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusRecently ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusRecently ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UserStatusRecently ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersUserFull ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersUserFull ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersUserFull ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*UsersUserFull ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSize ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSize ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSize ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSize ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.VideoSizeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.VideoSizeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.VideoSizeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.VideoSizeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeEmojiMarkup ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeEmojiMarkup ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeEmojiMarkup ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeEmojiMarkup ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeStickerMarkup ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeStickerMarkup ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeStickerMarkup ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*VideoSizeStickerMarkup ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaper ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaper ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaper ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaper ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.WallPaperClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.WallPaperClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.WallPaperClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.WallPaperClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperClassVector ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperClassVector ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperClassVector ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperClassVector ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperNoFile ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperNoFile ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperNoFile ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperNoFile ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperSettings ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperSettings ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperSettings ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WallPaperSettings ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebAuthorization ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebAuthorization ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebAuthorization ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebAuthorization ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebDocument ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebDocument ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebDocument ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebDocument ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebDocumentBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*WebDocumentBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.WebDocumentClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.WebDocumentClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.WebDocumentClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.WebDocumentClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebDocumentNoProxy ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebDocumentNoProxy ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebDocumentNoProxy ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebDocumentNoProxy ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPage ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPage ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPage ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPage ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.WebPageAttributeClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.WebPageAttributeClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.WebPageAttributeClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.WebPageAttributeClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeStory ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeStory ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeStory ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeStory ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeTheme ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeTheme ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeTheme ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageAttributeTheme ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageBox ).Decode (buf *Buffer ) error
func github.com/gotd/td/tg.(*WebPageBox ).Encode (buf *Buffer ) error
func github.com/gotd/td/tg.WebPageClass .Decode (b *Buffer ) error
func github.com/gotd/td/tg.WebPageClass .DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.WebPageClass .Encode (b *Buffer ) error
func github.com/gotd/td/tg.WebPageClass .EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageEmpty ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageEmpty ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageEmpty ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageEmpty ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageNotModified ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageNotModified ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageNotModified ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPageNotModified ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPagePending ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPagePending ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPagePending ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebPagePending ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebViewMessageSent ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebViewMessageSent ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebViewMessageSent ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebViewMessageSent ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebViewResultURL ).Decode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebViewResultURL ).DecodeBare (b *Buffer ) error
func github.com/gotd/td/tg.(*WebViewResultURL ).Encode (b *Buffer ) error
func github.com/gotd/td/tg.(*WebViewResultURL ).EncodeBare (b *Buffer ) error
func github.com/gotd/td/transport.Codec .Read (r io .Reader , b *Buffer ) error
func github.com/gotd/td/transport.Codec .Write (w io .Writer , b *Buffer ) error
func github.com/gotd/td/transport.Conn .Recv (ctx context .Context , b *Buffer ) error
func github.com/gotd/td/transport.Conn .Send (ctx context .Context , b *Buffer ) error
/* 30+ unexporteds ... */ /* 30+ unexporteds: */
func github.com/gotd/td/internal/crypto.Cipher .encryptMessage (k crypto .AuthKey , plaintext *Buffer ) (crypto .EncryptedMessage , error )
func github.com/gotd/td/internal/mtproto.gzip (b *Buffer ) (*Buffer , error )
func github.com/gotd/td/internal/mtproto.(*Conn ).consumeMessage (ctx context .Context , buf *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).decryptMessage (b *Buffer ) (*crypto .EncryptedMessageData , error )
func github.com/gotd/td/internal/mtproto.(*Conn ).handleAck (b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).handleBadMsg (b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).handleContainer (msgID int64 , b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).handleFutureSalts (b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).handleGZIP (msgID int64 , b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).handleMessage (msgID int64 , b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).handlePong (b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).handleResult (b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).handleSessionCreated (b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).logWithBuffer (b *Buffer ) *zap .Logger
func github.com/gotd/td/internal/mtproto.(*Conn ).logWithType (b *Buffer ) *zap .Logger
func github.com/gotd/td/internal/mtproto.(*Conn ).newEncryptedMessage (id int64 , seq int32 , payload Encoder , b *Buffer ) error
func github.com/gotd/td/internal/mtproxy/faketls.createClientHello (b *Buffer , sessionID [32]byte , domain string , key [32]byte ) (randomOffset int )
func github.com/gotd/td/internal/proto/codec.checkAlign (b *Buffer , n int ) error
func github.com/gotd/td/internal/proto/codec.checkOutgoingMessage (b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.checkProtocolError (b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.readAbridged (r io .Reader , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.readFull (r io .Reader , seqNo int , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.readIntermediate (r io .Reader , b *Buffer , padding bool ) error
func github.com/gotd/td/internal/proto/codec.readLen (r io .Reader , b *Buffer ) (int , error )
func github.com/gotd/td/internal/proto/codec.readPaddedIntermediate (r io .Reader , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.writeAbridged (w io .Writer , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.writeFull (w io .Writer , seqNo int , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.writeIntermediate (w io .Writer , b *Buffer ) error
func github.com/gotd/td/internal/proto/codec.writePaddedIntermediate (randSource io .Reader , w io .Writer , b *Buffer ) error
func github.com/gotd/td/telegram.(*Client ).handleUpdates (b *Buffer ) error
type Decoder (interface)
Decoder can decode it's binary form from Buffer.
Methods (only one, which is exported )
( Decoder) Decode (b *Buffer ) error
Implemented By (at least 2260, in which 2257 are exported )
*Fields
*Int128
*Int256
Object (interface)
*github.com/gotd/td/internal/crypto.EncryptedMessage
*github.com/gotd/td/internal/crypto.EncryptedMessageData
*github.com/gotd/td/internal/mt.BadMsgNotification
*github.com/gotd/td/internal/mt.BadMsgNotificationBox
github.com/gotd/td/internal/mt.BadMsgNotificationClass (interface)
*github.com/gotd/td/internal/mt.BadServerSalt
*github.com/gotd/td/internal/mt.ClientDHInnerData
*github.com/gotd/td/internal/mt.DestroySessionNone
*github.com/gotd/td/internal/mt.DestroySessionOk
*github.com/gotd/td/internal/mt.DestroySessionRequest
*github.com/gotd/td/internal/mt.DestroySessionResBox
github.com/gotd/td/internal/mt.DestroySessionResClass (interface)
*github.com/gotd/td/internal/mt.DhGenFail
*github.com/gotd/td/internal/mt.DhGenOk
*github.com/gotd/td/internal/mt.DhGenRetry
*github.com/gotd/td/internal/mt.FutureSalt
*github.com/gotd/td/internal/mt.FutureSalts
*github.com/gotd/td/internal/mt.GetFutureSaltsRequest
*github.com/gotd/td/internal/mt.GzipPacked
*github.com/gotd/td/internal/mt.HTTPWaitRequest
*github.com/gotd/td/internal/mt.Message
*github.com/gotd/td/internal/mt.MsgContainer
*github.com/gotd/td/internal/mt.MsgCopy
*github.com/gotd/td/internal/mt.MsgDetailedInfo
*github.com/gotd/td/internal/mt.MsgDetailedInfoBox
github.com/gotd/td/internal/mt.MsgDetailedInfoClass (interface)
*github.com/gotd/td/internal/mt.MsgNewDetailedInfo
*github.com/gotd/td/internal/mt.MsgResendReq
*github.com/gotd/td/internal/mt.MsgsAck
*github.com/gotd/td/internal/mt.MsgsAllInfo
*github.com/gotd/td/internal/mt.MsgsStateInfo
*github.com/gotd/td/internal/mt.MsgsStateReq
*github.com/gotd/td/internal/mt.NewSessionCreated
*github.com/gotd/td/internal/mt.PingDelayDisconnectRequest
*github.com/gotd/td/internal/mt.PingRequest
*github.com/gotd/td/internal/mt.Pong
*github.com/gotd/td/internal/mt.PQInnerData
*github.com/gotd/td/internal/mt.PQInnerDataBox
github.com/gotd/td/internal/mt.PQInnerDataClass (interface)
*github.com/gotd/td/internal/mt.PQInnerDataDC
*github.com/gotd/td/internal/mt.PQInnerDataTempDC
*github.com/gotd/td/internal/mt.ReqDHParamsRequest
*github.com/gotd/td/internal/mt.ReqPqMultiRequest
*github.com/gotd/td/internal/mt.ReqPqRequest
*github.com/gotd/td/internal/mt.ResPQ
*github.com/gotd/td/internal/mt.RPCAnswerDropped
*github.com/gotd/td/internal/mt.RPCAnswerDroppedRunning
*github.com/gotd/td/internal/mt.RPCAnswerUnknown
*github.com/gotd/td/internal/mt.RPCDropAnswerBox
github.com/gotd/td/internal/mt.RPCDropAnswerClass (interface)
*github.com/gotd/td/internal/mt.RPCDropAnswerRequest
*github.com/gotd/td/internal/mt.RPCError
*github.com/gotd/td/internal/mt.RPCResult
*github.com/gotd/td/internal/mt.ServerDHInnerData
*github.com/gotd/td/internal/mt.ServerDHParamsBox
github.com/gotd/td/internal/mt.ServerDHParamsClass (interface)
*github.com/gotd/td/internal/mt.ServerDHParamsFail
*github.com/gotd/td/internal/mt.ServerDHParamsOk
*github.com/gotd/td/internal/mt.SetClientDHParamsAnswerBox
github.com/gotd/td/internal/mt.SetClientDHParamsAnswerClass (interface)
*github.com/gotd/td/internal/mt.SetClientDHParamsRequest
*github.com/gotd/td/internal/proto.GZIP
*github.com/gotd/td/internal/proto.Message
*github.com/gotd/td/internal/proto.MessageContainer
*github.com/gotd/td/internal/proto.Result
*github.com/gotd/td/internal/proto.UnencryptedMessage
*github.com/gotd/td/tg.AccessPointRule
*github.com/gotd/td/tg.AccountAcceptAuthorizationRequest
*github.com/gotd/td/tg.AccountAuthorizationForm
*github.com/gotd/td/tg.AccountAuthorizations
*github.com/gotd/td/tg.AccountAutoDownloadSettings
*github.com/gotd/td/tg.AccountAutoSaveSettings
*github.com/gotd/td/tg.AccountCancelPasswordEmailRequest
*github.com/gotd/td/tg.AccountChangeAuthorizationSettingsRequest
*github.com/gotd/td/tg.AccountChangePhoneRequest
*github.com/gotd/td/tg.AccountCheckUsernameRequest
*github.com/gotd/td/tg.AccountClearRecentEmojiStatusesRequest
*github.com/gotd/td/tg.AccountConfirmPasswordEmailRequest
*github.com/gotd/td/tg.AccountConfirmPhoneRequest
*github.com/gotd/td/tg.AccountContentSettings
*github.com/gotd/td/tg.AccountCreateThemeRequest
*github.com/gotd/td/tg.AccountDaysTTL
*github.com/gotd/td/tg.AccountDeclinePasswordResetRequest
*github.com/gotd/td/tg.AccountDeleteAccountRequest
*github.com/gotd/td/tg.AccountDeleteAutoSaveExceptionsRequest
*github.com/gotd/td/tg.AccountDeleteSecureValueRequest
*github.com/gotd/td/tg.AccountEmailVerified
*github.com/gotd/td/tg.AccountEmailVerifiedBox
github.com/gotd/td/tg.AccountEmailVerifiedClass (interface)
*github.com/gotd/td/tg.AccountEmailVerifiedLogin
*github.com/gotd/td/tg.AccountEmojiStatuses
*github.com/gotd/td/tg.AccountEmojiStatusesBox
github.com/gotd/td/tg.AccountEmojiStatusesClass (interface)
*github.com/gotd/td/tg.AccountEmojiStatusesNotModified
*github.com/gotd/td/tg.AccountFinishTakeoutSessionRequest
*github.com/gotd/td/tg.AccountGetAccountTTLRequest
*github.com/gotd/td/tg.AccountGetAllSecureValuesRequest
*github.com/gotd/td/tg.AccountGetAuthorizationFormRequest
*github.com/gotd/td/tg.AccountGetAuthorizationsRequest
*github.com/gotd/td/tg.AccountGetAutoDownloadSettingsRequest
*github.com/gotd/td/tg.AccountGetAutoSaveSettingsRequest
*github.com/gotd/td/tg.AccountGetChannelDefaultEmojiStatusesRequest
*github.com/gotd/td/tg.AccountGetChannelRestrictedStatusEmojisRequest
*github.com/gotd/td/tg.AccountGetChatThemesRequest
*github.com/gotd/td/tg.AccountGetContactSignUpNotificationRequest
*github.com/gotd/td/tg.AccountGetContentSettingsRequest
*github.com/gotd/td/tg.AccountGetDefaultBackgroundEmojisRequest
*github.com/gotd/td/tg.AccountGetDefaultEmojiStatusesRequest
*github.com/gotd/td/tg.AccountGetDefaultGroupPhotoEmojisRequest
*github.com/gotd/td/tg.AccountGetDefaultProfilePhotoEmojisRequest
*github.com/gotd/td/tg.AccountGetGlobalPrivacySettingsRequest
*github.com/gotd/td/tg.AccountGetMultiWallPapersRequest
*github.com/gotd/td/tg.AccountGetNotifyExceptionsRequest
*github.com/gotd/td/tg.AccountGetNotifySettingsRequest
*github.com/gotd/td/tg.AccountGetPasswordRequest
*github.com/gotd/td/tg.AccountGetPasswordSettingsRequest
*github.com/gotd/td/tg.AccountGetPrivacyRequest
*github.com/gotd/td/tg.AccountGetRecentEmojiStatusesRequest
*github.com/gotd/td/tg.AccountGetSavedRingtonesRequest
*github.com/gotd/td/tg.AccountGetSecureValueRequest
*github.com/gotd/td/tg.AccountGetThemeRequest
*github.com/gotd/td/tg.AccountGetThemesRequest
*github.com/gotd/td/tg.AccountGetTmpPasswordRequest
*github.com/gotd/td/tg.AccountGetWallPaperRequest
*github.com/gotd/td/tg.AccountGetWallPapersRequest
*github.com/gotd/td/tg.AccountGetWebAuthorizationsRequest
*github.com/gotd/td/tg.AccountInitTakeoutSessionRequest
*github.com/gotd/td/tg.AccountInstallThemeRequest
*github.com/gotd/td/tg.AccountInstallWallPaperRequest
*github.com/gotd/td/tg.AccountInvalidateSignInCodesRequest
*github.com/gotd/td/tg.AccountPassword
*github.com/gotd/td/tg.AccountPasswordInputSettings
*github.com/gotd/td/tg.AccountPasswordSettings
*github.com/gotd/td/tg.AccountPrivacyRules
*github.com/gotd/td/tg.AccountRegisterDeviceRequest
*github.com/gotd/td/tg.AccountReorderUsernamesRequest
*github.com/gotd/td/tg.AccountReportPeerRequest
*github.com/gotd/td/tg.AccountReportProfilePhotoRequest
*github.com/gotd/td/tg.AccountResendPasswordEmailRequest
*github.com/gotd/td/tg.AccountResetAuthorizationRequest
*github.com/gotd/td/tg.AccountResetNotifySettingsRequest
*github.com/gotd/td/tg.AccountResetPasswordFailedWait
*github.com/gotd/td/tg.AccountResetPasswordOk
*github.com/gotd/td/tg.AccountResetPasswordRequest
*github.com/gotd/td/tg.AccountResetPasswordRequestedWait
*github.com/gotd/td/tg.AccountResetPasswordResultBox
github.com/gotd/td/tg.AccountResetPasswordResultClass (interface)
*github.com/gotd/td/tg.AccountResetWallPapersRequest
*github.com/gotd/td/tg.AccountResetWebAuthorizationRequest
*github.com/gotd/td/tg.AccountResetWebAuthorizationsRequest
*github.com/gotd/td/tg.AccountSaveAutoDownloadSettingsRequest
*github.com/gotd/td/tg.AccountSaveAutoSaveSettingsRequest
*github.com/gotd/td/tg.AccountSavedRingtone
*github.com/gotd/td/tg.AccountSavedRingtoneBox
github.com/gotd/td/tg.AccountSavedRingtoneClass (interface)
*github.com/gotd/td/tg.AccountSavedRingtoneConverted
*github.com/gotd/td/tg.AccountSavedRingtones
*github.com/gotd/td/tg.AccountSavedRingtonesBox
github.com/gotd/td/tg.AccountSavedRingtonesClass (interface)
*github.com/gotd/td/tg.AccountSavedRingtonesNotModified
*github.com/gotd/td/tg.AccountSaveRingtoneRequest
*github.com/gotd/td/tg.AccountSaveSecureValueRequest
*github.com/gotd/td/tg.AccountSaveThemeRequest
*github.com/gotd/td/tg.AccountSaveWallPaperRequest
*github.com/gotd/td/tg.AccountSendChangePhoneCodeRequest
*github.com/gotd/td/tg.AccountSendConfirmPhoneCodeRequest
*github.com/gotd/td/tg.AccountSendVerifyEmailCodeRequest
*github.com/gotd/td/tg.AccountSendVerifyPhoneCodeRequest
*github.com/gotd/td/tg.AccountSentEmailCode
*github.com/gotd/td/tg.AccountSetAccountTTLRequest
*github.com/gotd/td/tg.AccountSetAuthorizationTTLRequest
*github.com/gotd/td/tg.AccountSetContactSignUpNotificationRequest
*github.com/gotd/td/tg.AccountSetContentSettingsRequest
*github.com/gotd/td/tg.AccountSetGlobalPrivacySettingsRequest
*github.com/gotd/td/tg.AccountSetPrivacyRequest
*github.com/gotd/td/tg.AccountTakeout
*github.com/gotd/td/tg.AccountThemes
*github.com/gotd/td/tg.AccountThemesBox
github.com/gotd/td/tg.AccountThemesClass (interface)
*github.com/gotd/td/tg.AccountThemesNotModified
*github.com/gotd/td/tg.AccountTmpPassword
*github.com/gotd/td/tg.AccountToggleUsernameRequest
*github.com/gotd/td/tg.AccountUnregisterDeviceRequest
*github.com/gotd/td/tg.AccountUpdateColorRequest
*github.com/gotd/td/tg.AccountUpdateDeviceLockedRequest
*github.com/gotd/td/tg.AccountUpdateEmojiStatusRequest
*github.com/gotd/td/tg.AccountUpdateNotifySettingsRequest
*github.com/gotd/td/tg.AccountUpdatePasswordSettingsRequest
*github.com/gotd/td/tg.AccountUpdateProfileRequest
*github.com/gotd/td/tg.AccountUpdateStatusRequest
*github.com/gotd/td/tg.AccountUpdateThemeRequest
*github.com/gotd/td/tg.AccountUpdateUsernameRequest
*github.com/gotd/td/tg.AccountUploadRingtoneRequest
*github.com/gotd/td/tg.AccountUploadThemeRequest
*github.com/gotd/td/tg.AccountUploadWallPaperRequest
*github.com/gotd/td/tg.AccountVerifyEmailRequest
*github.com/gotd/td/tg.AccountVerifyPhoneRequest
*github.com/gotd/td/tg.AccountWallPapers
*github.com/gotd/td/tg.AccountWallPapersBox
github.com/gotd/td/tg.AccountWallPapersClass (interface)
*github.com/gotd/td/tg.AccountWallPapersNotModified
*github.com/gotd/td/tg.AccountWebAuthorizations
*github.com/gotd/td/tg.AppWebViewResultURL
*github.com/gotd/td/tg.AttachMenuBot
*github.com/gotd/td/tg.AttachMenuBotIcon
*github.com/gotd/td/tg.AttachMenuBotIconColor
*github.com/gotd/td/tg.AttachMenuBots
*github.com/gotd/td/tg.AttachMenuBotsBot
*github.com/gotd/td/tg.AttachMenuBotsBox
github.com/gotd/td/tg.AttachMenuBotsClass (interface)
*github.com/gotd/td/tg.AttachMenuBotsNotModified
*github.com/gotd/td/tg.AttachMenuPeerTypeBotPM
*github.com/gotd/td/tg.AttachMenuPeerTypeBox
*github.com/gotd/td/tg.AttachMenuPeerTypeBroadcast
*github.com/gotd/td/tg.AttachMenuPeerTypeChat
github.com/gotd/td/tg.AttachMenuPeerTypeClass (interface)
*github.com/gotd/td/tg.AttachMenuPeerTypePM
*github.com/gotd/td/tg.AttachMenuPeerTypeSameBotPM
*github.com/gotd/td/tg.AuthAcceptLoginTokenRequest
*github.com/gotd/td/tg.AuthAuthorization
*github.com/gotd/td/tg.AuthAuthorizationBox
github.com/gotd/td/tg.AuthAuthorizationClass (interface)
*github.com/gotd/td/tg.AuthAuthorizationSignUpRequired
*github.com/gotd/td/tg.AuthBindTempAuthKeyRequest
*github.com/gotd/td/tg.AuthCancelCodeRequest
*github.com/gotd/td/tg.AuthCheckPasswordRequest
*github.com/gotd/td/tg.AuthCheckRecoveryPasswordRequest
*github.com/gotd/td/tg.AuthCodeTypeBox
*github.com/gotd/td/tg.AuthCodeTypeCall
github.com/gotd/td/tg.AuthCodeTypeClass (interface)
*github.com/gotd/td/tg.AuthCodeTypeFlashCall
*github.com/gotd/td/tg.AuthCodeTypeFragmentSMS
*github.com/gotd/td/tg.AuthCodeTypeMissedCall
*github.com/gotd/td/tg.AuthCodeTypeSMS
*github.com/gotd/td/tg.AuthDropTempAuthKeysRequest
*github.com/gotd/td/tg.AuthExportAuthorizationRequest
*github.com/gotd/td/tg.AuthExportedAuthorization
*github.com/gotd/td/tg.AuthExportLoginTokenRequest
*github.com/gotd/td/tg.AuthImportAuthorizationRequest
*github.com/gotd/td/tg.AuthImportBotAuthorizationRequest
*github.com/gotd/td/tg.AuthImportLoginTokenRequest
*github.com/gotd/td/tg.AuthImportWebTokenAuthorizationRequest
*github.com/gotd/td/tg.AuthLoggedOut
*github.com/gotd/td/tg.AuthLoginToken
*github.com/gotd/td/tg.AuthLoginTokenBox
github.com/gotd/td/tg.AuthLoginTokenClass (interface)
*github.com/gotd/td/tg.AuthLoginTokenMigrateTo
*github.com/gotd/td/tg.AuthLoginTokenSuccess
*github.com/gotd/td/tg.AuthLogOutRequest
*github.com/gotd/td/tg.Authorization
*github.com/gotd/td/tg.AuthPasswordRecovery
*github.com/gotd/td/tg.AuthRecoverPasswordRequest
*github.com/gotd/td/tg.AuthRequestFirebaseSMSRequest
*github.com/gotd/td/tg.AuthRequestPasswordRecoveryRequest
*github.com/gotd/td/tg.AuthResendCodeRequest
*github.com/gotd/td/tg.AuthResetAuthorizationsRequest
*github.com/gotd/td/tg.AuthResetLoginEmailRequest
*github.com/gotd/td/tg.AuthSendCodeRequest
*github.com/gotd/td/tg.AuthSentCode
*github.com/gotd/td/tg.AuthSentCodeBox
github.com/gotd/td/tg.AuthSentCodeClass (interface)
*github.com/gotd/td/tg.AuthSentCodeSuccess
*github.com/gotd/td/tg.AuthSentCodeTypeApp
*github.com/gotd/td/tg.AuthSentCodeTypeBox
*github.com/gotd/td/tg.AuthSentCodeTypeCall
github.com/gotd/td/tg.AuthSentCodeTypeClass (interface)
*github.com/gotd/td/tg.AuthSentCodeTypeEmailCode
*github.com/gotd/td/tg.AuthSentCodeTypeFirebaseSMS
*github.com/gotd/td/tg.AuthSentCodeTypeFlashCall
*github.com/gotd/td/tg.AuthSentCodeTypeFragmentSMS
*github.com/gotd/td/tg.AuthSentCodeTypeMissedCall
*github.com/gotd/td/tg.AuthSentCodeTypeSetUpEmailRequired
*github.com/gotd/td/tg.AuthSentCodeTypeSMS
*github.com/gotd/td/tg.AuthSignInRequest
*github.com/gotd/td/tg.AuthSignUpRequest
*github.com/gotd/td/tg.AutoDownloadSettings
*github.com/gotd/td/tg.AutoSaveException
*github.com/gotd/td/tg.AutoSaveSettings
*github.com/gotd/td/tg.AvailableReaction
*github.com/gotd/td/tg.BankCardOpenURL
*github.com/gotd/td/tg.BaseThemeArctic
*github.com/gotd/td/tg.BaseThemeBox
github.com/gotd/td/tg.BaseThemeClass (interface)
*github.com/gotd/td/tg.BaseThemeClassic
*github.com/gotd/td/tg.BaseThemeDay
*github.com/gotd/td/tg.BaseThemeNight
*github.com/gotd/td/tg.BaseThemeTinted
*github.com/gotd/td/tg.BoolBox
github.com/gotd/td/tg.BoolClass (interface)
*github.com/gotd/td/tg.BoolFalse
*github.com/gotd/td/tg.BoolTrue
*github.com/gotd/td/tg.Boost
*github.com/gotd/td/tg.BotApp
*github.com/gotd/td/tg.BotAppBox
github.com/gotd/td/tg.BotAppClass (interface)
*github.com/gotd/td/tg.BotAppNotModified
*github.com/gotd/td/tg.BotCommand
*github.com/gotd/td/tg.BotCommandScopeBox
*github.com/gotd/td/tg.BotCommandScopeChatAdmins
*github.com/gotd/td/tg.BotCommandScopeChats
github.com/gotd/td/tg.BotCommandScopeClass (interface)
*github.com/gotd/td/tg.BotCommandScopeDefault
*github.com/gotd/td/tg.BotCommandScopePeer
*github.com/gotd/td/tg.BotCommandScopePeerAdmins
*github.com/gotd/td/tg.BotCommandScopePeerUser
*github.com/gotd/td/tg.BotCommandScopeUsers
*github.com/gotd/td/tg.BotCommandVector
*github.com/gotd/td/tg.BotInfo
*github.com/gotd/td/tg.BotInlineMediaResult
*github.com/gotd/td/tg.BotInlineMessageBox
github.com/gotd/td/tg.BotInlineMessageClass (interface)
*github.com/gotd/td/tg.BotInlineMessageMediaAuto
*github.com/gotd/td/tg.BotInlineMessageMediaContact
*github.com/gotd/td/tg.BotInlineMessageMediaGeo
*github.com/gotd/td/tg.BotInlineMessageMediaInvoice
*github.com/gotd/td/tg.BotInlineMessageMediaVenue
*github.com/gotd/td/tg.BotInlineMessageMediaWebPage
*github.com/gotd/td/tg.BotInlineMessageText
*github.com/gotd/td/tg.BotInlineResult
*github.com/gotd/td/tg.BotInlineResultBox
github.com/gotd/td/tg.BotInlineResultClass (interface)
*github.com/gotd/td/tg.BotMenuButton
*github.com/gotd/td/tg.BotMenuButtonBox
github.com/gotd/td/tg.BotMenuButtonClass (interface)
*github.com/gotd/td/tg.BotMenuButtonCommands
*github.com/gotd/td/tg.BotMenuButtonDefault
*github.com/gotd/td/tg.BotsAllowSendMessageRequest
*github.com/gotd/td/tg.BotsAnswerWebhookJSONQueryRequest
*github.com/gotd/td/tg.BotsBotInfo
*github.com/gotd/td/tg.BotsCanSendMessageRequest
*github.com/gotd/td/tg.BotsGetBotCommandsRequest
*github.com/gotd/td/tg.BotsGetBotInfoRequest
*github.com/gotd/td/tg.BotsGetBotMenuButtonRequest
*github.com/gotd/td/tg.BotsInvokeWebViewCustomMethodRequest
*github.com/gotd/td/tg.BotsReorderUsernamesRequest
*github.com/gotd/td/tg.BotsResetBotCommandsRequest
*github.com/gotd/td/tg.BotsSendCustomRequestRequest
*github.com/gotd/td/tg.BotsSetBotBroadcastDefaultAdminRightsRequest
*github.com/gotd/td/tg.BotsSetBotCommandsRequest
*github.com/gotd/td/tg.BotsSetBotGroupDefaultAdminRightsRequest
*github.com/gotd/td/tg.BotsSetBotInfoRequest
*github.com/gotd/td/tg.BotsSetBotMenuButtonRequest
*github.com/gotd/td/tg.BotsToggleUsernameRequest
*github.com/gotd/td/tg.Bytes
*github.com/gotd/td/tg.CDNConfig
*github.com/gotd/td/tg.CDNPublicKey
*github.com/gotd/td/tg.Channel
*github.com/gotd/td/tg.ChannelAdminLogEvent
*github.com/gotd/td/tg.ChannelAdminLogEventActionBox
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeAbout
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeAvailableReactions
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeEmojiStatus
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeHistoryTTL
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeLinkedChat
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeLocation
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangePeerColor
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangePhoto
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeProfilePeerColor
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeStickerSet
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeTitle
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeUsername
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeUsernames
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeWallpaper
github.com/gotd/td/tg.ChannelAdminLogEventActionClass (interface)
*github.com/gotd/td/tg.ChannelAdminLogEventActionCreateTopic
*github.com/gotd/td/tg.ChannelAdminLogEventActionDefaultBannedRights
*github.com/gotd/td/tg.ChannelAdminLogEventActionDeleteMessage
*github.com/gotd/td/tg.ChannelAdminLogEventActionDeleteTopic
*github.com/gotd/td/tg.ChannelAdminLogEventActionDiscardGroupCall
*github.com/gotd/td/tg.ChannelAdminLogEventActionEditMessage
*github.com/gotd/td/tg.ChannelAdminLogEventActionEditTopic
*github.com/gotd/td/tg.ChannelAdminLogEventActionExportedInviteDelete
*github.com/gotd/td/tg.ChannelAdminLogEventActionExportedInviteEdit
*github.com/gotd/td/tg.ChannelAdminLogEventActionExportedInviteRevoke
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantInvite
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantJoin
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantJoinByInvite
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantJoinByRequest
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantLeave
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantMute
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantToggleAdmin
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantToggleBan
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantUnmute
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantVolume
*github.com/gotd/td/tg.ChannelAdminLogEventActionPinTopic
*github.com/gotd/td/tg.ChannelAdminLogEventActionSendMessage
*github.com/gotd/td/tg.ChannelAdminLogEventActionStartGroupCall
*github.com/gotd/td/tg.ChannelAdminLogEventActionStopPoll
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleAntiSpam
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleForum
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleGroupCallSetting
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleInvites
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleNoForwards
*github.com/gotd/td/tg.ChannelAdminLogEventActionTogglePreHistoryHidden
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleSignatures
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleSlowMode
*github.com/gotd/td/tg.ChannelAdminLogEventActionUpdatePinned
*github.com/gotd/td/tg.ChannelAdminLogEventsFilter
*github.com/gotd/td/tg.ChannelForbidden
*github.com/gotd/td/tg.ChannelFull
*github.com/gotd/td/tg.ChannelLocation
*github.com/gotd/td/tg.ChannelLocationBox
github.com/gotd/td/tg.ChannelLocationClass (interface)
*github.com/gotd/td/tg.ChannelLocationEmpty
*github.com/gotd/td/tg.ChannelMessagesFilter
*github.com/gotd/td/tg.ChannelMessagesFilterBox
github.com/gotd/td/tg.ChannelMessagesFilterClass (interface)
*github.com/gotd/td/tg.ChannelMessagesFilterEmpty
*github.com/gotd/td/tg.ChannelParticipant
*github.com/gotd/td/tg.ChannelParticipantAdmin
*github.com/gotd/td/tg.ChannelParticipantBanned
*github.com/gotd/td/tg.ChannelParticipantBox
github.com/gotd/td/tg.ChannelParticipantClass (interface)
*github.com/gotd/td/tg.ChannelParticipantCreator
*github.com/gotd/td/tg.ChannelParticipantLeft
*github.com/gotd/td/tg.ChannelParticipantSelf
*github.com/gotd/td/tg.ChannelParticipantsAdmins
*github.com/gotd/td/tg.ChannelParticipantsBanned
*github.com/gotd/td/tg.ChannelParticipantsBots
*github.com/gotd/td/tg.ChannelParticipantsContacts
*github.com/gotd/td/tg.ChannelParticipantsFilterBox
github.com/gotd/td/tg.ChannelParticipantsFilterClass (interface)
*github.com/gotd/td/tg.ChannelParticipantsKicked
*github.com/gotd/td/tg.ChannelParticipantsMentions
*github.com/gotd/td/tg.ChannelParticipantsRecent
*github.com/gotd/td/tg.ChannelParticipantsSearch
*github.com/gotd/td/tg.ChannelsAdminLogResults
*github.com/gotd/td/tg.ChannelsChannelParticipant
*github.com/gotd/td/tg.ChannelsChannelParticipants
*github.com/gotd/td/tg.ChannelsChannelParticipantsBox
github.com/gotd/td/tg.ChannelsChannelParticipantsClass (interface)
*github.com/gotd/td/tg.ChannelsChannelParticipantsNotModified
*github.com/gotd/td/tg.ChannelsCheckUsernameRequest
*github.com/gotd/td/tg.ChannelsClickSponsoredMessageRequest
*github.com/gotd/td/tg.ChannelsConvertToGigagroupRequest
*github.com/gotd/td/tg.ChannelsCreateChannelRequest
*github.com/gotd/td/tg.ChannelsCreateForumTopicRequest
*github.com/gotd/td/tg.ChannelsDeactivateAllUsernamesRequest
*github.com/gotd/td/tg.ChannelsDeleteChannelRequest
*github.com/gotd/td/tg.ChannelsDeleteHistoryRequest
*github.com/gotd/td/tg.ChannelsDeleteMessagesRequest
*github.com/gotd/td/tg.ChannelsDeleteParticipantHistoryRequest
*github.com/gotd/td/tg.ChannelsDeleteTopicHistoryRequest
*github.com/gotd/td/tg.ChannelsEditAdminRequest
*github.com/gotd/td/tg.ChannelsEditBannedRequest
*github.com/gotd/td/tg.ChannelsEditCreatorRequest
*github.com/gotd/td/tg.ChannelsEditForumTopicRequest
*github.com/gotd/td/tg.ChannelsEditLocationRequest
*github.com/gotd/td/tg.ChannelsEditPhotoRequest
*github.com/gotd/td/tg.ChannelsEditTitleRequest
*github.com/gotd/td/tg.ChannelsExportMessageLinkRequest
*github.com/gotd/td/tg.ChannelsGetAdminedPublicChannelsRequest
*github.com/gotd/td/tg.ChannelsGetAdminLogRequest
*github.com/gotd/td/tg.ChannelsGetChannelRecommendationsRequest
*github.com/gotd/td/tg.ChannelsGetChannelsRequest
*github.com/gotd/td/tg.ChannelsGetForumTopicsByIDRequest
*github.com/gotd/td/tg.ChannelsGetForumTopicsRequest
*github.com/gotd/td/tg.ChannelsGetFullChannelRequest
*github.com/gotd/td/tg.ChannelsGetGroupsForDiscussionRequest
*github.com/gotd/td/tg.ChannelsGetInactiveChannelsRequest
*github.com/gotd/td/tg.ChannelsGetLeftChannelsRequest
*github.com/gotd/td/tg.ChannelsGetMessagesRequest
*github.com/gotd/td/tg.ChannelsGetParticipantRequest
*github.com/gotd/td/tg.ChannelsGetParticipantsRequest
*github.com/gotd/td/tg.ChannelsGetSendAsRequest
*github.com/gotd/td/tg.ChannelsGetSponsoredMessagesRequest
*github.com/gotd/td/tg.ChannelsInviteToChannelRequest
*github.com/gotd/td/tg.ChannelsJoinChannelRequest
*github.com/gotd/td/tg.ChannelsLeaveChannelRequest
*github.com/gotd/td/tg.ChannelsReadHistoryRequest
*github.com/gotd/td/tg.ChannelsReadMessageContentsRequest
*github.com/gotd/td/tg.ChannelsReorderPinnedForumTopicsRequest
*github.com/gotd/td/tg.ChannelsReorderUsernamesRequest
*github.com/gotd/td/tg.ChannelsReportAntiSpamFalsePositiveRequest
*github.com/gotd/td/tg.ChannelsReportSpamRequest
*github.com/gotd/td/tg.ChannelsSendAsPeers
*github.com/gotd/td/tg.ChannelsSetDiscussionGroupRequest
*github.com/gotd/td/tg.ChannelsSetStickersRequest
*github.com/gotd/td/tg.ChannelsToggleAntiSpamRequest
*github.com/gotd/td/tg.ChannelsToggleForumRequest
*github.com/gotd/td/tg.ChannelsToggleJoinRequestRequest
*github.com/gotd/td/tg.ChannelsToggleJoinToSendRequest
*github.com/gotd/td/tg.ChannelsToggleParticipantsHiddenRequest
*github.com/gotd/td/tg.ChannelsTogglePreHistoryHiddenRequest
*github.com/gotd/td/tg.ChannelsToggleSignaturesRequest
*github.com/gotd/td/tg.ChannelsToggleSlowModeRequest
*github.com/gotd/td/tg.ChannelsToggleUsernameRequest
*github.com/gotd/td/tg.ChannelsToggleViewForumAsMessagesRequest
*github.com/gotd/td/tg.ChannelsUpdateColorRequest
*github.com/gotd/td/tg.ChannelsUpdateEmojiStatusRequest
*github.com/gotd/td/tg.ChannelsUpdatePinnedForumTopicRequest
*github.com/gotd/td/tg.ChannelsUpdateUsernameRequest
*github.com/gotd/td/tg.ChannelsViewSponsoredMessageRequest
*github.com/gotd/td/tg.Chat
*github.com/gotd/td/tg.ChatAdminRights
*github.com/gotd/td/tg.ChatAdminWithInvites
*github.com/gotd/td/tg.ChatBannedRights
*github.com/gotd/td/tg.ChatBox
github.com/gotd/td/tg.ChatClass (interface)
*github.com/gotd/td/tg.ChatEmpty
*github.com/gotd/td/tg.ChatForbidden
*github.com/gotd/td/tg.ChatFull
*github.com/gotd/td/tg.ChatFullBox
github.com/gotd/td/tg.ChatFullClass (interface)
*github.com/gotd/td/tg.ChatInvite
*github.com/gotd/td/tg.ChatInviteAlready
*github.com/gotd/td/tg.ChatInviteBox
github.com/gotd/td/tg.ChatInviteClass (interface)
*github.com/gotd/td/tg.ChatInviteExported
*github.com/gotd/td/tg.ChatInviteImporter
*github.com/gotd/td/tg.ChatInvitePeek
*github.com/gotd/td/tg.ChatInvitePublicJoinRequests
*github.com/gotd/td/tg.ChatlistsChatlistInvite
*github.com/gotd/td/tg.ChatlistsChatlistInviteAlready
*github.com/gotd/td/tg.ChatlistsChatlistInviteBox
github.com/gotd/td/tg.ChatlistsChatlistInviteClass (interface)
*github.com/gotd/td/tg.ChatlistsChatlistUpdates
*github.com/gotd/td/tg.ChatlistsCheckChatlistInviteRequest
*github.com/gotd/td/tg.ChatlistsDeleteExportedInviteRequest
*github.com/gotd/td/tg.ChatlistsEditExportedInviteRequest
*github.com/gotd/td/tg.ChatlistsExportChatlistInviteRequest
*github.com/gotd/td/tg.ChatlistsExportedChatlistInvite
*github.com/gotd/td/tg.ChatlistsExportedInvites
*github.com/gotd/td/tg.ChatlistsGetChatlistUpdatesRequest
*github.com/gotd/td/tg.ChatlistsGetExportedInvitesRequest
*github.com/gotd/td/tg.ChatlistsGetLeaveChatlistSuggestionsRequest
*github.com/gotd/td/tg.ChatlistsHideChatlistUpdatesRequest
*github.com/gotd/td/tg.ChatlistsJoinChatlistInviteRequest
*github.com/gotd/td/tg.ChatlistsJoinChatlistUpdatesRequest
*github.com/gotd/td/tg.ChatlistsLeaveChatlistRequest
*github.com/gotd/td/tg.ChatOnlines
*github.com/gotd/td/tg.ChatParticipant
*github.com/gotd/td/tg.ChatParticipantAdmin
*github.com/gotd/td/tg.ChatParticipantBox
github.com/gotd/td/tg.ChatParticipantClass (interface)
*github.com/gotd/td/tg.ChatParticipantCreator
*github.com/gotd/td/tg.ChatParticipants
*github.com/gotd/td/tg.ChatParticipantsBox
github.com/gotd/td/tg.ChatParticipantsClass (interface)
*github.com/gotd/td/tg.ChatParticipantsForbidden
*github.com/gotd/td/tg.ChatPhoto
*github.com/gotd/td/tg.ChatPhotoBox
github.com/gotd/td/tg.ChatPhotoClass (interface)
*github.com/gotd/td/tg.ChatPhotoEmpty
*github.com/gotd/td/tg.ChatReactionsAll
*github.com/gotd/td/tg.ChatReactionsBox
github.com/gotd/td/tg.ChatReactionsClass (interface)
*github.com/gotd/td/tg.ChatReactionsNone
*github.com/gotd/td/tg.ChatReactionsSome
*github.com/gotd/td/tg.CodeSettings
*github.com/gotd/td/tg.Config
*github.com/gotd/td/tg.Contact
*github.com/gotd/td/tg.ContactStatus
*github.com/gotd/td/tg.ContactStatusVector
*github.com/gotd/td/tg.ContactsAcceptContactRequest
*github.com/gotd/td/tg.ContactsAddContactRequest
*github.com/gotd/td/tg.ContactsBlocked
*github.com/gotd/td/tg.ContactsBlockedBox
github.com/gotd/td/tg.ContactsBlockedClass (interface)
*github.com/gotd/td/tg.ContactsBlockedSlice
*github.com/gotd/td/tg.ContactsBlockFromRepliesRequest
*github.com/gotd/td/tg.ContactsBlockRequest
*github.com/gotd/td/tg.ContactsContacts
*github.com/gotd/td/tg.ContactsContactsBox
github.com/gotd/td/tg.ContactsContactsClass (interface)
*github.com/gotd/td/tg.ContactsContactsNotModified
*github.com/gotd/td/tg.ContactsDeleteByPhonesRequest
*github.com/gotd/td/tg.ContactsDeleteContactsRequest
*github.com/gotd/td/tg.ContactsEditCloseFriendsRequest
*github.com/gotd/td/tg.ContactsExportContactTokenRequest
*github.com/gotd/td/tg.ContactsFound
*github.com/gotd/td/tg.ContactsGetBlockedRequest
*github.com/gotd/td/tg.ContactsGetContactIDsRequest
*github.com/gotd/td/tg.ContactsGetContactsRequest
*github.com/gotd/td/tg.ContactsGetLocatedRequest
*github.com/gotd/td/tg.ContactsGetSavedRequest
*github.com/gotd/td/tg.ContactsGetStatusesRequest
*github.com/gotd/td/tg.ContactsGetTopPeersRequest
*github.com/gotd/td/tg.ContactsImportContactsRequest
*github.com/gotd/td/tg.ContactsImportContactTokenRequest
*github.com/gotd/td/tg.ContactsImportedContacts
*github.com/gotd/td/tg.ContactsResetSavedRequest
*github.com/gotd/td/tg.ContactsResetTopPeerRatingRequest
*github.com/gotd/td/tg.ContactsResolvedPeer
*github.com/gotd/td/tg.ContactsResolvePhoneRequest
*github.com/gotd/td/tg.ContactsResolveUsernameRequest
*github.com/gotd/td/tg.ContactsSearchRequest
*github.com/gotd/td/tg.ContactsSetBlockedRequest
*github.com/gotd/td/tg.ContactsToggleTopPeersRequest
*github.com/gotd/td/tg.ContactsTopPeers
*github.com/gotd/td/tg.ContactsTopPeersBox
github.com/gotd/td/tg.ContactsTopPeersClass (interface)
*github.com/gotd/td/tg.ContactsTopPeersDisabled
*github.com/gotd/td/tg.ContactsTopPeersNotModified
*github.com/gotd/td/tg.ContactsUnblockRequest
*github.com/gotd/td/tg.DataJSON
*github.com/gotd/td/tg.DCOption
*github.com/gotd/td/tg.DefaultHistoryTTL
*github.com/gotd/td/tg.Dialog
*github.com/gotd/td/tg.DialogBox
github.com/gotd/td/tg.DialogClass (interface)
*github.com/gotd/td/tg.DialogFilter
*github.com/gotd/td/tg.DialogFilterBox
*github.com/gotd/td/tg.DialogFilterChatlist
github.com/gotd/td/tg.DialogFilterClass (interface)
*github.com/gotd/td/tg.DialogFilterClassVector
*github.com/gotd/td/tg.DialogFilterDefault
*github.com/gotd/td/tg.DialogFilterSuggested
*github.com/gotd/td/tg.DialogFilterSuggestedVector
*github.com/gotd/td/tg.DialogFolder
*github.com/gotd/td/tg.DialogPeer
*github.com/gotd/td/tg.DialogPeerBox
github.com/gotd/td/tg.DialogPeerClass (interface)
*github.com/gotd/td/tg.DialogPeerClassVector
*github.com/gotd/td/tg.DialogPeerFolder
*github.com/gotd/td/tg.Document
*github.com/gotd/td/tg.DocumentAttributeAnimated
*github.com/gotd/td/tg.DocumentAttributeAudio
*github.com/gotd/td/tg.DocumentAttributeBox
github.com/gotd/td/tg.DocumentAttributeClass (interface)
*github.com/gotd/td/tg.DocumentAttributeCustomEmoji
*github.com/gotd/td/tg.DocumentAttributeFilename
*github.com/gotd/td/tg.DocumentAttributeHasStickers
*github.com/gotd/td/tg.DocumentAttributeImageSize
*github.com/gotd/td/tg.DocumentAttributeSticker
*github.com/gotd/td/tg.DocumentAttributeVideo
*github.com/gotd/td/tg.DocumentBox
github.com/gotd/td/tg.DocumentClass (interface)
*github.com/gotd/td/tg.DocumentClassVector
*github.com/gotd/td/tg.DocumentEmpty
*github.com/gotd/td/tg.Double
*github.com/gotd/td/tg.DraftMessage
*github.com/gotd/td/tg.DraftMessageBox
github.com/gotd/td/tg.DraftMessageClass (interface)
*github.com/gotd/td/tg.DraftMessageEmpty
*github.com/gotd/td/tg.EmailVerificationApple
*github.com/gotd/td/tg.EmailVerificationBox
github.com/gotd/td/tg.EmailVerificationClass (interface)
*github.com/gotd/td/tg.EmailVerificationCode
*github.com/gotd/td/tg.EmailVerificationGoogle
*github.com/gotd/td/tg.EmailVerifyPurposeBox
github.com/gotd/td/tg.EmailVerifyPurposeClass (interface)
*github.com/gotd/td/tg.EmailVerifyPurposeLoginChange
*github.com/gotd/td/tg.EmailVerifyPurposeLoginSetup
*github.com/gotd/td/tg.EmailVerifyPurposePassport
*github.com/gotd/td/tg.EmojiGroup
*github.com/gotd/td/tg.EmojiKeyword
*github.com/gotd/td/tg.EmojiKeywordBox
github.com/gotd/td/tg.EmojiKeywordClass (interface)
*github.com/gotd/td/tg.EmojiKeywordDeleted
*github.com/gotd/td/tg.EmojiKeywordsDifference
*github.com/gotd/td/tg.EmojiLanguage
*github.com/gotd/td/tg.EmojiLanguageVector
*github.com/gotd/td/tg.EmojiList
*github.com/gotd/td/tg.EmojiListBox
github.com/gotd/td/tg.EmojiListClass (interface)
*github.com/gotd/td/tg.EmojiListNotModified
*github.com/gotd/td/tg.EmojiStatus
*github.com/gotd/td/tg.EmojiStatusBox
github.com/gotd/td/tg.EmojiStatusClass (interface)
*github.com/gotd/td/tg.EmojiStatusEmpty
*github.com/gotd/td/tg.EmojiStatusUntil
*github.com/gotd/td/tg.EmojiURL
*github.com/gotd/td/tg.EncryptedChat
*github.com/gotd/td/tg.EncryptedChatBox
github.com/gotd/td/tg.EncryptedChatClass (interface)
*github.com/gotd/td/tg.EncryptedChatDiscarded
*github.com/gotd/td/tg.EncryptedChatEmpty
*github.com/gotd/td/tg.EncryptedChatRequested
*github.com/gotd/td/tg.EncryptedChatWaiting
*github.com/gotd/td/tg.EncryptedFile
*github.com/gotd/td/tg.EncryptedFileBox
github.com/gotd/td/tg.EncryptedFileClass (interface)
*github.com/gotd/td/tg.EncryptedFileEmpty
*github.com/gotd/td/tg.EncryptedMessage
*github.com/gotd/td/tg.EncryptedMessageBox
github.com/gotd/td/tg.EncryptedMessageClass (interface)
*github.com/gotd/td/tg.EncryptedMessageService
*github.com/gotd/td/tg.Error
*github.com/gotd/td/tg.ExportedChatInviteBox
github.com/gotd/td/tg.ExportedChatInviteClass (interface)
*github.com/gotd/td/tg.ExportedChatlistInvite
*github.com/gotd/td/tg.ExportedContactToken
*github.com/gotd/td/tg.ExportedMessageLink
*github.com/gotd/td/tg.ExportedStoryLink
*github.com/gotd/td/tg.FileHash
*github.com/gotd/td/tg.FileHashVector
*github.com/gotd/td/tg.Folder
*github.com/gotd/td/tg.FolderPeer
*github.com/gotd/td/tg.FoldersEditPeerFoldersRequest
*github.com/gotd/td/tg.ForumTopic
*github.com/gotd/td/tg.ForumTopicBox
github.com/gotd/td/tg.ForumTopicClass (interface)
*github.com/gotd/td/tg.ForumTopicDeleted
github.com/gotd/td/tg.FullChat (interface)
*github.com/gotd/td/tg.Game
*github.com/gotd/td/tg.GeoPoint
*github.com/gotd/td/tg.GeoPointBox
github.com/gotd/td/tg.GeoPointClass (interface)
*github.com/gotd/td/tg.GeoPointEmpty
*github.com/gotd/td/tg.GlobalPrivacySettings
*github.com/gotd/td/tg.GroupCall
*github.com/gotd/td/tg.GroupCallBox
github.com/gotd/td/tg.GroupCallClass (interface)
*github.com/gotd/td/tg.GroupCallDiscarded
*github.com/gotd/td/tg.GroupCallParticipant
*github.com/gotd/td/tg.GroupCallParticipantVideo
*github.com/gotd/td/tg.GroupCallParticipantVideoSourceGroup
*github.com/gotd/td/tg.GroupCallStreamChannel
*github.com/gotd/td/tg.HelpAcceptTermsOfServiceRequest
*github.com/gotd/td/tg.HelpAppConfig
*github.com/gotd/td/tg.HelpAppConfigBox
github.com/gotd/td/tg.HelpAppConfigClass (interface)
*github.com/gotd/td/tg.HelpAppConfigNotModified
*github.com/gotd/td/tg.HelpAppUpdate
*github.com/gotd/td/tg.HelpAppUpdateBox
github.com/gotd/td/tg.HelpAppUpdateClass (interface)
*github.com/gotd/td/tg.HelpConfigSimple
*github.com/gotd/td/tg.HelpCountriesList
*github.com/gotd/td/tg.HelpCountriesListBox
github.com/gotd/td/tg.HelpCountriesListClass (interface)
*github.com/gotd/td/tg.HelpCountriesListNotModified
*github.com/gotd/td/tg.HelpCountry
*github.com/gotd/td/tg.HelpCountryCode
*github.com/gotd/td/tg.HelpDeepLinkInfo
*github.com/gotd/td/tg.HelpDeepLinkInfoBox
github.com/gotd/td/tg.HelpDeepLinkInfoClass (interface)
*github.com/gotd/td/tg.HelpDeepLinkInfoEmpty
*github.com/gotd/td/tg.HelpDismissSuggestionRequest
*github.com/gotd/td/tg.HelpEditUserInfoRequest
*github.com/gotd/td/tg.HelpGetAppConfigRequest
*github.com/gotd/td/tg.HelpGetAppUpdateRequest
*github.com/gotd/td/tg.HelpGetCDNConfigRequest
*github.com/gotd/td/tg.HelpGetConfigRequest
*github.com/gotd/td/tg.HelpGetCountriesListRequest
*github.com/gotd/td/tg.HelpGetDeepLinkInfoRequest
*github.com/gotd/td/tg.HelpGetInviteTextRequest
*github.com/gotd/td/tg.HelpGetNearestDCRequest
*github.com/gotd/td/tg.HelpGetPassportConfigRequest
*github.com/gotd/td/tg.HelpGetPeerColorsRequest
*github.com/gotd/td/tg.HelpGetPeerProfileColorsRequest
*github.com/gotd/td/tg.HelpGetPremiumPromoRequest
*github.com/gotd/td/tg.HelpGetPromoDataRequest
*github.com/gotd/td/tg.HelpGetRecentMeURLsRequest
*github.com/gotd/td/tg.HelpGetSupportNameRequest
*github.com/gotd/td/tg.HelpGetSupportRequest
*github.com/gotd/td/tg.HelpGetTermsOfServiceUpdateRequest
*github.com/gotd/td/tg.HelpGetUserInfoRequest
*github.com/gotd/td/tg.HelpHidePromoDataRequest
*github.com/gotd/td/tg.HelpInviteText
*github.com/gotd/td/tg.HelpNoAppUpdate
*github.com/gotd/td/tg.HelpPassportConfig
*github.com/gotd/td/tg.HelpPassportConfigBox
github.com/gotd/td/tg.HelpPassportConfigClass (interface)
*github.com/gotd/td/tg.HelpPassportConfigNotModified
*github.com/gotd/td/tg.HelpPeerColorOption
*github.com/gotd/td/tg.HelpPeerColorProfileSet
*github.com/gotd/td/tg.HelpPeerColorSet
*github.com/gotd/td/tg.HelpPeerColorSetBox
github.com/gotd/td/tg.HelpPeerColorSetClass (interface)
*github.com/gotd/td/tg.HelpPeerColors
*github.com/gotd/td/tg.HelpPeerColorsBox
github.com/gotd/td/tg.HelpPeerColorsClass (interface)
*github.com/gotd/td/tg.HelpPeerColorsNotModified
*github.com/gotd/td/tg.HelpPremiumPromo
*github.com/gotd/td/tg.HelpPromoData
*github.com/gotd/td/tg.HelpPromoDataBox
github.com/gotd/td/tg.HelpPromoDataClass (interface)
*github.com/gotd/td/tg.HelpPromoDataEmpty
*github.com/gotd/td/tg.HelpRecentMeURLs
*github.com/gotd/td/tg.HelpSaveAppLogRequest
*github.com/gotd/td/tg.HelpSetBotUpdatesStatusRequest
*github.com/gotd/td/tg.HelpSupport
*github.com/gotd/td/tg.HelpSupportName
*github.com/gotd/td/tg.HelpTermsOfService
*github.com/gotd/td/tg.HelpTermsOfServiceUpdate
*github.com/gotd/td/tg.HelpTermsOfServiceUpdateBox
github.com/gotd/td/tg.HelpTermsOfServiceUpdateClass (interface)
*github.com/gotd/td/tg.HelpTermsOfServiceUpdateEmpty
*github.com/gotd/td/tg.HelpUserInfo
*github.com/gotd/td/tg.HelpUserInfoBox
github.com/gotd/td/tg.HelpUserInfoClass (interface)
*github.com/gotd/td/tg.HelpUserInfoEmpty
*github.com/gotd/td/tg.HighScore
*github.com/gotd/td/tg.ImportedContact
*github.com/gotd/td/tg.InitConnectionRequest
*github.com/gotd/td/tg.InlineBotSwitchPM
*github.com/gotd/td/tg.InlineBotWebView
*github.com/gotd/td/tg.InlineQueryPeerTypeBotPM
*github.com/gotd/td/tg.InlineQueryPeerTypeBox
*github.com/gotd/td/tg.InlineQueryPeerTypeBroadcast
*github.com/gotd/td/tg.InlineQueryPeerTypeChat
github.com/gotd/td/tg.InlineQueryPeerTypeClass (interface)
*github.com/gotd/td/tg.InlineQueryPeerTypeMegagroup
*github.com/gotd/td/tg.InlineQueryPeerTypePM
*github.com/gotd/td/tg.InlineQueryPeerTypeSameBotPM
*github.com/gotd/td/tg.InputAppEvent
*github.com/gotd/td/tg.InputBotAppBox
github.com/gotd/td/tg.InputBotAppClass (interface)
*github.com/gotd/td/tg.InputBotAppID
*github.com/gotd/td/tg.InputBotAppShortName
*github.com/gotd/td/tg.InputBotInlineMessageBox
github.com/gotd/td/tg.InputBotInlineMessageClass (interface)
*github.com/gotd/td/tg.InputBotInlineMessageGame
*github.com/gotd/td/tg.InputBotInlineMessageID
*github.com/gotd/td/tg.InputBotInlineMessageID64
*github.com/gotd/td/tg.InputBotInlineMessageIDBox
github.com/gotd/td/tg.InputBotInlineMessageIDClass (interface)
*github.com/gotd/td/tg.InputBotInlineMessageMediaAuto
*github.com/gotd/td/tg.InputBotInlineMessageMediaContact
*github.com/gotd/td/tg.InputBotInlineMessageMediaGeo
*github.com/gotd/td/tg.InputBotInlineMessageMediaInvoice
*github.com/gotd/td/tg.InputBotInlineMessageMediaVenue
*github.com/gotd/td/tg.InputBotInlineMessageMediaWebPage
*github.com/gotd/td/tg.InputBotInlineMessageText
*github.com/gotd/td/tg.InputBotInlineResult
*github.com/gotd/td/tg.InputBotInlineResultBox
github.com/gotd/td/tg.InputBotInlineResultClass (interface)
*github.com/gotd/td/tg.InputBotInlineResultDocument
*github.com/gotd/td/tg.InputBotInlineResultGame
*github.com/gotd/td/tg.InputBotInlineResultPhoto
*github.com/gotd/td/tg.InputChannel
*github.com/gotd/td/tg.InputChannelBox
github.com/gotd/td/tg.InputChannelClass (interface)
*github.com/gotd/td/tg.InputChannelEmpty
*github.com/gotd/td/tg.InputChannelFromMessage
*github.com/gotd/td/tg.InputChatlistDialogFilter
*github.com/gotd/td/tg.InputChatPhoto
*github.com/gotd/td/tg.InputChatPhotoBox
github.com/gotd/td/tg.InputChatPhotoClass (interface)
*github.com/gotd/td/tg.InputChatPhotoEmpty
*github.com/gotd/td/tg.InputChatUploadedPhoto
*github.com/gotd/td/tg.InputCheckPasswordEmpty
*github.com/gotd/td/tg.InputCheckPasswordSRP
*github.com/gotd/td/tg.InputCheckPasswordSRPBox
github.com/gotd/td/tg.InputCheckPasswordSRPClass (interface)
*github.com/gotd/td/tg.InputClientProxy
*github.com/gotd/td/tg.InputDialogPeer
*github.com/gotd/td/tg.InputDialogPeerBox
github.com/gotd/td/tg.InputDialogPeerClass (interface)
*github.com/gotd/td/tg.InputDialogPeerFolder
*github.com/gotd/td/tg.InputDocument
*github.com/gotd/td/tg.InputDocumentBox
github.com/gotd/td/tg.InputDocumentClass (interface)
*github.com/gotd/td/tg.InputDocumentEmpty
*github.com/gotd/td/tg.InputDocumentFileLocation
*github.com/gotd/td/tg.InputEncryptedChat
*github.com/gotd/td/tg.InputEncryptedFile
*github.com/gotd/td/tg.InputEncryptedFileBigUploaded
*github.com/gotd/td/tg.InputEncryptedFileBox
github.com/gotd/td/tg.InputEncryptedFileClass (interface)
*github.com/gotd/td/tg.InputEncryptedFileEmpty
*github.com/gotd/td/tg.InputEncryptedFileLocation
*github.com/gotd/td/tg.InputEncryptedFileUploaded
*github.com/gotd/td/tg.InputFile
*github.com/gotd/td/tg.InputFileBig
*github.com/gotd/td/tg.InputFileBox
github.com/gotd/td/tg.InputFileClass (interface)
*github.com/gotd/td/tg.InputFileLocation
*github.com/gotd/td/tg.InputFileLocationBox
github.com/gotd/td/tg.InputFileLocationClass (interface)
*github.com/gotd/td/tg.InputFolderPeer
*github.com/gotd/td/tg.InputGameBox
github.com/gotd/td/tg.InputGameClass (interface)
*github.com/gotd/td/tg.InputGameID
*github.com/gotd/td/tg.InputGameShortName
*github.com/gotd/td/tg.InputGeoPoint
*github.com/gotd/td/tg.InputGeoPointBox
github.com/gotd/td/tg.InputGeoPointClass (interface)
*github.com/gotd/td/tg.InputGeoPointEmpty
*github.com/gotd/td/tg.InputGroupCall
*github.com/gotd/td/tg.InputGroupCallStream
*github.com/gotd/td/tg.InputInvoiceBox
github.com/gotd/td/tg.InputInvoiceClass (interface)
*github.com/gotd/td/tg.InputInvoiceMessage
*github.com/gotd/td/tg.InputInvoicePremiumGiftCode
*github.com/gotd/td/tg.InputInvoiceSlug
*github.com/gotd/td/tg.InputKeyboardButtonURLAuth
*github.com/gotd/td/tg.InputKeyboardButtonUserProfile
*github.com/gotd/td/tg.InputMediaAreaChannelPost
*github.com/gotd/td/tg.InputMediaAreaVenue
*github.com/gotd/td/tg.InputMediaBox
github.com/gotd/td/tg.InputMediaClass (interface)
*github.com/gotd/td/tg.InputMediaContact
*github.com/gotd/td/tg.InputMediaDice
*github.com/gotd/td/tg.InputMediaDocument
*github.com/gotd/td/tg.InputMediaDocumentExternal
*github.com/gotd/td/tg.InputMediaEmpty
*github.com/gotd/td/tg.InputMediaGame
*github.com/gotd/td/tg.InputMediaGeoLive
*github.com/gotd/td/tg.InputMediaGeoPoint
*github.com/gotd/td/tg.InputMediaInvoice
*github.com/gotd/td/tg.InputMediaPhoto
*github.com/gotd/td/tg.InputMediaPhotoExternal
*github.com/gotd/td/tg.InputMediaPoll
*github.com/gotd/td/tg.InputMediaStory
*github.com/gotd/td/tg.InputMediaUploadedDocument
*github.com/gotd/td/tg.InputMediaUploadedPhoto
*github.com/gotd/td/tg.InputMediaVenue
*github.com/gotd/td/tg.InputMediaWebPage
*github.com/gotd/td/tg.InputMessageBox
*github.com/gotd/td/tg.InputMessageCallbackQuery
github.com/gotd/td/tg.InputMessageClass (interface)
*github.com/gotd/td/tg.InputMessageEntityMentionName
*github.com/gotd/td/tg.InputMessageID
*github.com/gotd/td/tg.InputMessagePinned
*github.com/gotd/td/tg.InputMessageReplyTo
*github.com/gotd/td/tg.InputMessagesFilterChatPhotos
*github.com/gotd/td/tg.InputMessagesFilterContacts
*github.com/gotd/td/tg.InputMessagesFilterDocument
*github.com/gotd/td/tg.InputMessagesFilterEmpty
*github.com/gotd/td/tg.InputMessagesFilterGeo
*github.com/gotd/td/tg.InputMessagesFilterGif
*github.com/gotd/td/tg.InputMessagesFilterMusic
*github.com/gotd/td/tg.InputMessagesFilterMyMentions
*github.com/gotd/td/tg.InputMessagesFilterPhoneCalls
*github.com/gotd/td/tg.InputMessagesFilterPhotos
*github.com/gotd/td/tg.InputMessagesFilterPhotoVideo
*github.com/gotd/td/tg.InputMessagesFilterPinned
*github.com/gotd/td/tg.InputMessagesFilterRoundVideo
*github.com/gotd/td/tg.InputMessagesFilterRoundVoice
*github.com/gotd/td/tg.InputMessagesFilterURL
*github.com/gotd/td/tg.InputMessagesFilterVideo
*github.com/gotd/td/tg.InputMessagesFilterVoice
*github.com/gotd/td/tg.InputNotifyBroadcasts
*github.com/gotd/td/tg.InputNotifyChats
*github.com/gotd/td/tg.InputNotifyForumTopic
*github.com/gotd/td/tg.InputNotifyPeer
*github.com/gotd/td/tg.InputNotifyPeerBox
github.com/gotd/td/tg.InputNotifyPeerClass (interface)
*github.com/gotd/td/tg.InputNotifyUsers
*github.com/gotd/td/tg.InputPaymentCredentials
*github.com/gotd/td/tg.InputPaymentCredentialsApplePay
*github.com/gotd/td/tg.InputPaymentCredentialsBox
github.com/gotd/td/tg.InputPaymentCredentialsClass (interface)
*github.com/gotd/td/tg.InputPaymentCredentialsGooglePay
*github.com/gotd/td/tg.InputPaymentCredentialsSaved
*github.com/gotd/td/tg.InputPeerBox
*github.com/gotd/td/tg.InputPeerChannel
*github.com/gotd/td/tg.InputPeerChannelFromMessage
*github.com/gotd/td/tg.InputPeerChat
github.com/gotd/td/tg.InputPeerClass (interface)
*github.com/gotd/td/tg.InputPeerEmpty
*github.com/gotd/td/tg.InputPeerNotifySettings
*github.com/gotd/td/tg.InputPeerPhotoFileLocation
*github.com/gotd/td/tg.InputPeerPhotoFileLocationLegacy
*github.com/gotd/td/tg.InputPeerSelf
*github.com/gotd/td/tg.InputPeerUser
*github.com/gotd/td/tg.InputPeerUserFromMessage
*github.com/gotd/td/tg.InputPhoneCall
*github.com/gotd/td/tg.InputPhoneContact
*github.com/gotd/td/tg.InputPhoto
*github.com/gotd/td/tg.InputPhotoBox
github.com/gotd/td/tg.InputPhotoClass (interface)
*github.com/gotd/td/tg.InputPhotoEmpty
*github.com/gotd/td/tg.InputPhotoFileLocation
*github.com/gotd/td/tg.InputPhotoLegacyFileLocation
*github.com/gotd/td/tg.InputPrivacyKeyAbout
*github.com/gotd/td/tg.InputPrivacyKeyAddedByPhone
*github.com/gotd/td/tg.InputPrivacyKeyBox
*github.com/gotd/td/tg.InputPrivacyKeyChatInvite
github.com/gotd/td/tg.InputPrivacyKeyClass (interface)
*github.com/gotd/td/tg.InputPrivacyKeyForwards
*github.com/gotd/td/tg.InputPrivacyKeyPhoneCall
*github.com/gotd/td/tg.InputPrivacyKeyPhoneNumber
*github.com/gotd/td/tg.InputPrivacyKeyPhoneP2P
*github.com/gotd/td/tg.InputPrivacyKeyProfilePhoto
*github.com/gotd/td/tg.InputPrivacyKeyStatusTimestamp
*github.com/gotd/td/tg.InputPrivacyKeyVoiceMessages
*github.com/gotd/td/tg.InputPrivacyRuleBox
github.com/gotd/td/tg.InputPrivacyRuleClass (interface)
*github.com/gotd/td/tg.InputPrivacyValueAllowAll
*github.com/gotd/td/tg.InputPrivacyValueAllowChatParticipants
*github.com/gotd/td/tg.InputPrivacyValueAllowCloseFriends
*github.com/gotd/td/tg.InputPrivacyValueAllowContacts
*github.com/gotd/td/tg.InputPrivacyValueAllowUsers
*github.com/gotd/td/tg.InputPrivacyValueDisallowAll
*github.com/gotd/td/tg.InputPrivacyValueDisallowChatParticipants
*github.com/gotd/td/tg.InputPrivacyValueDisallowContacts
*github.com/gotd/td/tg.InputPrivacyValueDisallowUsers
*github.com/gotd/td/tg.InputReplyToBox
github.com/gotd/td/tg.InputReplyToClass (interface)
*github.com/gotd/td/tg.InputReplyToMessage
*github.com/gotd/td/tg.InputReplyToStory
*github.com/gotd/td/tg.InputReportReasonChildAbuse
*github.com/gotd/td/tg.InputReportReasonCopyright
*github.com/gotd/td/tg.InputReportReasonFake
*github.com/gotd/td/tg.InputReportReasonGeoIrrelevant
*github.com/gotd/td/tg.InputReportReasonIllegalDrugs
*github.com/gotd/td/tg.InputReportReasonOther
*github.com/gotd/td/tg.InputReportReasonPersonalDetails
*github.com/gotd/td/tg.InputReportReasonPornography
*github.com/gotd/td/tg.InputReportReasonSpam
*github.com/gotd/td/tg.InputReportReasonViolence
*github.com/gotd/td/tg.InputSecureFile
*github.com/gotd/td/tg.InputSecureFileBox
github.com/gotd/td/tg.InputSecureFileClass (interface)
*github.com/gotd/td/tg.InputSecureFileLocation
*github.com/gotd/td/tg.InputSecureFileUploaded
*github.com/gotd/td/tg.InputSecureValue
*github.com/gotd/td/tg.InputSingleMedia
*github.com/gotd/td/tg.InputStickeredMediaBox
github.com/gotd/td/tg.InputStickeredMediaClass (interface)
*github.com/gotd/td/tg.InputStickeredMediaDocument
*github.com/gotd/td/tg.InputStickeredMediaPhoto
*github.com/gotd/td/tg.InputStickerSetAnimatedEmoji
*github.com/gotd/td/tg.InputStickerSetAnimatedEmojiAnimations
*github.com/gotd/td/tg.InputStickerSetBox
github.com/gotd/td/tg.InputStickerSetClass (interface)
*github.com/gotd/td/tg.InputStickerSetDice
*github.com/gotd/td/tg.InputStickerSetEmojiChannelDefaultStatuses
*github.com/gotd/td/tg.InputStickerSetEmojiDefaultStatuses
*github.com/gotd/td/tg.InputStickerSetEmojiDefaultTopicIcons
*github.com/gotd/td/tg.InputStickerSetEmojiGenericAnimations
*github.com/gotd/td/tg.InputStickerSetEmpty
*github.com/gotd/td/tg.InputStickerSetID
*github.com/gotd/td/tg.InputStickerSetItem
*github.com/gotd/td/tg.InputStickerSetPremiumGifts
*github.com/gotd/td/tg.InputStickerSetShortName
*github.com/gotd/td/tg.InputStickerSetThumb
*github.com/gotd/td/tg.InputStickerSetThumbLegacy
*github.com/gotd/td/tg.InputStorePaymentGiftPremium
*github.com/gotd/td/tg.InputStorePaymentPremiumGiftCode
*github.com/gotd/td/tg.InputStorePaymentPremiumGiveaway
*github.com/gotd/td/tg.InputStorePaymentPremiumSubscription
*github.com/gotd/td/tg.InputStorePaymentPurposeBox
github.com/gotd/td/tg.InputStorePaymentPurposeClass (interface)
*github.com/gotd/td/tg.InputTakeoutFileLocation
*github.com/gotd/td/tg.InputTheme
*github.com/gotd/td/tg.InputThemeBox
github.com/gotd/td/tg.InputThemeClass (interface)
*github.com/gotd/td/tg.InputThemeSettings
*github.com/gotd/td/tg.InputThemeSlug
*github.com/gotd/td/tg.InputUser
*github.com/gotd/td/tg.InputUserBox
github.com/gotd/td/tg.InputUserClass (interface)
*github.com/gotd/td/tg.InputUserEmpty
*github.com/gotd/td/tg.InputUserFromMessage
*github.com/gotd/td/tg.InputUserSelf
*github.com/gotd/td/tg.InputWallPaper
*github.com/gotd/td/tg.InputWallPaperBox
github.com/gotd/td/tg.InputWallPaperClass (interface)
*github.com/gotd/td/tg.InputWallPaperNoFile
*github.com/gotd/td/tg.InputWallPaperSlug
*github.com/gotd/td/tg.InputWebDocument
*github.com/gotd/td/tg.InputWebFileAudioAlbumThumbLocation
*github.com/gotd/td/tg.InputWebFileGeoPointLocation
*github.com/gotd/td/tg.InputWebFileLocation
*github.com/gotd/td/tg.InputWebFileLocationBox
github.com/gotd/td/tg.InputWebFileLocationClass (interface)
*github.com/gotd/td/tg.Int
*github.com/gotd/td/tg.IntVector
*github.com/gotd/td/tg.Invoice
*github.com/gotd/td/tg.InvokeAfterMsgRequest
*github.com/gotd/td/tg.InvokeAfterMsgsRequest
*github.com/gotd/td/tg.InvokeWithLayerRequest
*github.com/gotd/td/tg.InvokeWithMessagesRangeRequest
*github.com/gotd/td/tg.InvokeWithoutUpdatesRequest
*github.com/gotd/td/tg.InvokeWithTakeoutRequest
*github.com/gotd/td/tg.IPPort
*github.com/gotd/td/tg.IPPortBox
github.com/gotd/td/tg.IPPortClass (interface)
*github.com/gotd/td/tg.IPPortSecret
*github.com/gotd/td/tg.JSONArray
*github.com/gotd/td/tg.JSONBool
*github.com/gotd/td/tg.JSONNull
*github.com/gotd/td/tg.JSONNumber
*github.com/gotd/td/tg.JSONObject
*github.com/gotd/td/tg.JSONObjectValue
*github.com/gotd/td/tg.JSONString
*github.com/gotd/td/tg.JSONValueBox
github.com/gotd/td/tg.JSONValueClass (interface)
*github.com/gotd/td/tg.KeyboardButton
*github.com/gotd/td/tg.KeyboardButtonBox
*github.com/gotd/td/tg.KeyboardButtonBuy
*github.com/gotd/td/tg.KeyboardButtonCallback
github.com/gotd/td/tg.KeyboardButtonClass (interface)
*github.com/gotd/td/tg.KeyboardButtonGame
*github.com/gotd/td/tg.KeyboardButtonRequestGeoLocation
*github.com/gotd/td/tg.KeyboardButtonRequestPeer
*github.com/gotd/td/tg.KeyboardButtonRequestPhone
*github.com/gotd/td/tg.KeyboardButtonRequestPoll
*github.com/gotd/td/tg.KeyboardButtonRow
*github.com/gotd/td/tg.KeyboardButtonSimpleWebView
*github.com/gotd/td/tg.KeyboardButtonSwitchInline
*github.com/gotd/td/tg.KeyboardButtonURL
*github.com/gotd/td/tg.KeyboardButtonURLAuth
*github.com/gotd/td/tg.KeyboardButtonUserProfile
*github.com/gotd/td/tg.KeyboardButtonWebView
*github.com/gotd/td/tg.LabeledPrice
*github.com/gotd/td/tg.LangPackDifference
*github.com/gotd/td/tg.LangPackLanguage
*github.com/gotd/td/tg.LangPackLanguageVector
*github.com/gotd/td/tg.LangPackString
*github.com/gotd/td/tg.LangPackStringBox
github.com/gotd/td/tg.LangPackStringClass (interface)
*github.com/gotd/td/tg.LangPackStringClassVector
*github.com/gotd/td/tg.LangPackStringDeleted
*github.com/gotd/td/tg.LangPackStringPluralized
*github.com/gotd/td/tg.LangpackGetDifferenceRequest
*github.com/gotd/td/tg.LangpackGetLangPackRequest
*github.com/gotd/td/tg.LangpackGetLanguageRequest
*github.com/gotd/td/tg.LangpackGetLanguagesRequest
*github.com/gotd/td/tg.LangpackGetStringsRequest
*github.com/gotd/td/tg.Long
*github.com/gotd/td/tg.LongVector
*github.com/gotd/td/tg.MaskCoords
*github.com/gotd/td/tg.MediaAreaBox
*github.com/gotd/td/tg.MediaAreaChannelPost
github.com/gotd/td/tg.MediaAreaClass (interface)
*github.com/gotd/td/tg.MediaAreaCoordinates
*github.com/gotd/td/tg.MediaAreaGeoPoint
*github.com/gotd/td/tg.MediaAreaSuggestedReaction
*github.com/gotd/td/tg.MediaAreaVenue
*github.com/gotd/td/tg.Message
*github.com/gotd/td/tg.MessageActionBotAllowed
*github.com/gotd/td/tg.MessageActionBox
*github.com/gotd/td/tg.MessageActionChannelCreate
*github.com/gotd/td/tg.MessageActionChannelMigrateFrom
*github.com/gotd/td/tg.MessageActionChatAddUser
*github.com/gotd/td/tg.MessageActionChatCreate
*github.com/gotd/td/tg.MessageActionChatDeletePhoto
*github.com/gotd/td/tg.MessageActionChatDeleteUser
*github.com/gotd/td/tg.MessageActionChatEditPhoto
*github.com/gotd/td/tg.MessageActionChatEditTitle
*github.com/gotd/td/tg.MessageActionChatJoinedByLink
*github.com/gotd/td/tg.MessageActionChatJoinedByRequest
*github.com/gotd/td/tg.MessageActionChatMigrateTo
github.com/gotd/td/tg.MessageActionClass (interface)
*github.com/gotd/td/tg.MessageActionContactSignUp
*github.com/gotd/td/tg.MessageActionCustomAction
*github.com/gotd/td/tg.MessageActionEmpty
*github.com/gotd/td/tg.MessageActionGameScore
*github.com/gotd/td/tg.MessageActionGeoProximityReached
*github.com/gotd/td/tg.MessageActionGiftCode
*github.com/gotd/td/tg.MessageActionGiftPremium
*github.com/gotd/td/tg.MessageActionGiveawayLaunch
*github.com/gotd/td/tg.MessageActionGiveawayResults
*github.com/gotd/td/tg.MessageActionGroupCall
*github.com/gotd/td/tg.MessageActionGroupCallScheduled
*github.com/gotd/td/tg.MessageActionHistoryClear
*github.com/gotd/td/tg.MessageActionInviteToGroupCall
*github.com/gotd/td/tg.MessageActionPaymentSent
*github.com/gotd/td/tg.MessageActionPaymentSentMe
*github.com/gotd/td/tg.MessageActionPhoneCall
*github.com/gotd/td/tg.MessageActionPinMessage
*github.com/gotd/td/tg.MessageActionRequestedPeer
*github.com/gotd/td/tg.MessageActionScreenshotTaken
*github.com/gotd/td/tg.MessageActionSecureValuesSent
*github.com/gotd/td/tg.MessageActionSecureValuesSentMe
*github.com/gotd/td/tg.MessageActionSetChatTheme
*github.com/gotd/td/tg.MessageActionSetChatWallPaper
*github.com/gotd/td/tg.MessageActionSetMessagesTTL
*github.com/gotd/td/tg.MessageActionSuggestProfilePhoto
*github.com/gotd/td/tg.MessageActionTopicCreate
*github.com/gotd/td/tg.MessageActionTopicEdit
*github.com/gotd/td/tg.MessageActionWebViewDataSent
*github.com/gotd/td/tg.MessageActionWebViewDataSentMe
*github.com/gotd/td/tg.MessageBox
github.com/gotd/td/tg.MessageClass (interface)
*github.com/gotd/td/tg.MessageEmpty
*github.com/gotd/td/tg.MessageEntityBankCard
*github.com/gotd/td/tg.MessageEntityBlockquote
*github.com/gotd/td/tg.MessageEntityBold
*github.com/gotd/td/tg.MessageEntityBotCommand
*github.com/gotd/td/tg.MessageEntityBox
*github.com/gotd/td/tg.MessageEntityCashtag
github.com/gotd/td/tg.MessageEntityClass (interface)
*github.com/gotd/td/tg.MessageEntityCode
*github.com/gotd/td/tg.MessageEntityCustomEmoji
*github.com/gotd/td/tg.MessageEntityEmail
*github.com/gotd/td/tg.MessageEntityHashtag
*github.com/gotd/td/tg.MessageEntityItalic
*github.com/gotd/td/tg.MessageEntityMention
*github.com/gotd/td/tg.MessageEntityMentionName
*github.com/gotd/td/tg.MessageEntityPhone
*github.com/gotd/td/tg.MessageEntityPre
*github.com/gotd/td/tg.MessageEntitySpoiler
*github.com/gotd/td/tg.MessageEntityStrike
*github.com/gotd/td/tg.MessageEntityTextURL
*github.com/gotd/td/tg.MessageEntityUnderline
*github.com/gotd/td/tg.MessageEntityUnknown
*github.com/gotd/td/tg.MessageEntityURL
*github.com/gotd/td/tg.MessageExtendedMedia
*github.com/gotd/td/tg.MessageExtendedMediaBox
github.com/gotd/td/tg.MessageExtendedMediaClass (interface)
*github.com/gotd/td/tg.MessageExtendedMediaPreview
*github.com/gotd/td/tg.MessageFwdHeader
*github.com/gotd/td/tg.MessageMediaBox
github.com/gotd/td/tg.MessageMediaClass (interface)
*github.com/gotd/td/tg.MessageMediaContact
*github.com/gotd/td/tg.MessageMediaDice
*github.com/gotd/td/tg.MessageMediaDocument
*github.com/gotd/td/tg.MessageMediaEmpty
*github.com/gotd/td/tg.MessageMediaGame
*github.com/gotd/td/tg.MessageMediaGeo
*github.com/gotd/td/tg.MessageMediaGeoLive
*github.com/gotd/td/tg.MessageMediaGiveaway
*github.com/gotd/td/tg.MessageMediaGiveawayResults
*github.com/gotd/td/tg.MessageMediaInvoice
*github.com/gotd/td/tg.MessageMediaPhoto
*github.com/gotd/td/tg.MessageMediaPoll
*github.com/gotd/td/tg.MessageMediaStory
*github.com/gotd/td/tg.MessageMediaUnsupported
*github.com/gotd/td/tg.MessageMediaVenue
*github.com/gotd/td/tg.MessageMediaWebPage
*github.com/gotd/td/tg.MessagePeerReaction
*github.com/gotd/td/tg.MessagePeerVote
*github.com/gotd/td/tg.MessagePeerVoteBox
github.com/gotd/td/tg.MessagePeerVoteClass (interface)
*github.com/gotd/td/tg.MessagePeerVoteInputOption
*github.com/gotd/td/tg.MessagePeerVoteMultiple
*github.com/gotd/td/tg.MessageRange
*github.com/gotd/td/tg.MessageRangeVector
*github.com/gotd/td/tg.MessageReactions
*github.com/gotd/td/tg.MessageReplies
*github.com/gotd/td/tg.MessageReplyHeader
*github.com/gotd/td/tg.MessageReplyHeaderBox
github.com/gotd/td/tg.MessageReplyHeaderClass (interface)
*github.com/gotd/td/tg.MessageReplyStoryHeader
*github.com/gotd/td/tg.MessageService
*github.com/gotd/td/tg.MessagesAcceptEncryptionRequest
*github.com/gotd/td/tg.MessagesAcceptURLAuthRequest
*github.com/gotd/td/tg.MessagesAddChatUserRequest
*github.com/gotd/td/tg.MessagesAffectedFoundMessages
*github.com/gotd/td/tg.MessagesAffectedHistory
*github.com/gotd/td/tg.MessagesAffectedMessages
*github.com/gotd/td/tg.MessagesAllStickers
*github.com/gotd/td/tg.MessagesAllStickersBox
github.com/gotd/td/tg.MessagesAllStickersClass (interface)
*github.com/gotd/td/tg.MessagesAllStickersNotModified
*github.com/gotd/td/tg.MessagesArchivedStickers
*github.com/gotd/td/tg.MessagesAvailableReactions
*github.com/gotd/td/tg.MessagesAvailableReactionsBox
github.com/gotd/td/tg.MessagesAvailableReactionsClass (interface)
*github.com/gotd/td/tg.MessagesAvailableReactionsNotModified
*github.com/gotd/td/tg.MessagesBotApp
*github.com/gotd/td/tg.MessagesBotCallbackAnswer
*github.com/gotd/td/tg.MessagesBotResults
*github.com/gotd/td/tg.MessagesChannelMessages
*github.com/gotd/td/tg.MessagesChatAdminsWithInvites
*github.com/gotd/td/tg.MessagesChatFull
*github.com/gotd/td/tg.MessagesChatInviteImporters
*github.com/gotd/td/tg.MessagesChats
*github.com/gotd/td/tg.MessagesChatsBox
github.com/gotd/td/tg.MessagesChatsClass (interface)
*github.com/gotd/td/tg.MessagesChatsSlice
*github.com/gotd/td/tg.MessagesCheckChatInviteRequest
*github.com/gotd/td/tg.MessagesCheckedHistoryImportPeer
*github.com/gotd/td/tg.MessagesCheckHistoryImportPeerRequest
*github.com/gotd/td/tg.MessagesCheckHistoryImportRequest
*github.com/gotd/td/tg.MessagesClearAllDraftsRequest
*github.com/gotd/td/tg.MessagesClearRecentReactionsRequest
*github.com/gotd/td/tg.MessagesClearRecentStickersRequest
*github.com/gotd/td/tg.MessagesCreateChatRequest
*github.com/gotd/td/tg.MessagesDeleteChatRequest
*github.com/gotd/td/tg.MessagesDeleteChatUserRequest
*github.com/gotd/td/tg.MessagesDeleteExportedChatInviteRequest
*github.com/gotd/td/tg.MessagesDeleteHistoryRequest
*github.com/gotd/td/tg.MessagesDeleteMessagesRequest
*github.com/gotd/td/tg.MessagesDeletePhoneCallHistoryRequest
*github.com/gotd/td/tg.MessagesDeleteRevokedExportedChatInvitesRequest
*github.com/gotd/td/tg.MessagesDeleteScheduledMessagesRequest
*github.com/gotd/td/tg.MessagesDhConfig
*github.com/gotd/td/tg.MessagesDhConfigBox
github.com/gotd/td/tg.MessagesDhConfigClass (interface)
*github.com/gotd/td/tg.MessagesDhConfigNotModified
*github.com/gotd/td/tg.MessagesDialogs
*github.com/gotd/td/tg.MessagesDialogsBox
github.com/gotd/td/tg.MessagesDialogsClass (interface)
*github.com/gotd/td/tg.MessagesDialogsNotModified
*github.com/gotd/td/tg.MessagesDialogsSlice
*github.com/gotd/td/tg.MessagesDiscardEncryptionRequest
*github.com/gotd/td/tg.MessagesDiscussionMessage
*github.com/gotd/td/tg.MessagesEditChatAboutRequest
*github.com/gotd/td/tg.MessagesEditChatAdminRequest
*github.com/gotd/td/tg.MessagesEditChatDefaultBannedRightsRequest
*github.com/gotd/td/tg.MessagesEditChatPhotoRequest
*github.com/gotd/td/tg.MessagesEditChatTitleRequest
*github.com/gotd/td/tg.MessagesEditExportedChatInviteRequest
*github.com/gotd/td/tg.MessagesEditInlineBotMessageRequest
*github.com/gotd/td/tg.MessagesEditMessageRequest
*github.com/gotd/td/tg.MessagesEmojiGroups
*github.com/gotd/td/tg.MessagesEmojiGroupsBox
github.com/gotd/td/tg.MessagesEmojiGroupsClass (interface)
*github.com/gotd/td/tg.MessagesEmojiGroupsNotModified
*github.com/gotd/td/tg.MessagesExportChatInviteRequest
*github.com/gotd/td/tg.MessagesExportedChatInvite
*github.com/gotd/td/tg.MessagesExportedChatInviteBox
github.com/gotd/td/tg.MessagesExportedChatInviteClass (interface)
*github.com/gotd/td/tg.MessagesExportedChatInviteReplaced
*github.com/gotd/td/tg.MessagesExportedChatInvites
*github.com/gotd/td/tg.MessagesFavedStickers
*github.com/gotd/td/tg.MessagesFavedStickersBox
github.com/gotd/td/tg.MessagesFavedStickersClass (interface)
*github.com/gotd/td/tg.MessagesFavedStickersNotModified
*github.com/gotd/td/tg.MessagesFaveStickerRequest
*github.com/gotd/td/tg.MessagesFeaturedStickers
*github.com/gotd/td/tg.MessagesFeaturedStickersBox
github.com/gotd/td/tg.MessagesFeaturedStickersClass (interface)
*github.com/gotd/td/tg.MessagesFeaturedStickersNotModified
*github.com/gotd/td/tg.MessagesFilterBox
github.com/gotd/td/tg.MessagesFilterClass (interface)
*github.com/gotd/td/tg.MessagesForumTopics
*github.com/gotd/td/tg.MessagesForwardMessagesRequest
*github.com/gotd/td/tg.MessagesFoundStickerSets
*github.com/gotd/td/tg.MessagesFoundStickerSetsBox
github.com/gotd/td/tg.MessagesFoundStickerSetsClass (interface)
*github.com/gotd/td/tg.MessagesFoundStickerSetsNotModified
*github.com/gotd/td/tg.MessagesGetAdminsWithInvitesRequest
*github.com/gotd/td/tg.MessagesGetAllDraftsRequest
*github.com/gotd/td/tg.MessagesGetAllStickersRequest
*github.com/gotd/td/tg.MessagesGetArchivedStickersRequest
*github.com/gotd/td/tg.MessagesGetAttachedStickersRequest
*github.com/gotd/td/tg.MessagesGetAttachMenuBotRequest
*github.com/gotd/td/tg.MessagesGetAttachMenuBotsRequest
*github.com/gotd/td/tg.MessagesGetAvailableReactionsRequest
*github.com/gotd/td/tg.MessagesGetBotAppRequest
*github.com/gotd/td/tg.MessagesGetBotCallbackAnswerRequest
*github.com/gotd/td/tg.MessagesGetChatInviteImportersRequest
*github.com/gotd/td/tg.MessagesGetChatsRequest
*github.com/gotd/td/tg.MessagesGetCommonChatsRequest
*github.com/gotd/td/tg.MessagesGetCustomEmojiDocumentsRequest
*github.com/gotd/td/tg.MessagesGetDefaultHistoryTTLRequest
*github.com/gotd/td/tg.MessagesGetDhConfigRequest
*github.com/gotd/td/tg.MessagesGetDialogFiltersRequest
*github.com/gotd/td/tg.MessagesGetDialogsRequest
*github.com/gotd/td/tg.MessagesGetDialogUnreadMarksRequest
*github.com/gotd/td/tg.MessagesGetDiscussionMessageRequest
*github.com/gotd/td/tg.MessagesGetDocumentByHashRequest
*github.com/gotd/td/tg.MessagesGetEmojiGroupsRequest
*github.com/gotd/td/tg.MessagesGetEmojiKeywordsDifferenceRequest
*github.com/gotd/td/tg.MessagesGetEmojiKeywordsLanguagesRequest
*github.com/gotd/td/tg.MessagesGetEmojiKeywordsRequest
*github.com/gotd/td/tg.MessagesGetEmojiProfilePhotoGroupsRequest
*github.com/gotd/td/tg.MessagesGetEmojiStatusGroupsRequest
*github.com/gotd/td/tg.MessagesGetEmojiStickersRequest
*github.com/gotd/td/tg.MessagesGetEmojiURLRequest
*github.com/gotd/td/tg.MessagesGetExportedChatInviteRequest
*github.com/gotd/td/tg.MessagesGetExportedChatInvitesRequest
*github.com/gotd/td/tg.MessagesGetExtendedMediaRequest
*github.com/gotd/td/tg.MessagesGetFavedStickersRequest
*github.com/gotd/td/tg.MessagesGetFeaturedEmojiStickersRequest
*github.com/gotd/td/tg.MessagesGetFeaturedStickersRequest
*github.com/gotd/td/tg.MessagesGetFullChatRequest
*github.com/gotd/td/tg.MessagesGetGameHighScoresRequest
*github.com/gotd/td/tg.MessagesGetHistoryRequest
*github.com/gotd/td/tg.MessagesGetInlineBotResultsRequest
*github.com/gotd/td/tg.MessagesGetInlineGameHighScoresRequest
*github.com/gotd/td/tg.MessagesGetMaskStickersRequest
*github.com/gotd/td/tg.MessagesGetMessageEditDataRequest
*github.com/gotd/td/tg.MessagesGetMessageReactionsListRequest
*github.com/gotd/td/tg.MessagesGetMessageReadParticipantsRequest
*github.com/gotd/td/tg.MessagesGetMessagesReactionsRequest
*github.com/gotd/td/tg.MessagesGetMessagesRequest
*github.com/gotd/td/tg.MessagesGetMessagesViewsRequest
*github.com/gotd/td/tg.MessagesGetOldFeaturedStickersRequest
*github.com/gotd/td/tg.MessagesGetOnlinesRequest
*github.com/gotd/td/tg.MessagesGetPeerDialogsRequest
*github.com/gotd/td/tg.MessagesGetPeerSettingsRequest
*github.com/gotd/td/tg.MessagesGetPinnedDialogsRequest
*github.com/gotd/td/tg.MessagesGetPollResultsRequest
*github.com/gotd/td/tg.MessagesGetPollVotesRequest
*github.com/gotd/td/tg.MessagesGetRecentLocationsRequest
*github.com/gotd/td/tg.MessagesGetRecentReactionsRequest
*github.com/gotd/td/tg.MessagesGetRecentStickersRequest
*github.com/gotd/td/tg.MessagesGetRepliesRequest
*github.com/gotd/td/tg.MessagesGetSavedGifsRequest
*github.com/gotd/td/tg.MessagesGetScheduledHistoryRequest
*github.com/gotd/td/tg.MessagesGetScheduledMessagesRequest
*github.com/gotd/td/tg.MessagesGetSearchCountersRequest
*github.com/gotd/td/tg.MessagesGetSearchResultsCalendarRequest
*github.com/gotd/td/tg.MessagesGetSearchResultsPositionsRequest
*github.com/gotd/td/tg.MessagesGetSplitRangesRequest
*github.com/gotd/td/tg.MessagesGetStickerSetRequest
*github.com/gotd/td/tg.MessagesGetStickersRequest
*github.com/gotd/td/tg.MessagesGetSuggestedDialogFiltersRequest
*github.com/gotd/td/tg.MessagesGetTopReactionsRequest
*github.com/gotd/td/tg.MessagesGetUnreadMentionsRequest
*github.com/gotd/td/tg.MessagesGetUnreadReactionsRequest
*github.com/gotd/td/tg.MessagesGetWebPagePreviewRequest
*github.com/gotd/td/tg.MessagesGetWebPageRequest
*github.com/gotd/td/tg.MessagesHideAllChatJoinRequestsRequest
*github.com/gotd/td/tg.MessagesHideChatJoinRequestRequest
*github.com/gotd/td/tg.MessagesHidePeerSettingsBarRequest
*github.com/gotd/td/tg.MessagesHighScores
*github.com/gotd/td/tg.MessagesHistoryImport
*github.com/gotd/td/tg.MessagesHistoryImportParsed
*github.com/gotd/td/tg.MessagesImportChatInviteRequest
*github.com/gotd/td/tg.MessagesInactiveChats
*github.com/gotd/td/tg.MessagesInitHistoryImportRequest
*github.com/gotd/td/tg.MessagesInstallStickerSetRequest
*github.com/gotd/td/tg.MessagesMarkDialogUnreadRequest
*github.com/gotd/td/tg.MessagesMessageEditData
*github.com/gotd/td/tg.MessagesMessageReactionsList
*github.com/gotd/td/tg.MessagesMessages
*github.com/gotd/td/tg.MessagesMessagesBox
github.com/gotd/td/tg.MessagesMessagesClass (interface)
*github.com/gotd/td/tg.MessagesMessagesNotModified
*github.com/gotd/td/tg.MessagesMessagesSlice
*github.com/gotd/td/tg.MessagesMessageViews
*github.com/gotd/td/tg.MessagesMigrateChatRequest
*github.com/gotd/td/tg.MessagesPeerDialogs
*github.com/gotd/td/tg.MessagesPeerSettings
*github.com/gotd/td/tg.MessagesProlongWebViewRequest
*github.com/gotd/td/tg.MessagesRateTranscribedAudioRequest
*github.com/gotd/td/tg.MessagesReactions
*github.com/gotd/td/tg.MessagesReactionsBox
github.com/gotd/td/tg.MessagesReactionsClass (interface)
*github.com/gotd/td/tg.MessagesReactionsNotModified
*github.com/gotd/td/tg.MessagesReadDiscussionRequest
*github.com/gotd/td/tg.MessagesReadEncryptedHistoryRequest
*github.com/gotd/td/tg.MessagesReadFeaturedStickersRequest
*github.com/gotd/td/tg.MessagesReadHistoryRequest
*github.com/gotd/td/tg.MessagesReadMentionsRequest
*github.com/gotd/td/tg.MessagesReadMessageContentsRequest
*github.com/gotd/td/tg.MessagesReadReactionsRequest
*github.com/gotd/td/tg.MessagesReceivedMessagesRequest
*github.com/gotd/td/tg.MessagesReceivedQueueRequest
*github.com/gotd/td/tg.MessagesRecentStickers
*github.com/gotd/td/tg.MessagesRecentStickersBox
github.com/gotd/td/tg.MessagesRecentStickersClass (interface)
*github.com/gotd/td/tg.MessagesRecentStickersNotModified
*github.com/gotd/td/tg.MessagesReorderPinnedDialogsRequest
*github.com/gotd/td/tg.MessagesReorderStickerSetsRequest
*github.com/gotd/td/tg.MessagesReportEncryptedSpamRequest
*github.com/gotd/td/tg.MessagesReportReactionRequest
*github.com/gotd/td/tg.MessagesReportRequest
*github.com/gotd/td/tg.MessagesReportSpamRequest
*github.com/gotd/td/tg.MessagesRequestAppWebViewRequest
*github.com/gotd/td/tg.MessagesRequestEncryptionRequest
*github.com/gotd/td/tg.MessagesRequestSimpleWebViewRequest
*github.com/gotd/td/tg.MessagesRequestURLAuthRequest
*github.com/gotd/td/tg.MessagesRequestWebViewRequest
*github.com/gotd/td/tg.MessagesSaveDefaultSendAsRequest
*github.com/gotd/td/tg.MessagesSaveDraftRequest
*github.com/gotd/td/tg.MessagesSavedGifs
*github.com/gotd/td/tg.MessagesSavedGifsBox
github.com/gotd/td/tg.MessagesSavedGifsClass (interface)
*github.com/gotd/td/tg.MessagesSavedGifsNotModified
*github.com/gotd/td/tg.MessagesSaveGifRequest
*github.com/gotd/td/tg.MessagesSaveRecentStickerRequest
*github.com/gotd/td/tg.MessagesSearchCounter
*github.com/gotd/td/tg.MessagesSearchCounterVector
*github.com/gotd/td/tg.MessagesSearchCustomEmojiRequest
*github.com/gotd/td/tg.MessagesSearchEmojiStickerSetsRequest
*github.com/gotd/td/tg.MessagesSearchGlobalRequest
*github.com/gotd/td/tg.MessagesSearchRequest
*github.com/gotd/td/tg.MessagesSearchResultsCalendar
*github.com/gotd/td/tg.MessagesSearchResultsPositions
*github.com/gotd/td/tg.MessagesSearchSentMediaRequest
*github.com/gotd/td/tg.MessagesSearchStickerSetsRequest
*github.com/gotd/td/tg.MessagesSendBotRequestedPeerRequest
*github.com/gotd/td/tg.MessagesSendEncryptedFileRequest
*github.com/gotd/td/tg.MessagesSendEncryptedRequest
*github.com/gotd/td/tg.MessagesSendEncryptedServiceRequest
*github.com/gotd/td/tg.MessagesSendInlineBotResultRequest
*github.com/gotd/td/tg.MessagesSendMediaRequest
*github.com/gotd/td/tg.MessagesSendMessageRequest
*github.com/gotd/td/tg.MessagesSendMultiMediaRequest
*github.com/gotd/td/tg.MessagesSendReactionRequest
*github.com/gotd/td/tg.MessagesSendScheduledMessagesRequest
*github.com/gotd/td/tg.MessagesSendScreenshotNotificationRequest
*github.com/gotd/td/tg.MessagesSendVoteRequest
*github.com/gotd/td/tg.MessagesSendWebViewDataRequest
*github.com/gotd/td/tg.MessagesSendWebViewResultMessageRequest
*github.com/gotd/td/tg.MessagesSentEncryptedFile
*github.com/gotd/td/tg.MessagesSentEncryptedMessage
*github.com/gotd/td/tg.MessagesSentEncryptedMessageBox
github.com/gotd/td/tg.MessagesSentEncryptedMessageClass (interface)
*github.com/gotd/td/tg.MessagesSetBotCallbackAnswerRequest
*github.com/gotd/td/tg.MessagesSetBotPrecheckoutResultsRequest
*github.com/gotd/td/tg.MessagesSetBotShippingResultsRequest
*github.com/gotd/td/tg.MessagesSetChatAvailableReactionsRequest
*github.com/gotd/td/tg.MessagesSetChatThemeRequest
*github.com/gotd/td/tg.MessagesSetChatWallPaperRequest
*github.com/gotd/td/tg.MessagesSetDefaultHistoryTTLRequest
*github.com/gotd/td/tg.MessagesSetDefaultReactionRequest
*github.com/gotd/td/tg.MessagesSetEncryptedTypingRequest
*github.com/gotd/td/tg.MessagesSetGameScoreRequest
*github.com/gotd/td/tg.MessagesSetHistoryTTLRequest
*github.com/gotd/td/tg.MessagesSetInlineBotResultsRequest
*github.com/gotd/td/tg.MessagesSetInlineGameScoreRequest
*github.com/gotd/td/tg.MessagesSetTypingRequest
*github.com/gotd/td/tg.MessagesSponsoredMessages
*github.com/gotd/td/tg.MessagesSponsoredMessagesBox
github.com/gotd/td/tg.MessagesSponsoredMessagesClass (interface)
*github.com/gotd/td/tg.MessagesSponsoredMessagesEmpty
*github.com/gotd/td/tg.MessagesStartBotRequest
*github.com/gotd/td/tg.MessagesStartHistoryImportRequest
*github.com/gotd/td/tg.MessagesStickerSet
*github.com/gotd/td/tg.MessagesStickerSetBox
github.com/gotd/td/tg.MessagesStickerSetClass (interface)
*github.com/gotd/td/tg.MessagesStickerSetInstallResultArchive
*github.com/gotd/td/tg.MessagesStickerSetInstallResultBox
github.com/gotd/td/tg.MessagesStickerSetInstallResultClass (interface)
*github.com/gotd/td/tg.MessagesStickerSetInstallResultSuccess
*github.com/gotd/td/tg.MessagesStickerSetNotModified
*github.com/gotd/td/tg.MessagesStickers
*github.com/gotd/td/tg.MessagesStickersBox
github.com/gotd/td/tg.MessagesStickersClass (interface)
*github.com/gotd/td/tg.MessagesStickersNotModified
*github.com/gotd/td/tg.MessagesToggleBotInAttachMenuRequest
*github.com/gotd/td/tg.MessagesToggleDialogPinRequest
*github.com/gotd/td/tg.MessagesToggleNoForwardsRequest
*github.com/gotd/td/tg.MessagesTogglePeerTranslationsRequest
*github.com/gotd/td/tg.MessagesToggleStickerSetsRequest
*github.com/gotd/td/tg.MessagesTranscribeAudioRequest
*github.com/gotd/td/tg.MessagesTranscribedAudio
*github.com/gotd/td/tg.MessagesTranslateResult
*github.com/gotd/td/tg.MessagesTranslateTextRequest
*github.com/gotd/td/tg.MessagesUninstallStickerSetRequest
*github.com/gotd/td/tg.MessagesUnpinAllMessagesRequest
*github.com/gotd/td/tg.MessagesUpdateDialogFilterRequest
*github.com/gotd/td/tg.MessagesUpdateDialogFiltersOrderRequest
*github.com/gotd/td/tg.MessagesUpdatePinnedMessageRequest
*github.com/gotd/td/tg.MessagesUploadEncryptedFileRequest
*github.com/gotd/td/tg.MessagesUploadImportedMediaRequest
*github.com/gotd/td/tg.MessagesUploadMediaRequest
*github.com/gotd/td/tg.MessagesVotesList
*github.com/gotd/td/tg.MessagesWebPage
*github.com/gotd/td/tg.MessageViews
github.com/gotd/td/tg.ModifiedMessagesDialogs (interface)
github.com/gotd/td/tg.ModifiedMessagesMessages (interface)
github.com/gotd/td/tg.ModifiedWebPage (interface)
*github.com/gotd/td/tg.MyBoost
*github.com/gotd/td/tg.NearestDC
github.com/gotd/td/tg.NotEmptyChat (interface)
github.com/gotd/td/tg.NotEmptyEmojiStatus (interface)
github.com/gotd/td/tg.NotEmptyEncryptedChat (interface)
github.com/gotd/td/tg.NotEmptyInputChannel (interface)
github.com/gotd/td/tg.NotEmptyInputEncryptedFile (interface)
github.com/gotd/td/tg.NotEmptyMessage (interface)
github.com/gotd/td/tg.NotEmptyPhoneCall (interface)
github.com/gotd/td/tg.NotEmptyPhotoSize (interface)
github.com/gotd/td/tg.NotEmptyUpdatesChannelDifference (interface)
github.com/gotd/td/tg.NotForbiddenChat (interface)
*github.com/gotd/td/tg.NotificationSoundBox
github.com/gotd/td/tg.NotificationSoundClass (interface)
*github.com/gotd/td/tg.NotificationSoundDefault
*github.com/gotd/td/tg.NotificationSoundLocal
*github.com/gotd/td/tg.NotificationSoundNone
*github.com/gotd/td/tg.NotificationSoundRingtone
*github.com/gotd/td/tg.NotifyBroadcasts
*github.com/gotd/td/tg.NotifyChats
*github.com/gotd/td/tg.NotifyForumTopic
*github.com/gotd/td/tg.NotifyPeer
*github.com/gotd/td/tg.NotifyPeerBox
github.com/gotd/td/tg.NotifyPeerClass (interface)
*github.com/gotd/td/tg.NotifyUsers
*github.com/gotd/td/tg.Null
*github.com/gotd/td/tg.Page
*github.com/gotd/td/tg.PageBlockAnchor
*github.com/gotd/td/tg.PageBlockAudio
*github.com/gotd/td/tg.PageBlockAuthorDate
*github.com/gotd/td/tg.PageBlockBlockquote
*github.com/gotd/td/tg.PageBlockBox
*github.com/gotd/td/tg.PageBlockChannel
github.com/gotd/td/tg.PageBlockClass (interface)
*github.com/gotd/td/tg.PageBlockCollage
*github.com/gotd/td/tg.PageBlockCover
*github.com/gotd/td/tg.PageBlockDetails
*github.com/gotd/td/tg.PageBlockDivider
*github.com/gotd/td/tg.PageBlockEmbed
*github.com/gotd/td/tg.PageBlockEmbedPost
*github.com/gotd/td/tg.PageBlockFooter
*github.com/gotd/td/tg.PageBlockHeader
*github.com/gotd/td/tg.PageBlockKicker
*github.com/gotd/td/tg.PageBlockList
*github.com/gotd/td/tg.PageBlockMap
*github.com/gotd/td/tg.PageBlockOrderedList
*github.com/gotd/td/tg.PageBlockParagraph
*github.com/gotd/td/tg.PageBlockPhoto
*github.com/gotd/td/tg.PageBlockPreformatted
*github.com/gotd/td/tg.PageBlockPullquote
*github.com/gotd/td/tg.PageBlockRelatedArticles
*github.com/gotd/td/tg.PageBlockSlideshow
*github.com/gotd/td/tg.PageBlockSubheader
*github.com/gotd/td/tg.PageBlockSubtitle
*github.com/gotd/td/tg.PageBlockTable
*github.com/gotd/td/tg.PageBlockTitle
*github.com/gotd/td/tg.PageBlockUnsupported
*github.com/gotd/td/tg.PageBlockVideo
*github.com/gotd/td/tg.PageCaption
*github.com/gotd/td/tg.PageListItemBlocks
*github.com/gotd/td/tg.PageListItemBox
github.com/gotd/td/tg.PageListItemClass (interface)
*github.com/gotd/td/tg.PageListItemText
*github.com/gotd/td/tg.PageListOrderedItemBlocks
*github.com/gotd/td/tg.PageListOrderedItemBox
github.com/gotd/td/tg.PageListOrderedItemClass (interface)
*github.com/gotd/td/tg.PageListOrderedItemText
*github.com/gotd/td/tg.PageRelatedArticle
*github.com/gotd/td/tg.PageTableCell
*github.com/gotd/td/tg.PageTableRow
*github.com/gotd/td/tg.PasswordKdfAlgoBox
github.com/gotd/td/tg.PasswordKdfAlgoClass (interface)
*github.com/gotd/td/tg.PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow
*github.com/gotd/td/tg.PasswordKdfAlgoUnknown
*github.com/gotd/td/tg.PaymentCharge
*github.com/gotd/td/tg.PaymentFormMethod
*github.com/gotd/td/tg.PaymentRequestedInfo
*github.com/gotd/td/tg.PaymentSavedCredentialsCard
*github.com/gotd/td/tg.PaymentsApplyGiftCodeRequest
*github.com/gotd/td/tg.PaymentsAssignAppStoreTransactionRequest
*github.com/gotd/td/tg.PaymentsAssignPlayMarketTransactionRequest
*github.com/gotd/td/tg.PaymentsBankCardData
*github.com/gotd/td/tg.PaymentsCanPurchasePremiumRequest
*github.com/gotd/td/tg.PaymentsCheckedGiftCode
*github.com/gotd/td/tg.PaymentsCheckGiftCodeRequest
*github.com/gotd/td/tg.PaymentsClearSavedInfoRequest
*github.com/gotd/td/tg.PaymentsExportedInvoice
*github.com/gotd/td/tg.PaymentsExportInvoiceRequest
*github.com/gotd/td/tg.PaymentsGetBankCardDataRequest
*github.com/gotd/td/tg.PaymentsGetGiveawayInfoRequest
*github.com/gotd/td/tg.PaymentsGetPaymentFormRequest
*github.com/gotd/td/tg.PaymentsGetPaymentReceiptRequest
*github.com/gotd/td/tg.PaymentsGetPremiumGiftCodeOptionsRequest
*github.com/gotd/td/tg.PaymentsGetSavedInfoRequest
*github.com/gotd/td/tg.PaymentsGiveawayInfo
*github.com/gotd/td/tg.PaymentsGiveawayInfoBox
github.com/gotd/td/tg.PaymentsGiveawayInfoClass (interface)
*github.com/gotd/td/tg.PaymentsGiveawayInfoResults
*github.com/gotd/td/tg.PaymentsLaunchPrepaidGiveawayRequest
*github.com/gotd/td/tg.PaymentsPaymentForm
*github.com/gotd/td/tg.PaymentsPaymentReceipt
*github.com/gotd/td/tg.PaymentsPaymentResult
*github.com/gotd/td/tg.PaymentsPaymentResultBox
github.com/gotd/td/tg.PaymentsPaymentResultClass (interface)
*github.com/gotd/td/tg.PaymentsPaymentVerificationNeeded
*github.com/gotd/td/tg.PaymentsSavedInfo
*github.com/gotd/td/tg.PaymentsSendPaymentFormRequest
*github.com/gotd/td/tg.PaymentsValidatedRequestedInfo
*github.com/gotd/td/tg.PaymentsValidateRequestedInfoRequest
*github.com/gotd/td/tg.PeerBlocked
*github.com/gotd/td/tg.PeerBox
*github.com/gotd/td/tg.PeerChannel
*github.com/gotd/td/tg.PeerChat
github.com/gotd/td/tg.PeerClass (interface)
*github.com/gotd/td/tg.PeerClassVector
*github.com/gotd/td/tg.PeerColor
*github.com/gotd/td/tg.PeerLocated
*github.com/gotd/td/tg.PeerLocatedBox
github.com/gotd/td/tg.PeerLocatedClass (interface)
*github.com/gotd/td/tg.PeerNotifySettings
*github.com/gotd/td/tg.PeerSelfLocated
*github.com/gotd/td/tg.PeerSettings
*github.com/gotd/td/tg.PeerStories
*github.com/gotd/td/tg.PeerUser
*github.com/gotd/td/tg.PhoneAcceptCallRequest
*github.com/gotd/td/tg.PhoneCall
*github.com/gotd/td/tg.PhoneCallAccepted
*github.com/gotd/td/tg.PhoneCallBox
github.com/gotd/td/tg.PhoneCallClass (interface)
*github.com/gotd/td/tg.PhoneCallDiscarded
*github.com/gotd/td/tg.PhoneCallDiscardReasonBox
*github.com/gotd/td/tg.PhoneCallDiscardReasonBusy
github.com/gotd/td/tg.PhoneCallDiscardReasonClass (interface)
*github.com/gotd/td/tg.PhoneCallDiscardReasonDisconnect
*github.com/gotd/td/tg.PhoneCallDiscardReasonHangup
*github.com/gotd/td/tg.PhoneCallDiscardReasonMissed
*github.com/gotd/td/tg.PhoneCallEmpty
*github.com/gotd/td/tg.PhoneCallProtocol
*github.com/gotd/td/tg.PhoneCallRequested
*github.com/gotd/td/tg.PhoneCallWaiting
*github.com/gotd/td/tg.PhoneCheckGroupCallRequest
*github.com/gotd/td/tg.PhoneConfirmCallRequest
*github.com/gotd/td/tg.PhoneConnection
*github.com/gotd/td/tg.PhoneConnectionBox
github.com/gotd/td/tg.PhoneConnectionClass (interface)
*github.com/gotd/td/tg.PhoneConnectionWebrtc
*github.com/gotd/td/tg.PhoneCreateGroupCallRequest
*github.com/gotd/td/tg.PhoneDiscardCallRequest
*github.com/gotd/td/tg.PhoneDiscardGroupCallRequest
*github.com/gotd/td/tg.PhoneEditGroupCallParticipantRequest
*github.com/gotd/td/tg.PhoneEditGroupCallTitleRequest
*github.com/gotd/td/tg.PhoneExportedGroupCallInvite
*github.com/gotd/td/tg.PhoneExportGroupCallInviteRequest
*github.com/gotd/td/tg.PhoneGetCallConfigRequest
*github.com/gotd/td/tg.PhoneGetGroupCallJoinAsRequest
*github.com/gotd/td/tg.PhoneGetGroupCallRequest
*github.com/gotd/td/tg.PhoneGetGroupCallStreamChannelsRequest
*github.com/gotd/td/tg.PhoneGetGroupCallStreamRtmpURLRequest
*github.com/gotd/td/tg.PhoneGetGroupParticipantsRequest
*github.com/gotd/td/tg.PhoneGroupCall
*github.com/gotd/td/tg.PhoneGroupCallStreamChannels
*github.com/gotd/td/tg.PhoneGroupCallStreamRtmpURL
*github.com/gotd/td/tg.PhoneGroupParticipants
*github.com/gotd/td/tg.PhoneInviteToGroupCallRequest
*github.com/gotd/td/tg.PhoneJoinAsPeers
*github.com/gotd/td/tg.PhoneJoinGroupCallPresentationRequest
*github.com/gotd/td/tg.PhoneJoinGroupCallRequest
*github.com/gotd/td/tg.PhoneLeaveGroupCallPresentationRequest
*github.com/gotd/td/tg.PhoneLeaveGroupCallRequest
*github.com/gotd/td/tg.PhonePhoneCall
*github.com/gotd/td/tg.PhoneReceivedCallRequest
*github.com/gotd/td/tg.PhoneRequestCallRequest
*github.com/gotd/td/tg.PhoneSaveCallDebugRequest
*github.com/gotd/td/tg.PhoneSaveCallLogRequest
*github.com/gotd/td/tg.PhoneSaveDefaultGroupCallJoinAsRequest
*github.com/gotd/td/tg.PhoneSendSignalingDataRequest
*github.com/gotd/td/tg.PhoneSetCallRatingRequest
*github.com/gotd/td/tg.PhoneStartScheduledGroupCallRequest
*github.com/gotd/td/tg.PhoneToggleGroupCallRecordRequest
*github.com/gotd/td/tg.PhoneToggleGroupCallSettingsRequest
*github.com/gotd/td/tg.PhoneToggleGroupCallStartSubscriptionRequest
*github.com/gotd/td/tg.Photo
*github.com/gotd/td/tg.PhotoBox
*github.com/gotd/td/tg.PhotoCachedSize
github.com/gotd/td/tg.PhotoClass (interface)
*github.com/gotd/td/tg.PhotoEmpty
*github.com/gotd/td/tg.PhotoPathSize
*github.com/gotd/td/tg.PhotoSize
*github.com/gotd/td/tg.PhotoSizeBox
github.com/gotd/td/tg.PhotoSizeClass (interface)
*github.com/gotd/td/tg.PhotoSizeEmpty
*github.com/gotd/td/tg.PhotoSizeProgressive
*github.com/gotd/td/tg.PhotoStrippedSize
*github.com/gotd/td/tg.PhotosDeletePhotosRequest
*github.com/gotd/td/tg.PhotosGetUserPhotosRequest
*github.com/gotd/td/tg.PhotosPhoto
*github.com/gotd/td/tg.PhotosPhotos
*github.com/gotd/td/tg.PhotosPhotosBox
github.com/gotd/td/tg.PhotosPhotosClass (interface)
*github.com/gotd/td/tg.PhotosPhotosSlice
*github.com/gotd/td/tg.PhotosUpdateProfilePhotoRequest
*github.com/gotd/td/tg.PhotosUploadContactProfilePhotoRequest
*github.com/gotd/td/tg.PhotosUploadProfilePhotoRequest
*github.com/gotd/td/tg.Poll
*github.com/gotd/td/tg.PollAnswer
*github.com/gotd/td/tg.PollAnswerVoters
*github.com/gotd/td/tg.PollResults
*github.com/gotd/td/tg.PopularContact
*github.com/gotd/td/tg.PostAddress
*github.com/gotd/td/tg.PostInteractionCountersBox
github.com/gotd/td/tg.PostInteractionCountersClass (interface)
*github.com/gotd/td/tg.PostInteractionCountersMessage
*github.com/gotd/td/tg.PostInteractionCountersStory
*github.com/gotd/td/tg.PremiumApplyBoostRequest
*github.com/gotd/td/tg.PremiumBoostsList
*github.com/gotd/td/tg.PremiumBoostsStatus
*github.com/gotd/td/tg.PremiumGetBoostsListRequest
*github.com/gotd/td/tg.PremiumGetBoostsStatusRequest
*github.com/gotd/td/tg.PremiumGetMyBoostsRequest
*github.com/gotd/td/tg.PremiumGetUserBoostsRequest
*github.com/gotd/td/tg.PremiumGiftCodeOption
*github.com/gotd/td/tg.PremiumGiftCodeOptionVector
*github.com/gotd/td/tg.PremiumGiftOption
*github.com/gotd/td/tg.PremiumMyBoosts
*github.com/gotd/td/tg.PremiumSubscriptionOption
*github.com/gotd/td/tg.PrepaidGiveaway
*github.com/gotd/td/tg.PrivacyKeyAbout
*github.com/gotd/td/tg.PrivacyKeyAddedByPhone
*github.com/gotd/td/tg.PrivacyKeyBox
*github.com/gotd/td/tg.PrivacyKeyChatInvite
github.com/gotd/td/tg.PrivacyKeyClass (interface)
*github.com/gotd/td/tg.PrivacyKeyForwards
*github.com/gotd/td/tg.PrivacyKeyPhoneCall
*github.com/gotd/td/tg.PrivacyKeyPhoneNumber
*github.com/gotd/td/tg.PrivacyKeyPhoneP2P
*github.com/gotd/td/tg.PrivacyKeyProfilePhoto
*github.com/gotd/td/tg.PrivacyKeyStatusTimestamp
*github.com/gotd/td/tg.PrivacyKeyVoiceMessages
*github.com/gotd/td/tg.PrivacyRuleBox
github.com/gotd/td/tg.PrivacyRuleClass (interface)
*github.com/gotd/td/tg.PrivacyValueAllowAll
*github.com/gotd/td/tg.PrivacyValueAllowChatParticipants
*github.com/gotd/td/tg.PrivacyValueAllowCloseFriends
*github.com/gotd/td/tg.PrivacyValueAllowContacts
*github.com/gotd/td/tg.PrivacyValueAllowUsers
*github.com/gotd/td/tg.PrivacyValueDisallowAll
*github.com/gotd/td/tg.PrivacyValueDisallowChatParticipants
*github.com/gotd/td/tg.PrivacyValueDisallowContacts
*github.com/gotd/td/tg.PrivacyValueDisallowUsers
*github.com/gotd/td/tg.PublicForwardBox
github.com/gotd/td/tg.PublicForwardClass (interface)
*github.com/gotd/td/tg.PublicForwardMessage
*github.com/gotd/td/tg.PublicForwardStory
*github.com/gotd/td/tg.ReactionBox
github.com/gotd/td/tg.ReactionClass (interface)
*github.com/gotd/td/tg.ReactionCount
*github.com/gotd/td/tg.ReactionCustomEmoji
*github.com/gotd/td/tg.ReactionEmoji
*github.com/gotd/td/tg.ReactionEmpty
*github.com/gotd/td/tg.ReadParticipantDate
*github.com/gotd/td/tg.ReadParticipantDateVector
*github.com/gotd/td/tg.ReceivedNotifyMessage
*github.com/gotd/td/tg.ReceivedNotifyMessageVector
*github.com/gotd/td/tg.RecentMeURLBox
*github.com/gotd/td/tg.RecentMeURLChat
*github.com/gotd/td/tg.RecentMeURLChatInvite
github.com/gotd/td/tg.RecentMeURLClass (interface)
*github.com/gotd/td/tg.RecentMeURLStickerSet
*github.com/gotd/td/tg.RecentMeURLUnknown
*github.com/gotd/td/tg.RecentMeURLUser
*github.com/gotd/td/tg.ReplyInlineMarkup
*github.com/gotd/td/tg.ReplyKeyboardForceReply
*github.com/gotd/td/tg.ReplyKeyboardHide
*github.com/gotd/td/tg.ReplyKeyboardMarkup
*github.com/gotd/td/tg.ReplyMarkupBox
github.com/gotd/td/tg.ReplyMarkupClass (interface)
*github.com/gotd/td/tg.ReportReasonBox
github.com/gotd/td/tg.ReportReasonClass (interface)
*github.com/gotd/td/tg.RequestPeerTypeBox
*github.com/gotd/td/tg.RequestPeerTypeBroadcast
*github.com/gotd/td/tg.RequestPeerTypeChat
github.com/gotd/td/tg.RequestPeerTypeClass (interface)
*github.com/gotd/td/tg.RequestPeerTypeUser
*github.com/gotd/td/tg.RestrictionReason
*github.com/gotd/td/tg.RichTextBox
github.com/gotd/td/tg.RichTextClass (interface)
*github.com/gotd/td/tg.SavedPhoneContact
*github.com/gotd/td/tg.SavedPhoneContactVector
*github.com/gotd/td/tg.SearchResultPosition
*github.com/gotd/td/tg.SearchResultsCalendarPeriod
*github.com/gotd/td/tg.SecureCredentialsEncrypted
*github.com/gotd/td/tg.SecureData
*github.com/gotd/td/tg.SecureFile
*github.com/gotd/td/tg.SecureFileBox
github.com/gotd/td/tg.SecureFileClass (interface)
*github.com/gotd/td/tg.SecureFileEmpty
*github.com/gotd/td/tg.SecurePasswordKdfAlgoBox
github.com/gotd/td/tg.SecurePasswordKdfAlgoClass (interface)
*github.com/gotd/td/tg.SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000
*github.com/gotd/td/tg.SecurePasswordKdfAlgoSHA512
*github.com/gotd/td/tg.SecurePasswordKdfAlgoUnknown
*github.com/gotd/td/tg.SecurePlainDataBox
github.com/gotd/td/tg.SecurePlainDataClass (interface)
*github.com/gotd/td/tg.SecurePlainEmail
*github.com/gotd/td/tg.SecurePlainPhone
*github.com/gotd/td/tg.SecureRequiredType
*github.com/gotd/td/tg.SecureRequiredTypeBox
github.com/gotd/td/tg.SecureRequiredTypeClass (interface)
*github.com/gotd/td/tg.SecureRequiredTypeOneOf
*github.com/gotd/td/tg.SecureSecretSettings
*github.com/gotd/td/tg.SecureValue
*github.com/gotd/td/tg.SecureValueError
*github.com/gotd/td/tg.SecureValueErrorBox
github.com/gotd/td/tg.SecureValueErrorClass (interface)
*github.com/gotd/td/tg.SecureValueErrorData
*github.com/gotd/td/tg.SecureValueErrorFile
*github.com/gotd/td/tg.SecureValueErrorFiles
*github.com/gotd/td/tg.SecureValueErrorFrontSide
*github.com/gotd/td/tg.SecureValueErrorReverseSide
*github.com/gotd/td/tg.SecureValueErrorSelfie
*github.com/gotd/td/tg.SecureValueErrorTranslationFile
*github.com/gotd/td/tg.SecureValueErrorTranslationFiles
*github.com/gotd/td/tg.SecureValueHash
*github.com/gotd/td/tg.SecureValueTypeAddress
*github.com/gotd/td/tg.SecureValueTypeBankStatement
*github.com/gotd/td/tg.SecureValueTypeBox
github.com/gotd/td/tg.SecureValueTypeClass (interface)
*github.com/gotd/td/tg.SecureValueTypeDriverLicense
*github.com/gotd/td/tg.SecureValueTypeEmail
*github.com/gotd/td/tg.SecureValueTypeIdentityCard
*github.com/gotd/td/tg.SecureValueTypeInternalPassport
*github.com/gotd/td/tg.SecureValueTypePassport
*github.com/gotd/td/tg.SecureValueTypePassportRegistration
*github.com/gotd/td/tg.SecureValueTypePersonalDetails
*github.com/gotd/td/tg.SecureValueTypePhone
*github.com/gotd/td/tg.SecureValueTypeRentalAgreement
*github.com/gotd/td/tg.SecureValueTypeTemporaryRegistration
*github.com/gotd/td/tg.SecureValueTypeUtilityBill
*github.com/gotd/td/tg.SecureValueVector
*github.com/gotd/td/tg.SendAsPeer
*github.com/gotd/td/tg.SendMessageActionBox
github.com/gotd/td/tg.SendMessageActionClass (interface)
*github.com/gotd/td/tg.SendMessageCancelAction
*github.com/gotd/td/tg.SendMessageChooseContactAction
*github.com/gotd/td/tg.SendMessageChooseStickerAction
*github.com/gotd/td/tg.SendMessageEmojiInteraction
*github.com/gotd/td/tg.SendMessageEmojiInteractionSeen
*github.com/gotd/td/tg.SendMessageGamePlayAction
*github.com/gotd/td/tg.SendMessageGeoLocationAction
*github.com/gotd/td/tg.SendMessageHistoryImportAction
*github.com/gotd/td/tg.SendMessageRecordAudioAction
*github.com/gotd/td/tg.SendMessageRecordRoundAction
*github.com/gotd/td/tg.SendMessageRecordVideoAction
*github.com/gotd/td/tg.SendMessageTypingAction
*github.com/gotd/td/tg.SendMessageUploadAudioAction
*github.com/gotd/td/tg.SendMessageUploadDocumentAction
*github.com/gotd/td/tg.SendMessageUploadPhotoAction
*github.com/gotd/td/tg.SendMessageUploadRoundAction
*github.com/gotd/td/tg.SendMessageUploadVideoAction
*github.com/gotd/td/tg.ShippingOption
*github.com/gotd/td/tg.SimpleWebViewResultURL
*github.com/gotd/td/tg.SpeakingInGroupCallAction
*github.com/gotd/td/tg.SponsoredMessage
*github.com/gotd/td/tg.SponsoredWebPage
*github.com/gotd/td/tg.StatsAbsValueAndPrev
*github.com/gotd/td/tg.StatsBroadcastStats
*github.com/gotd/td/tg.StatsDateRangeDays
*github.com/gotd/td/tg.StatsGetBroadcastStatsRequest
*github.com/gotd/td/tg.StatsGetMegagroupStatsRequest
*github.com/gotd/td/tg.StatsGetMessagePublicForwardsRequest
*github.com/gotd/td/tg.StatsGetMessageStatsRequest
*github.com/gotd/td/tg.StatsGetStoryPublicForwardsRequest
*github.com/gotd/td/tg.StatsGetStoryStatsRequest
*github.com/gotd/td/tg.StatsGraph
*github.com/gotd/td/tg.StatsGraphAsync
*github.com/gotd/td/tg.StatsGraphBox
github.com/gotd/td/tg.StatsGraphClass (interface)
*github.com/gotd/td/tg.StatsGraphError
*github.com/gotd/td/tg.StatsGroupTopAdmin
*github.com/gotd/td/tg.StatsGroupTopInviter
*github.com/gotd/td/tg.StatsGroupTopPoster
*github.com/gotd/td/tg.StatsLoadAsyncGraphRequest
*github.com/gotd/td/tg.StatsMegagroupStats
*github.com/gotd/td/tg.StatsMessageStats
*github.com/gotd/td/tg.StatsPercentValue
*github.com/gotd/td/tg.StatsPublicForwards
*github.com/gotd/td/tg.StatsStoryStats
*github.com/gotd/td/tg.StatsURL
*github.com/gotd/td/tg.StickerKeyword
*github.com/gotd/td/tg.StickerPack
*github.com/gotd/td/tg.StickerSet
*github.com/gotd/td/tg.StickerSetCovered
*github.com/gotd/td/tg.StickerSetCoveredBox
github.com/gotd/td/tg.StickerSetCoveredClass (interface)
*github.com/gotd/td/tg.StickerSetCoveredClassVector
*github.com/gotd/td/tg.StickerSetFullCovered
*github.com/gotd/td/tg.StickerSetMultiCovered
*github.com/gotd/td/tg.StickerSetNoCovered
*github.com/gotd/td/tg.StickersAddStickerToSetRequest
*github.com/gotd/td/tg.StickersChangeStickerPositionRequest
*github.com/gotd/td/tg.StickersChangeStickerRequest
*github.com/gotd/td/tg.StickersCheckShortNameRequest
*github.com/gotd/td/tg.StickersCreateStickerSetRequest
*github.com/gotd/td/tg.StickersDeleteStickerSetRequest
*github.com/gotd/td/tg.StickersRemoveStickerFromSetRequest
*github.com/gotd/td/tg.StickersRenameStickerSetRequest
*github.com/gotd/td/tg.StickersSetStickerSetThumbRequest
*github.com/gotd/td/tg.StickersSuggestedShortName
*github.com/gotd/td/tg.StickersSuggestShortNameRequest
*github.com/gotd/td/tg.StorageFileGif
*github.com/gotd/td/tg.StorageFileJpeg
*github.com/gotd/td/tg.StorageFileMov
*github.com/gotd/td/tg.StorageFileMp3
*github.com/gotd/td/tg.StorageFileMp4
*github.com/gotd/td/tg.StorageFilePartial
*github.com/gotd/td/tg.StorageFilePdf
*github.com/gotd/td/tg.StorageFilePng
*github.com/gotd/td/tg.StorageFileTypeBox
github.com/gotd/td/tg.StorageFileTypeClass (interface)
*github.com/gotd/td/tg.StorageFileUnknown
*github.com/gotd/td/tg.StorageFileWebp
*github.com/gotd/td/tg.StoriesActivateStealthModeRequest
*github.com/gotd/td/tg.StoriesAllStories
*github.com/gotd/td/tg.StoriesAllStoriesBox
github.com/gotd/td/tg.StoriesAllStoriesClass (interface)
*github.com/gotd/td/tg.StoriesAllStoriesNotModified
*github.com/gotd/td/tg.StoriesCanSendStoryRequest
*github.com/gotd/td/tg.StoriesDeleteStoriesRequest
*github.com/gotd/td/tg.StoriesEditStoryRequest
*github.com/gotd/td/tg.StoriesExportStoryLinkRequest
*github.com/gotd/td/tg.StoriesGetAllReadPeerStoriesRequest
*github.com/gotd/td/tg.StoriesGetAllStoriesRequest
*github.com/gotd/td/tg.StoriesGetChatsToSendRequest
*github.com/gotd/td/tg.StoriesGetPeerMaxIDsRequest
*github.com/gotd/td/tg.StoriesGetPeerStoriesRequest
*github.com/gotd/td/tg.StoriesGetPinnedStoriesRequest
*github.com/gotd/td/tg.StoriesGetStoriesArchiveRequest
*github.com/gotd/td/tg.StoriesGetStoriesByIDRequest
*github.com/gotd/td/tg.StoriesGetStoriesViewsRequest
*github.com/gotd/td/tg.StoriesGetStoryReactionsListRequest
*github.com/gotd/td/tg.StoriesGetStoryViewsListRequest
*github.com/gotd/td/tg.StoriesIncrementStoryViewsRequest
*github.com/gotd/td/tg.StoriesPeerStories
*github.com/gotd/td/tg.StoriesReadStoriesRequest
*github.com/gotd/td/tg.StoriesReportRequest
*github.com/gotd/td/tg.StoriesSendReactionRequest
*github.com/gotd/td/tg.StoriesSendStoryRequest
*github.com/gotd/td/tg.StoriesStealthMode
*github.com/gotd/td/tg.StoriesStories
*github.com/gotd/td/tg.StoriesStoryReactionsList
*github.com/gotd/td/tg.StoriesStoryViews
*github.com/gotd/td/tg.StoriesStoryViewsList
*github.com/gotd/td/tg.StoriesToggleAllStoriesHiddenRequest
*github.com/gotd/td/tg.StoriesTogglePeerStoriesHiddenRequest
*github.com/gotd/td/tg.StoriesTogglePinnedRequest
*github.com/gotd/td/tg.StoryFwdHeader
*github.com/gotd/td/tg.StoryItem
*github.com/gotd/td/tg.StoryItemBox
github.com/gotd/td/tg.StoryItemClass (interface)
*github.com/gotd/td/tg.StoryItemDeleted
*github.com/gotd/td/tg.StoryItemSkipped
*github.com/gotd/td/tg.StoryReaction
*github.com/gotd/td/tg.StoryReactionBox
github.com/gotd/td/tg.StoryReactionClass (interface)
*github.com/gotd/td/tg.StoryReactionPublicForward
*github.com/gotd/td/tg.StoryReactionPublicRepost
*github.com/gotd/td/tg.StoryView
*github.com/gotd/td/tg.StoryViewBox
github.com/gotd/td/tg.StoryViewClass (interface)
*github.com/gotd/td/tg.StoryViewPublicForward
*github.com/gotd/td/tg.StoryViewPublicRepost
*github.com/gotd/td/tg.StoryViews
*github.com/gotd/td/tg.String
*github.com/gotd/td/tg.TestUseConfigSimpleRequest
*github.com/gotd/td/tg.TestUseErrorRequest
*github.com/gotd/td/tg.TextAnchor
*github.com/gotd/td/tg.TextBold
*github.com/gotd/td/tg.TextConcat
*github.com/gotd/td/tg.TextEmail
*github.com/gotd/td/tg.TextEmpty
*github.com/gotd/td/tg.TextFixed
*github.com/gotd/td/tg.TextImage
*github.com/gotd/td/tg.TextItalic
*github.com/gotd/td/tg.TextMarked
*github.com/gotd/td/tg.TextPhone
*github.com/gotd/td/tg.TextPlain
*github.com/gotd/td/tg.TextStrike
*github.com/gotd/td/tg.TextSubscript
*github.com/gotd/td/tg.TextSuperscript
*github.com/gotd/td/tg.TextUnderline
*github.com/gotd/td/tg.TextURL
*github.com/gotd/td/tg.TextWithEntities
*github.com/gotd/td/tg.Theme
*github.com/gotd/td/tg.ThemeSettings
*github.com/gotd/td/tg.TopPeer
*github.com/gotd/td/tg.TopPeerCategoryBotsInline
*github.com/gotd/td/tg.TopPeerCategoryBotsPM
*github.com/gotd/td/tg.TopPeerCategoryBox
*github.com/gotd/td/tg.TopPeerCategoryChannels
github.com/gotd/td/tg.TopPeerCategoryClass (interface)
*github.com/gotd/td/tg.TopPeerCategoryCorrespondents
*github.com/gotd/td/tg.TopPeerCategoryForwardChats
*github.com/gotd/td/tg.TopPeerCategoryForwardUsers
*github.com/gotd/td/tg.TopPeerCategoryGroups
*github.com/gotd/td/tg.TopPeerCategoryPeers
*github.com/gotd/td/tg.TopPeerCategoryPhoneCalls
*github.com/gotd/td/tg.True
*github.com/gotd/td/tg.UpdateAttachMenuBots
*github.com/gotd/td/tg.UpdateAutoSaveSettings
*github.com/gotd/td/tg.UpdateBotCallbackQuery
*github.com/gotd/td/tg.UpdateBotChatBoost
*github.com/gotd/td/tg.UpdateBotChatInviteRequester
*github.com/gotd/td/tg.UpdateBotCommands
*github.com/gotd/td/tg.UpdateBotInlineQuery
*github.com/gotd/td/tg.UpdateBotInlineSend
*github.com/gotd/td/tg.UpdateBotMenuButton
*github.com/gotd/td/tg.UpdateBotMessageReaction
*github.com/gotd/td/tg.UpdateBotMessageReactions
*github.com/gotd/td/tg.UpdateBotPrecheckoutQuery
*github.com/gotd/td/tg.UpdateBotShippingQuery
*github.com/gotd/td/tg.UpdateBotStopped
*github.com/gotd/td/tg.UpdateBotWebhookJSON
*github.com/gotd/td/tg.UpdateBotWebhookJSONQuery
*github.com/gotd/td/tg.UpdateBox
*github.com/gotd/td/tg.UpdateChannel
*github.com/gotd/td/tg.UpdateChannelAvailableMessages
*github.com/gotd/td/tg.UpdateChannelMessageForwards
*github.com/gotd/td/tg.UpdateChannelMessageViews
*github.com/gotd/td/tg.UpdateChannelParticipant
*github.com/gotd/td/tg.UpdateChannelPinnedTopic
*github.com/gotd/td/tg.UpdateChannelPinnedTopics
*github.com/gotd/td/tg.UpdateChannelReadMessagesContents
*github.com/gotd/td/tg.UpdateChannelTooLong
*github.com/gotd/td/tg.UpdateChannelUserTyping
*github.com/gotd/td/tg.UpdateChannelViewForumAsMessages
*github.com/gotd/td/tg.UpdateChannelWebPage
*github.com/gotd/td/tg.UpdateChat
*github.com/gotd/td/tg.UpdateChatDefaultBannedRights
*github.com/gotd/td/tg.UpdateChatParticipant
*github.com/gotd/td/tg.UpdateChatParticipantAdd
*github.com/gotd/td/tg.UpdateChatParticipantAdmin
*github.com/gotd/td/tg.UpdateChatParticipantDelete
*github.com/gotd/td/tg.UpdateChatParticipants
*github.com/gotd/td/tg.UpdateChatUserTyping
github.com/gotd/td/tg.UpdateClass (interface)
*github.com/gotd/td/tg.UpdateConfig
*github.com/gotd/td/tg.UpdateContactsReset
*github.com/gotd/td/tg.UpdateDCOptions
*github.com/gotd/td/tg.UpdateDeleteChannelMessages
*github.com/gotd/td/tg.UpdateDeleteMessages
*github.com/gotd/td/tg.UpdateDeleteScheduledMessages
*github.com/gotd/td/tg.UpdateDialogFilter
*github.com/gotd/td/tg.UpdateDialogFilterOrder
*github.com/gotd/td/tg.UpdateDialogFilters
*github.com/gotd/td/tg.UpdateDialogPinned
*github.com/gotd/td/tg.UpdateDialogUnreadMark
*github.com/gotd/td/tg.UpdateDraftMessage
*github.com/gotd/td/tg.UpdateEditChannelMessage
*github.com/gotd/td/tg.UpdateEditMessage
*github.com/gotd/td/tg.UpdateEncryptedChatTyping
*github.com/gotd/td/tg.UpdateEncryptedMessagesRead
*github.com/gotd/td/tg.UpdateEncryption
*github.com/gotd/td/tg.UpdateFavedStickers
*github.com/gotd/td/tg.UpdateFolderPeers
*github.com/gotd/td/tg.UpdateGeoLiveViewed
*github.com/gotd/td/tg.UpdateGroupCall
*github.com/gotd/td/tg.UpdateGroupCallConnection
*github.com/gotd/td/tg.UpdateGroupCallParticipants
*github.com/gotd/td/tg.UpdateGroupInvitePrivacyForbidden
*github.com/gotd/td/tg.UpdateInlineBotCallbackQuery
*github.com/gotd/td/tg.UpdateLangPack
*github.com/gotd/td/tg.UpdateLangPackTooLong
*github.com/gotd/td/tg.UpdateLoginToken
*github.com/gotd/td/tg.UpdateMessageExtendedMedia
*github.com/gotd/td/tg.UpdateMessageID
*github.com/gotd/td/tg.UpdateMessagePoll
*github.com/gotd/td/tg.UpdateMessagePollVote
*github.com/gotd/td/tg.UpdateMessageReactions
*github.com/gotd/td/tg.UpdateMoveStickerSetToTop
*github.com/gotd/td/tg.UpdateNewAuthorization
*github.com/gotd/td/tg.UpdateNewChannelMessage
*github.com/gotd/td/tg.UpdateNewEncryptedMessage
*github.com/gotd/td/tg.UpdateNewMessage
*github.com/gotd/td/tg.UpdateNewScheduledMessage
*github.com/gotd/td/tg.UpdateNewStickerSet
*github.com/gotd/td/tg.UpdateNotifySettings
*github.com/gotd/td/tg.UpdatePeerBlocked
*github.com/gotd/td/tg.UpdatePeerHistoryTTL
*github.com/gotd/td/tg.UpdatePeerLocated
*github.com/gotd/td/tg.UpdatePeerSettings
*github.com/gotd/td/tg.UpdatePeerWallpaper
*github.com/gotd/td/tg.UpdatePendingJoinRequests
*github.com/gotd/td/tg.UpdatePhoneCall
*github.com/gotd/td/tg.UpdatePhoneCallSignalingData
*github.com/gotd/td/tg.UpdatePinnedChannelMessages
*github.com/gotd/td/tg.UpdatePinnedDialogs
*github.com/gotd/td/tg.UpdatePinnedMessages
*github.com/gotd/td/tg.UpdatePrivacy
*github.com/gotd/td/tg.UpdatePtsChanged
*github.com/gotd/td/tg.UpdateReadChannelDiscussionInbox
*github.com/gotd/td/tg.UpdateReadChannelDiscussionOutbox
*github.com/gotd/td/tg.UpdateReadChannelInbox
*github.com/gotd/td/tg.UpdateReadChannelOutbox
*github.com/gotd/td/tg.UpdateReadFeaturedEmojiStickers
*github.com/gotd/td/tg.UpdateReadFeaturedStickers
*github.com/gotd/td/tg.UpdateReadHistoryInbox
*github.com/gotd/td/tg.UpdateReadHistoryOutbox
*github.com/gotd/td/tg.UpdateReadMessagesContents
*github.com/gotd/td/tg.UpdateReadStories
*github.com/gotd/td/tg.UpdateRecentEmojiStatuses
*github.com/gotd/td/tg.UpdateRecentReactions
*github.com/gotd/td/tg.UpdateRecentStickers
*github.com/gotd/td/tg.UpdateSavedGifs
*github.com/gotd/td/tg.UpdateSavedRingtones
*github.com/gotd/td/tg.UpdateSentStoryReaction
*github.com/gotd/td/tg.UpdateServiceNotification
*github.com/gotd/td/tg.UpdateShort
*github.com/gotd/td/tg.UpdateShortChatMessage
*github.com/gotd/td/tg.UpdateShortMessage
*github.com/gotd/td/tg.UpdateShortSentMessage
*github.com/gotd/td/tg.UpdateStickerSets
*github.com/gotd/td/tg.UpdateStickerSetsOrder
*github.com/gotd/td/tg.UpdateStoriesStealthMode
*github.com/gotd/td/tg.UpdateStory
*github.com/gotd/td/tg.UpdateStoryID
*github.com/gotd/td/tg.Updates
*github.com/gotd/td/tg.UpdatesBox
*github.com/gotd/td/tg.UpdatesChannelDifference
*github.com/gotd/td/tg.UpdatesChannelDifferenceBox
github.com/gotd/td/tg.UpdatesChannelDifferenceClass (interface)
*github.com/gotd/td/tg.UpdatesChannelDifferenceEmpty
*github.com/gotd/td/tg.UpdatesChannelDifferenceTooLong
github.com/gotd/td/tg.UpdatesClass (interface)
*github.com/gotd/td/tg.UpdatesCombined
*github.com/gotd/td/tg.UpdatesDifference
*github.com/gotd/td/tg.UpdatesDifferenceBox
github.com/gotd/td/tg.UpdatesDifferenceClass (interface)
*github.com/gotd/td/tg.UpdatesDifferenceEmpty
*github.com/gotd/td/tg.UpdatesDifferenceSlice
*github.com/gotd/td/tg.UpdatesDifferenceTooLong
*github.com/gotd/td/tg.UpdatesGetChannelDifferenceRequest
*github.com/gotd/td/tg.UpdatesGetDifferenceRequest
*github.com/gotd/td/tg.UpdatesGetStateRequest
*github.com/gotd/td/tg.UpdatesState
*github.com/gotd/td/tg.UpdatesTooLong
*github.com/gotd/td/tg.UpdateTheme
*github.com/gotd/td/tg.UpdateTranscribedAudio
*github.com/gotd/td/tg.UpdateUser
*github.com/gotd/td/tg.UpdateUserEmojiStatus
*github.com/gotd/td/tg.UpdateUserName
*github.com/gotd/td/tg.UpdateUserPhone
*github.com/gotd/td/tg.UpdateUserStatus
*github.com/gotd/td/tg.UpdateUserTyping
*github.com/gotd/td/tg.UpdateWebPage
*github.com/gotd/td/tg.UpdateWebViewResultSent
*github.com/gotd/td/tg.UploadCDNFile
*github.com/gotd/td/tg.UploadCDNFileBox
github.com/gotd/td/tg.UploadCDNFileClass (interface)
*github.com/gotd/td/tg.UploadCDNFileReuploadNeeded
*github.com/gotd/td/tg.UploadFile
*github.com/gotd/td/tg.UploadFileBox
*github.com/gotd/td/tg.UploadFileCDNRedirect
github.com/gotd/td/tg.UploadFileClass (interface)
*github.com/gotd/td/tg.UploadGetCDNFileHashesRequest
*github.com/gotd/td/tg.UploadGetCDNFileRequest
*github.com/gotd/td/tg.UploadGetFileHashesRequest
*github.com/gotd/td/tg.UploadGetFileRequest
*github.com/gotd/td/tg.UploadGetWebFileRequest
*github.com/gotd/td/tg.UploadReuploadCDNFileRequest
*github.com/gotd/td/tg.UploadSaveBigFilePartRequest
*github.com/gotd/td/tg.UploadSaveFilePartRequest
*github.com/gotd/td/tg.UploadWebFile
*github.com/gotd/td/tg.URLAuthResultAccepted
*github.com/gotd/td/tg.URLAuthResultBox
github.com/gotd/td/tg.URLAuthResultClass (interface)
*github.com/gotd/td/tg.URLAuthResultDefault
*github.com/gotd/td/tg.URLAuthResultRequest
*github.com/gotd/td/tg.User
*github.com/gotd/td/tg.UserBox
github.com/gotd/td/tg.UserClass (interface)
*github.com/gotd/td/tg.UserClassVector
*github.com/gotd/td/tg.UserEmpty
*github.com/gotd/td/tg.UserFull
*github.com/gotd/td/tg.Username
*github.com/gotd/td/tg.UserProfilePhoto
*github.com/gotd/td/tg.UserProfilePhotoBox
github.com/gotd/td/tg.UserProfilePhotoClass (interface)
*github.com/gotd/td/tg.UserProfilePhotoEmpty
*github.com/gotd/td/tg.UserStatusBox
github.com/gotd/td/tg.UserStatusClass (interface)
*github.com/gotd/td/tg.UserStatusEmpty
*github.com/gotd/td/tg.UserStatusLastMonth
*github.com/gotd/td/tg.UserStatusLastWeek
*github.com/gotd/td/tg.UserStatusOffline
*github.com/gotd/td/tg.UserStatusOnline
*github.com/gotd/td/tg.UserStatusRecently
*github.com/gotd/td/tg.UsersGetFullUserRequest
*github.com/gotd/td/tg.UsersGetUsersRequest
*github.com/gotd/td/tg.UsersSetSecureValueErrorsRequest
*github.com/gotd/td/tg.UsersUserFull
*github.com/gotd/td/tg.VideoSize
*github.com/gotd/td/tg.VideoSizeBox
github.com/gotd/td/tg.VideoSizeClass (interface)
*github.com/gotd/td/tg.VideoSizeEmojiMarkup
*github.com/gotd/td/tg.VideoSizeStickerMarkup
*github.com/gotd/td/tg.WallPaper
*github.com/gotd/td/tg.WallPaperBox
github.com/gotd/td/tg.WallPaperClass (interface)
*github.com/gotd/td/tg.WallPaperClassVector
*github.com/gotd/td/tg.WallPaperNoFile
*github.com/gotd/td/tg.WallPaperSettings
*github.com/gotd/td/tg.WebAuthorization
*github.com/gotd/td/tg.WebDocument
*github.com/gotd/td/tg.WebDocumentBox
github.com/gotd/td/tg.WebDocumentClass (interface)
*github.com/gotd/td/tg.WebDocumentNoProxy
*github.com/gotd/td/tg.WebPage
*github.com/gotd/td/tg.WebPageAttributeBox
github.com/gotd/td/tg.WebPageAttributeClass (interface)
*github.com/gotd/td/tg.WebPageAttributeStory
*github.com/gotd/td/tg.WebPageAttributeTheme
*github.com/gotd/td/tg.WebPageBox
github.com/gotd/td/tg.WebPageClass (interface)
*github.com/gotd/td/tg.WebPageEmpty
*github.com/gotd/td/tg.WebPageNotModified
*github.com/gotd/td/tg.WebPagePending
*github.com/gotd/td/tg.WebViewMessageSent
*github.com/gotd/td/tg.WebViewResultURL
/* 3+ unexporteds ... */ /* 3+ unexporteds: */
*github.com/gotd/td/internal/exchange.reqOrDH
*github.com/gotd/td/internal/exchange.reqPQ
github.com/gotd/td/telegram/internal/manager.noopDecoder
As Inputs Of (at least 13, in which 9 are exported )
func (*Buffer ).Decode (d Decoder ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/internal/pool.Conn .Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/internal/pool.(*DC ).Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.(*Client ).Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.CloseInvoker .Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.InvokeFunc .Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram/internal/manager.(*Conn ).Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/tg.Invoker .Invoke (ctx context .Context , input Encoder , output Decoder ) error
/* 4+ unexporteds ... */ /* 4+ unexporteds: */
func github.com/gotd/td/telegram.(*Client ).invokeConn (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.(*Client ).invokeDirect (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.(*Client ).invokeMigrate (ctx context .Context , dcID int , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.(*Client ).invokeSub (ctx context .Context , dc int , input Encoder , output Decoder ) error
type Encoder (interface)
Encoder can encode it's binary form to Buffer.
Methods (only one, which is exported )
( Encoder) Encode (b *Buffer ) error
Implemented By (at least 2258, in which 2257 are exported )
Fields
Int128
Int256
Object (interface)
github.com/gotd/td/internal/crypto.EncryptedMessage
github.com/gotd/td/internal/crypto.EncryptedMessageData
*github.com/gotd/td/internal/mt.BadMsgNotification
*github.com/gotd/td/internal/mt.BadMsgNotificationBox
github.com/gotd/td/internal/mt.BadMsgNotificationClass (interface)
*github.com/gotd/td/internal/mt.BadServerSalt
*github.com/gotd/td/internal/mt.ClientDHInnerData
*github.com/gotd/td/internal/mt.DestroySessionNone
*github.com/gotd/td/internal/mt.DestroySessionOk
*github.com/gotd/td/internal/mt.DestroySessionRequest
*github.com/gotd/td/internal/mt.DestroySessionResBox
github.com/gotd/td/internal/mt.DestroySessionResClass (interface)
*github.com/gotd/td/internal/mt.DhGenFail
*github.com/gotd/td/internal/mt.DhGenOk
*github.com/gotd/td/internal/mt.DhGenRetry
*github.com/gotd/td/internal/mt.FutureSalt
*github.com/gotd/td/internal/mt.FutureSalts
*github.com/gotd/td/internal/mt.GetFutureSaltsRequest
*github.com/gotd/td/internal/mt.GzipPacked
*github.com/gotd/td/internal/mt.HTTPWaitRequest
*github.com/gotd/td/internal/mt.Message
*github.com/gotd/td/internal/mt.MsgContainer
*github.com/gotd/td/internal/mt.MsgCopy
*github.com/gotd/td/internal/mt.MsgDetailedInfo
*github.com/gotd/td/internal/mt.MsgDetailedInfoBox
github.com/gotd/td/internal/mt.MsgDetailedInfoClass (interface)
*github.com/gotd/td/internal/mt.MsgNewDetailedInfo
*github.com/gotd/td/internal/mt.MsgResendReq
*github.com/gotd/td/internal/mt.MsgsAck
*github.com/gotd/td/internal/mt.MsgsAllInfo
*github.com/gotd/td/internal/mt.MsgsStateInfo
*github.com/gotd/td/internal/mt.MsgsStateReq
*github.com/gotd/td/internal/mt.NewSessionCreated
*github.com/gotd/td/internal/mt.PingDelayDisconnectRequest
*github.com/gotd/td/internal/mt.PingRequest
*github.com/gotd/td/internal/mt.Pong
*github.com/gotd/td/internal/mt.PQInnerData
*github.com/gotd/td/internal/mt.PQInnerDataBox
github.com/gotd/td/internal/mt.PQInnerDataClass (interface)
*github.com/gotd/td/internal/mt.PQInnerDataDC
*github.com/gotd/td/internal/mt.PQInnerDataTempDC
*github.com/gotd/td/internal/mt.ReqDHParamsRequest
*github.com/gotd/td/internal/mt.ReqPqMultiRequest
*github.com/gotd/td/internal/mt.ReqPqRequest
*github.com/gotd/td/internal/mt.ResPQ
*github.com/gotd/td/internal/mt.RPCAnswerDropped
*github.com/gotd/td/internal/mt.RPCAnswerDroppedRunning
*github.com/gotd/td/internal/mt.RPCAnswerUnknown
*github.com/gotd/td/internal/mt.RPCDropAnswerBox
github.com/gotd/td/internal/mt.RPCDropAnswerClass (interface)
*github.com/gotd/td/internal/mt.RPCDropAnswerRequest
*github.com/gotd/td/internal/mt.RPCError
*github.com/gotd/td/internal/mt.RPCResult
*github.com/gotd/td/internal/mt.ServerDHInnerData
*github.com/gotd/td/internal/mt.ServerDHParamsBox
github.com/gotd/td/internal/mt.ServerDHParamsClass (interface)
*github.com/gotd/td/internal/mt.ServerDHParamsFail
*github.com/gotd/td/internal/mt.ServerDHParamsOk
*github.com/gotd/td/internal/mt.SetClientDHParamsAnswerBox
github.com/gotd/td/internal/mt.SetClientDHParamsAnswerClass (interface)
*github.com/gotd/td/internal/mt.SetClientDHParamsRequest
github.com/gotd/td/internal/proto.GZIP
*github.com/gotd/td/internal/proto.Message
*github.com/gotd/td/internal/proto.MessageContainer
*github.com/gotd/td/internal/proto.Result
github.com/gotd/td/internal/proto.UnencryptedMessage
*github.com/gotd/td/tg.AccessPointRule
*github.com/gotd/td/tg.AccountAcceptAuthorizationRequest
*github.com/gotd/td/tg.AccountAuthorizationForm
*github.com/gotd/td/tg.AccountAuthorizations
*github.com/gotd/td/tg.AccountAutoDownloadSettings
*github.com/gotd/td/tg.AccountAutoSaveSettings
*github.com/gotd/td/tg.AccountCancelPasswordEmailRequest
*github.com/gotd/td/tg.AccountChangeAuthorizationSettingsRequest
*github.com/gotd/td/tg.AccountChangePhoneRequest
*github.com/gotd/td/tg.AccountCheckUsernameRequest
*github.com/gotd/td/tg.AccountClearRecentEmojiStatusesRequest
*github.com/gotd/td/tg.AccountConfirmPasswordEmailRequest
*github.com/gotd/td/tg.AccountConfirmPhoneRequest
*github.com/gotd/td/tg.AccountContentSettings
*github.com/gotd/td/tg.AccountCreateThemeRequest
*github.com/gotd/td/tg.AccountDaysTTL
*github.com/gotd/td/tg.AccountDeclinePasswordResetRequest
*github.com/gotd/td/tg.AccountDeleteAccountRequest
*github.com/gotd/td/tg.AccountDeleteAutoSaveExceptionsRequest
*github.com/gotd/td/tg.AccountDeleteSecureValueRequest
*github.com/gotd/td/tg.AccountEmailVerified
*github.com/gotd/td/tg.AccountEmailVerifiedBox
github.com/gotd/td/tg.AccountEmailVerifiedClass (interface)
*github.com/gotd/td/tg.AccountEmailVerifiedLogin
*github.com/gotd/td/tg.AccountEmojiStatuses
*github.com/gotd/td/tg.AccountEmojiStatusesBox
github.com/gotd/td/tg.AccountEmojiStatusesClass (interface)
*github.com/gotd/td/tg.AccountEmojiStatusesNotModified
*github.com/gotd/td/tg.AccountFinishTakeoutSessionRequest
*github.com/gotd/td/tg.AccountGetAccountTTLRequest
*github.com/gotd/td/tg.AccountGetAllSecureValuesRequest
*github.com/gotd/td/tg.AccountGetAuthorizationFormRequest
*github.com/gotd/td/tg.AccountGetAuthorizationsRequest
*github.com/gotd/td/tg.AccountGetAutoDownloadSettingsRequest
*github.com/gotd/td/tg.AccountGetAutoSaveSettingsRequest
*github.com/gotd/td/tg.AccountGetChannelDefaultEmojiStatusesRequest
*github.com/gotd/td/tg.AccountGetChannelRestrictedStatusEmojisRequest
*github.com/gotd/td/tg.AccountGetChatThemesRequest
*github.com/gotd/td/tg.AccountGetContactSignUpNotificationRequest
*github.com/gotd/td/tg.AccountGetContentSettingsRequest
*github.com/gotd/td/tg.AccountGetDefaultBackgroundEmojisRequest
*github.com/gotd/td/tg.AccountGetDefaultEmojiStatusesRequest
*github.com/gotd/td/tg.AccountGetDefaultGroupPhotoEmojisRequest
*github.com/gotd/td/tg.AccountGetDefaultProfilePhotoEmojisRequest
*github.com/gotd/td/tg.AccountGetGlobalPrivacySettingsRequest
*github.com/gotd/td/tg.AccountGetMultiWallPapersRequest
*github.com/gotd/td/tg.AccountGetNotifyExceptionsRequest
*github.com/gotd/td/tg.AccountGetNotifySettingsRequest
*github.com/gotd/td/tg.AccountGetPasswordRequest
*github.com/gotd/td/tg.AccountGetPasswordSettingsRequest
*github.com/gotd/td/tg.AccountGetPrivacyRequest
*github.com/gotd/td/tg.AccountGetRecentEmojiStatusesRequest
*github.com/gotd/td/tg.AccountGetSavedRingtonesRequest
*github.com/gotd/td/tg.AccountGetSecureValueRequest
*github.com/gotd/td/tg.AccountGetThemeRequest
*github.com/gotd/td/tg.AccountGetThemesRequest
*github.com/gotd/td/tg.AccountGetTmpPasswordRequest
*github.com/gotd/td/tg.AccountGetWallPaperRequest
*github.com/gotd/td/tg.AccountGetWallPapersRequest
*github.com/gotd/td/tg.AccountGetWebAuthorizationsRequest
*github.com/gotd/td/tg.AccountInitTakeoutSessionRequest
*github.com/gotd/td/tg.AccountInstallThemeRequest
*github.com/gotd/td/tg.AccountInstallWallPaperRequest
*github.com/gotd/td/tg.AccountInvalidateSignInCodesRequest
*github.com/gotd/td/tg.AccountPassword
*github.com/gotd/td/tg.AccountPasswordInputSettings
*github.com/gotd/td/tg.AccountPasswordSettings
*github.com/gotd/td/tg.AccountPrivacyRules
*github.com/gotd/td/tg.AccountRegisterDeviceRequest
*github.com/gotd/td/tg.AccountReorderUsernamesRequest
*github.com/gotd/td/tg.AccountReportPeerRequest
*github.com/gotd/td/tg.AccountReportProfilePhotoRequest
*github.com/gotd/td/tg.AccountResendPasswordEmailRequest
*github.com/gotd/td/tg.AccountResetAuthorizationRequest
*github.com/gotd/td/tg.AccountResetNotifySettingsRequest
*github.com/gotd/td/tg.AccountResetPasswordFailedWait
*github.com/gotd/td/tg.AccountResetPasswordOk
*github.com/gotd/td/tg.AccountResetPasswordRequest
*github.com/gotd/td/tg.AccountResetPasswordRequestedWait
*github.com/gotd/td/tg.AccountResetPasswordResultBox
github.com/gotd/td/tg.AccountResetPasswordResultClass (interface)
*github.com/gotd/td/tg.AccountResetWallPapersRequest
*github.com/gotd/td/tg.AccountResetWebAuthorizationRequest
*github.com/gotd/td/tg.AccountResetWebAuthorizationsRequest
*github.com/gotd/td/tg.AccountSaveAutoDownloadSettingsRequest
*github.com/gotd/td/tg.AccountSaveAutoSaveSettingsRequest
*github.com/gotd/td/tg.AccountSavedRingtone
*github.com/gotd/td/tg.AccountSavedRingtoneBox
github.com/gotd/td/tg.AccountSavedRingtoneClass (interface)
*github.com/gotd/td/tg.AccountSavedRingtoneConverted
*github.com/gotd/td/tg.AccountSavedRingtones
*github.com/gotd/td/tg.AccountSavedRingtonesBox
github.com/gotd/td/tg.AccountSavedRingtonesClass (interface)
*github.com/gotd/td/tg.AccountSavedRingtonesNotModified
*github.com/gotd/td/tg.AccountSaveRingtoneRequest
*github.com/gotd/td/tg.AccountSaveSecureValueRequest
*github.com/gotd/td/tg.AccountSaveThemeRequest
*github.com/gotd/td/tg.AccountSaveWallPaperRequest
*github.com/gotd/td/tg.AccountSendChangePhoneCodeRequest
*github.com/gotd/td/tg.AccountSendConfirmPhoneCodeRequest
*github.com/gotd/td/tg.AccountSendVerifyEmailCodeRequest
*github.com/gotd/td/tg.AccountSendVerifyPhoneCodeRequest
*github.com/gotd/td/tg.AccountSentEmailCode
*github.com/gotd/td/tg.AccountSetAccountTTLRequest
*github.com/gotd/td/tg.AccountSetAuthorizationTTLRequest
*github.com/gotd/td/tg.AccountSetContactSignUpNotificationRequest
*github.com/gotd/td/tg.AccountSetContentSettingsRequest
*github.com/gotd/td/tg.AccountSetGlobalPrivacySettingsRequest
*github.com/gotd/td/tg.AccountSetPrivacyRequest
*github.com/gotd/td/tg.AccountTakeout
*github.com/gotd/td/tg.AccountThemes
*github.com/gotd/td/tg.AccountThemesBox
github.com/gotd/td/tg.AccountThemesClass (interface)
*github.com/gotd/td/tg.AccountThemesNotModified
*github.com/gotd/td/tg.AccountTmpPassword
*github.com/gotd/td/tg.AccountToggleUsernameRequest
*github.com/gotd/td/tg.AccountUnregisterDeviceRequest
*github.com/gotd/td/tg.AccountUpdateColorRequest
*github.com/gotd/td/tg.AccountUpdateDeviceLockedRequest
*github.com/gotd/td/tg.AccountUpdateEmojiStatusRequest
*github.com/gotd/td/tg.AccountUpdateNotifySettingsRequest
*github.com/gotd/td/tg.AccountUpdatePasswordSettingsRequest
*github.com/gotd/td/tg.AccountUpdateProfileRequest
*github.com/gotd/td/tg.AccountUpdateStatusRequest
*github.com/gotd/td/tg.AccountUpdateThemeRequest
*github.com/gotd/td/tg.AccountUpdateUsernameRequest
*github.com/gotd/td/tg.AccountUploadRingtoneRequest
*github.com/gotd/td/tg.AccountUploadThemeRequest
*github.com/gotd/td/tg.AccountUploadWallPaperRequest
*github.com/gotd/td/tg.AccountVerifyEmailRequest
*github.com/gotd/td/tg.AccountVerifyPhoneRequest
*github.com/gotd/td/tg.AccountWallPapers
*github.com/gotd/td/tg.AccountWallPapersBox
github.com/gotd/td/tg.AccountWallPapersClass (interface)
*github.com/gotd/td/tg.AccountWallPapersNotModified
*github.com/gotd/td/tg.AccountWebAuthorizations
*github.com/gotd/td/tg.AppWebViewResultURL
*github.com/gotd/td/tg.AttachMenuBot
*github.com/gotd/td/tg.AttachMenuBotIcon
*github.com/gotd/td/tg.AttachMenuBotIconColor
*github.com/gotd/td/tg.AttachMenuBots
*github.com/gotd/td/tg.AttachMenuBotsBot
*github.com/gotd/td/tg.AttachMenuBotsBox
github.com/gotd/td/tg.AttachMenuBotsClass (interface)
*github.com/gotd/td/tg.AttachMenuBotsNotModified
*github.com/gotd/td/tg.AttachMenuPeerTypeBotPM
*github.com/gotd/td/tg.AttachMenuPeerTypeBox
*github.com/gotd/td/tg.AttachMenuPeerTypeBroadcast
*github.com/gotd/td/tg.AttachMenuPeerTypeChat
github.com/gotd/td/tg.AttachMenuPeerTypeClass (interface)
*github.com/gotd/td/tg.AttachMenuPeerTypePM
*github.com/gotd/td/tg.AttachMenuPeerTypeSameBotPM
*github.com/gotd/td/tg.AuthAcceptLoginTokenRequest
*github.com/gotd/td/tg.AuthAuthorization
*github.com/gotd/td/tg.AuthAuthorizationBox
github.com/gotd/td/tg.AuthAuthorizationClass (interface)
*github.com/gotd/td/tg.AuthAuthorizationSignUpRequired
*github.com/gotd/td/tg.AuthBindTempAuthKeyRequest
*github.com/gotd/td/tg.AuthCancelCodeRequest
*github.com/gotd/td/tg.AuthCheckPasswordRequest
*github.com/gotd/td/tg.AuthCheckRecoveryPasswordRequest
*github.com/gotd/td/tg.AuthCodeTypeBox
*github.com/gotd/td/tg.AuthCodeTypeCall
github.com/gotd/td/tg.AuthCodeTypeClass (interface)
*github.com/gotd/td/tg.AuthCodeTypeFlashCall
*github.com/gotd/td/tg.AuthCodeTypeFragmentSMS
*github.com/gotd/td/tg.AuthCodeTypeMissedCall
*github.com/gotd/td/tg.AuthCodeTypeSMS
*github.com/gotd/td/tg.AuthDropTempAuthKeysRequest
*github.com/gotd/td/tg.AuthExportAuthorizationRequest
*github.com/gotd/td/tg.AuthExportedAuthorization
*github.com/gotd/td/tg.AuthExportLoginTokenRequest
*github.com/gotd/td/tg.AuthImportAuthorizationRequest
*github.com/gotd/td/tg.AuthImportBotAuthorizationRequest
*github.com/gotd/td/tg.AuthImportLoginTokenRequest
*github.com/gotd/td/tg.AuthImportWebTokenAuthorizationRequest
*github.com/gotd/td/tg.AuthLoggedOut
*github.com/gotd/td/tg.AuthLoginToken
*github.com/gotd/td/tg.AuthLoginTokenBox
github.com/gotd/td/tg.AuthLoginTokenClass (interface)
*github.com/gotd/td/tg.AuthLoginTokenMigrateTo
*github.com/gotd/td/tg.AuthLoginTokenSuccess
*github.com/gotd/td/tg.AuthLogOutRequest
*github.com/gotd/td/tg.Authorization
*github.com/gotd/td/tg.AuthPasswordRecovery
*github.com/gotd/td/tg.AuthRecoverPasswordRequest
*github.com/gotd/td/tg.AuthRequestFirebaseSMSRequest
*github.com/gotd/td/tg.AuthRequestPasswordRecoveryRequest
*github.com/gotd/td/tg.AuthResendCodeRequest
*github.com/gotd/td/tg.AuthResetAuthorizationsRequest
*github.com/gotd/td/tg.AuthResetLoginEmailRequest
*github.com/gotd/td/tg.AuthSendCodeRequest
*github.com/gotd/td/tg.AuthSentCode
*github.com/gotd/td/tg.AuthSentCodeBox
github.com/gotd/td/tg.AuthSentCodeClass (interface)
*github.com/gotd/td/tg.AuthSentCodeSuccess
*github.com/gotd/td/tg.AuthSentCodeTypeApp
*github.com/gotd/td/tg.AuthSentCodeTypeBox
*github.com/gotd/td/tg.AuthSentCodeTypeCall
github.com/gotd/td/tg.AuthSentCodeTypeClass (interface)
*github.com/gotd/td/tg.AuthSentCodeTypeEmailCode
*github.com/gotd/td/tg.AuthSentCodeTypeFirebaseSMS
*github.com/gotd/td/tg.AuthSentCodeTypeFlashCall
*github.com/gotd/td/tg.AuthSentCodeTypeFragmentSMS
*github.com/gotd/td/tg.AuthSentCodeTypeMissedCall
*github.com/gotd/td/tg.AuthSentCodeTypeSetUpEmailRequired
*github.com/gotd/td/tg.AuthSentCodeTypeSMS
*github.com/gotd/td/tg.AuthSignInRequest
*github.com/gotd/td/tg.AuthSignUpRequest
*github.com/gotd/td/tg.AutoDownloadSettings
*github.com/gotd/td/tg.AutoSaveException
*github.com/gotd/td/tg.AutoSaveSettings
*github.com/gotd/td/tg.AvailableReaction
*github.com/gotd/td/tg.BankCardOpenURL
*github.com/gotd/td/tg.BaseThemeArctic
*github.com/gotd/td/tg.BaseThemeBox
github.com/gotd/td/tg.BaseThemeClass (interface)
*github.com/gotd/td/tg.BaseThemeClassic
*github.com/gotd/td/tg.BaseThemeDay
*github.com/gotd/td/tg.BaseThemeNight
*github.com/gotd/td/tg.BaseThemeTinted
*github.com/gotd/td/tg.BoolBox
github.com/gotd/td/tg.BoolClass (interface)
*github.com/gotd/td/tg.BoolFalse
*github.com/gotd/td/tg.BoolTrue
*github.com/gotd/td/tg.Boost
*github.com/gotd/td/tg.BotApp
*github.com/gotd/td/tg.BotAppBox
github.com/gotd/td/tg.BotAppClass (interface)
*github.com/gotd/td/tg.BotAppNotModified
*github.com/gotd/td/tg.BotCommand
*github.com/gotd/td/tg.BotCommandScopeBox
*github.com/gotd/td/tg.BotCommandScopeChatAdmins
*github.com/gotd/td/tg.BotCommandScopeChats
github.com/gotd/td/tg.BotCommandScopeClass (interface)
*github.com/gotd/td/tg.BotCommandScopeDefault
*github.com/gotd/td/tg.BotCommandScopePeer
*github.com/gotd/td/tg.BotCommandScopePeerAdmins
*github.com/gotd/td/tg.BotCommandScopePeerUser
*github.com/gotd/td/tg.BotCommandScopeUsers
*github.com/gotd/td/tg.BotCommandVector
*github.com/gotd/td/tg.BotInfo
*github.com/gotd/td/tg.BotInlineMediaResult
*github.com/gotd/td/tg.BotInlineMessageBox
github.com/gotd/td/tg.BotInlineMessageClass (interface)
*github.com/gotd/td/tg.BotInlineMessageMediaAuto
*github.com/gotd/td/tg.BotInlineMessageMediaContact
*github.com/gotd/td/tg.BotInlineMessageMediaGeo
*github.com/gotd/td/tg.BotInlineMessageMediaInvoice
*github.com/gotd/td/tg.BotInlineMessageMediaVenue
*github.com/gotd/td/tg.BotInlineMessageMediaWebPage
*github.com/gotd/td/tg.BotInlineMessageText
*github.com/gotd/td/tg.BotInlineResult
*github.com/gotd/td/tg.BotInlineResultBox
github.com/gotd/td/tg.BotInlineResultClass (interface)
*github.com/gotd/td/tg.BotMenuButton
*github.com/gotd/td/tg.BotMenuButtonBox
github.com/gotd/td/tg.BotMenuButtonClass (interface)
*github.com/gotd/td/tg.BotMenuButtonCommands
*github.com/gotd/td/tg.BotMenuButtonDefault
*github.com/gotd/td/tg.BotsAllowSendMessageRequest
*github.com/gotd/td/tg.BotsAnswerWebhookJSONQueryRequest
*github.com/gotd/td/tg.BotsBotInfo
*github.com/gotd/td/tg.BotsCanSendMessageRequest
*github.com/gotd/td/tg.BotsGetBotCommandsRequest
*github.com/gotd/td/tg.BotsGetBotInfoRequest
*github.com/gotd/td/tg.BotsGetBotMenuButtonRequest
*github.com/gotd/td/tg.BotsInvokeWebViewCustomMethodRequest
*github.com/gotd/td/tg.BotsReorderUsernamesRequest
*github.com/gotd/td/tg.BotsResetBotCommandsRequest
*github.com/gotd/td/tg.BotsSendCustomRequestRequest
*github.com/gotd/td/tg.BotsSetBotBroadcastDefaultAdminRightsRequest
*github.com/gotd/td/tg.BotsSetBotCommandsRequest
*github.com/gotd/td/tg.BotsSetBotGroupDefaultAdminRightsRequest
*github.com/gotd/td/tg.BotsSetBotInfoRequest
*github.com/gotd/td/tg.BotsSetBotMenuButtonRequest
*github.com/gotd/td/tg.BotsToggleUsernameRequest
*github.com/gotd/td/tg.Bytes
*github.com/gotd/td/tg.CDNConfig
*github.com/gotd/td/tg.CDNPublicKey
*github.com/gotd/td/tg.Channel
*github.com/gotd/td/tg.ChannelAdminLogEvent
*github.com/gotd/td/tg.ChannelAdminLogEventActionBox
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeAbout
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeAvailableReactions
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeEmojiStatus
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeHistoryTTL
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeLinkedChat
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeLocation
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangePeerColor
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangePhoto
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeProfilePeerColor
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeStickerSet
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeTitle
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeUsername
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeUsernames
*github.com/gotd/td/tg.ChannelAdminLogEventActionChangeWallpaper
github.com/gotd/td/tg.ChannelAdminLogEventActionClass (interface)
*github.com/gotd/td/tg.ChannelAdminLogEventActionCreateTopic
*github.com/gotd/td/tg.ChannelAdminLogEventActionDefaultBannedRights
*github.com/gotd/td/tg.ChannelAdminLogEventActionDeleteMessage
*github.com/gotd/td/tg.ChannelAdminLogEventActionDeleteTopic
*github.com/gotd/td/tg.ChannelAdminLogEventActionDiscardGroupCall
*github.com/gotd/td/tg.ChannelAdminLogEventActionEditMessage
*github.com/gotd/td/tg.ChannelAdminLogEventActionEditTopic
*github.com/gotd/td/tg.ChannelAdminLogEventActionExportedInviteDelete
*github.com/gotd/td/tg.ChannelAdminLogEventActionExportedInviteEdit
*github.com/gotd/td/tg.ChannelAdminLogEventActionExportedInviteRevoke
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantInvite
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantJoin
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantJoinByInvite
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantJoinByRequest
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantLeave
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantMute
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantToggleAdmin
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantToggleBan
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantUnmute
*github.com/gotd/td/tg.ChannelAdminLogEventActionParticipantVolume
*github.com/gotd/td/tg.ChannelAdminLogEventActionPinTopic
*github.com/gotd/td/tg.ChannelAdminLogEventActionSendMessage
*github.com/gotd/td/tg.ChannelAdminLogEventActionStartGroupCall
*github.com/gotd/td/tg.ChannelAdminLogEventActionStopPoll
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleAntiSpam
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleForum
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleGroupCallSetting
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleInvites
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleNoForwards
*github.com/gotd/td/tg.ChannelAdminLogEventActionTogglePreHistoryHidden
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleSignatures
*github.com/gotd/td/tg.ChannelAdminLogEventActionToggleSlowMode
*github.com/gotd/td/tg.ChannelAdminLogEventActionUpdatePinned
*github.com/gotd/td/tg.ChannelAdminLogEventsFilter
*github.com/gotd/td/tg.ChannelForbidden
*github.com/gotd/td/tg.ChannelFull
*github.com/gotd/td/tg.ChannelLocation
*github.com/gotd/td/tg.ChannelLocationBox
github.com/gotd/td/tg.ChannelLocationClass (interface)
*github.com/gotd/td/tg.ChannelLocationEmpty
*github.com/gotd/td/tg.ChannelMessagesFilter
*github.com/gotd/td/tg.ChannelMessagesFilterBox
github.com/gotd/td/tg.ChannelMessagesFilterClass (interface)
*github.com/gotd/td/tg.ChannelMessagesFilterEmpty
*github.com/gotd/td/tg.ChannelParticipant
*github.com/gotd/td/tg.ChannelParticipantAdmin
*github.com/gotd/td/tg.ChannelParticipantBanned
*github.com/gotd/td/tg.ChannelParticipantBox
github.com/gotd/td/tg.ChannelParticipantClass (interface)
*github.com/gotd/td/tg.ChannelParticipantCreator
*github.com/gotd/td/tg.ChannelParticipantLeft
*github.com/gotd/td/tg.ChannelParticipantSelf
*github.com/gotd/td/tg.ChannelParticipantsAdmins
*github.com/gotd/td/tg.ChannelParticipantsBanned
*github.com/gotd/td/tg.ChannelParticipantsBots
*github.com/gotd/td/tg.ChannelParticipantsContacts
*github.com/gotd/td/tg.ChannelParticipantsFilterBox
github.com/gotd/td/tg.ChannelParticipantsFilterClass (interface)
*github.com/gotd/td/tg.ChannelParticipantsKicked
*github.com/gotd/td/tg.ChannelParticipantsMentions
*github.com/gotd/td/tg.ChannelParticipantsRecent
*github.com/gotd/td/tg.ChannelParticipantsSearch
*github.com/gotd/td/tg.ChannelsAdminLogResults
*github.com/gotd/td/tg.ChannelsChannelParticipant
*github.com/gotd/td/tg.ChannelsChannelParticipants
*github.com/gotd/td/tg.ChannelsChannelParticipantsBox
github.com/gotd/td/tg.ChannelsChannelParticipantsClass (interface)
*github.com/gotd/td/tg.ChannelsChannelParticipantsNotModified
*github.com/gotd/td/tg.ChannelsCheckUsernameRequest
*github.com/gotd/td/tg.ChannelsClickSponsoredMessageRequest
*github.com/gotd/td/tg.ChannelsConvertToGigagroupRequest
*github.com/gotd/td/tg.ChannelsCreateChannelRequest
*github.com/gotd/td/tg.ChannelsCreateForumTopicRequest
*github.com/gotd/td/tg.ChannelsDeactivateAllUsernamesRequest
*github.com/gotd/td/tg.ChannelsDeleteChannelRequest
*github.com/gotd/td/tg.ChannelsDeleteHistoryRequest
*github.com/gotd/td/tg.ChannelsDeleteMessagesRequest
*github.com/gotd/td/tg.ChannelsDeleteParticipantHistoryRequest
*github.com/gotd/td/tg.ChannelsDeleteTopicHistoryRequest
*github.com/gotd/td/tg.ChannelsEditAdminRequest
*github.com/gotd/td/tg.ChannelsEditBannedRequest
*github.com/gotd/td/tg.ChannelsEditCreatorRequest
*github.com/gotd/td/tg.ChannelsEditForumTopicRequest
*github.com/gotd/td/tg.ChannelsEditLocationRequest
*github.com/gotd/td/tg.ChannelsEditPhotoRequest
*github.com/gotd/td/tg.ChannelsEditTitleRequest
*github.com/gotd/td/tg.ChannelsExportMessageLinkRequest
*github.com/gotd/td/tg.ChannelsGetAdminedPublicChannelsRequest
*github.com/gotd/td/tg.ChannelsGetAdminLogRequest
*github.com/gotd/td/tg.ChannelsGetChannelRecommendationsRequest
*github.com/gotd/td/tg.ChannelsGetChannelsRequest
*github.com/gotd/td/tg.ChannelsGetForumTopicsByIDRequest
*github.com/gotd/td/tg.ChannelsGetForumTopicsRequest
*github.com/gotd/td/tg.ChannelsGetFullChannelRequest
*github.com/gotd/td/tg.ChannelsGetGroupsForDiscussionRequest
*github.com/gotd/td/tg.ChannelsGetInactiveChannelsRequest
*github.com/gotd/td/tg.ChannelsGetLeftChannelsRequest
*github.com/gotd/td/tg.ChannelsGetMessagesRequest
*github.com/gotd/td/tg.ChannelsGetParticipantRequest
*github.com/gotd/td/tg.ChannelsGetParticipantsRequest
*github.com/gotd/td/tg.ChannelsGetSendAsRequest
*github.com/gotd/td/tg.ChannelsGetSponsoredMessagesRequest
*github.com/gotd/td/tg.ChannelsInviteToChannelRequest
*github.com/gotd/td/tg.ChannelsJoinChannelRequest
*github.com/gotd/td/tg.ChannelsLeaveChannelRequest
*github.com/gotd/td/tg.ChannelsReadHistoryRequest
*github.com/gotd/td/tg.ChannelsReadMessageContentsRequest
*github.com/gotd/td/tg.ChannelsReorderPinnedForumTopicsRequest
*github.com/gotd/td/tg.ChannelsReorderUsernamesRequest
*github.com/gotd/td/tg.ChannelsReportAntiSpamFalsePositiveRequest
*github.com/gotd/td/tg.ChannelsReportSpamRequest
*github.com/gotd/td/tg.ChannelsSendAsPeers
*github.com/gotd/td/tg.ChannelsSetDiscussionGroupRequest
*github.com/gotd/td/tg.ChannelsSetStickersRequest
*github.com/gotd/td/tg.ChannelsToggleAntiSpamRequest
*github.com/gotd/td/tg.ChannelsToggleForumRequest
*github.com/gotd/td/tg.ChannelsToggleJoinRequestRequest
*github.com/gotd/td/tg.ChannelsToggleJoinToSendRequest
*github.com/gotd/td/tg.ChannelsToggleParticipantsHiddenRequest
*github.com/gotd/td/tg.ChannelsTogglePreHistoryHiddenRequest
*github.com/gotd/td/tg.ChannelsToggleSignaturesRequest
*github.com/gotd/td/tg.ChannelsToggleSlowModeRequest
*github.com/gotd/td/tg.ChannelsToggleUsernameRequest
*github.com/gotd/td/tg.ChannelsToggleViewForumAsMessagesRequest
*github.com/gotd/td/tg.ChannelsUpdateColorRequest
*github.com/gotd/td/tg.ChannelsUpdateEmojiStatusRequest
*github.com/gotd/td/tg.ChannelsUpdatePinnedForumTopicRequest
*github.com/gotd/td/tg.ChannelsUpdateUsernameRequest
*github.com/gotd/td/tg.ChannelsViewSponsoredMessageRequest
*github.com/gotd/td/tg.Chat
*github.com/gotd/td/tg.ChatAdminRights
*github.com/gotd/td/tg.ChatAdminWithInvites
*github.com/gotd/td/tg.ChatBannedRights
*github.com/gotd/td/tg.ChatBox
github.com/gotd/td/tg.ChatClass (interface)
*github.com/gotd/td/tg.ChatEmpty
*github.com/gotd/td/tg.ChatForbidden
*github.com/gotd/td/tg.ChatFull
*github.com/gotd/td/tg.ChatFullBox
github.com/gotd/td/tg.ChatFullClass (interface)
*github.com/gotd/td/tg.ChatInvite
*github.com/gotd/td/tg.ChatInviteAlready
*github.com/gotd/td/tg.ChatInviteBox
github.com/gotd/td/tg.ChatInviteClass (interface)
*github.com/gotd/td/tg.ChatInviteExported
*github.com/gotd/td/tg.ChatInviteImporter
*github.com/gotd/td/tg.ChatInvitePeek
*github.com/gotd/td/tg.ChatInvitePublicJoinRequests
*github.com/gotd/td/tg.ChatlistsChatlistInvite
*github.com/gotd/td/tg.ChatlistsChatlistInviteAlready
*github.com/gotd/td/tg.ChatlistsChatlistInviteBox
github.com/gotd/td/tg.ChatlistsChatlistInviteClass (interface)
*github.com/gotd/td/tg.ChatlistsChatlistUpdates
*github.com/gotd/td/tg.ChatlistsCheckChatlistInviteRequest
*github.com/gotd/td/tg.ChatlistsDeleteExportedInviteRequest
*github.com/gotd/td/tg.ChatlistsEditExportedInviteRequest
*github.com/gotd/td/tg.ChatlistsExportChatlistInviteRequest
*github.com/gotd/td/tg.ChatlistsExportedChatlistInvite
*github.com/gotd/td/tg.ChatlistsExportedInvites
*github.com/gotd/td/tg.ChatlistsGetChatlistUpdatesRequest
*github.com/gotd/td/tg.ChatlistsGetExportedInvitesRequest
*github.com/gotd/td/tg.ChatlistsGetLeaveChatlistSuggestionsRequest
*github.com/gotd/td/tg.ChatlistsHideChatlistUpdatesRequest
*github.com/gotd/td/tg.ChatlistsJoinChatlistInviteRequest
*github.com/gotd/td/tg.ChatlistsJoinChatlistUpdatesRequest
*github.com/gotd/td/tg.ChatlistsLeaveChatlistRequest
*github.com/gotd/td/tg.ChatOnlines
*github.com/gotd/td/tg.ChatParticipant
*github.com/gotd/td/tg.ChatParticipantAdmin
*github.com/gotd/td/tg.ChatParticipantBox
github.com/gotd/td/tg.ChatParticipantClass (interface)
*github.com/gotd/td/tg.ChatParticipantCreator
*github.com/gotd/td/tg.ChatParticipants
*github.com/gotd/td/tg.ChatParticipantsBox
github.com/gotd/td/tg.ChatParticipantsClass (interface)
*github.com/gotd/td/tg.ChatParticipantsForbidden
*github.com/gotd/td/tg.ChatPhoto
*github.com/gotd/td/tg.ChatPhotoBox
github.com/gotd/td/tg.ChatPhotoClass (interface)
*github.com/gotd/td/tg.ChatPhotoEmpty
*github.com/gotd/td/tg.ChatReactionsAll
*github.com/gotd/td/tg.ChatReactionsBox
github.com/gotd/td/tg.ChatReactionsClass (interface)
*github.com/gotd/td/tg.ChatReactionsNone
*github.com/gotd/td/tg.ChatReactionsSome
*github.com/gotd/td/tg.CodeSettings
*github.com/gotd/td/tg.Config
*github.com/gotd/td/tg.Contact
*github.com/gotd/td/tg.ContactStatus
*github.com/gotd/td/tg.ContactStatusVector
*github.com/gotd/td/tg.ContactsAcceptContactRequest
*github.com/gotd/td/tg.ContactsAddContactRequest
*github.com/gotd/td/tg.ContactsBlocked
*github.com/gotd/td/tg.ContactsBlockedBox
github.com/gotd/td/tg.ContactsBlockedClass (interface)
*github.com/gotd/td/tg.ContactsBlockedSlice
*github.com/gotd/td/tg.ContactsBlockFromRepliesRequest
*github.com/gotd/td/tg.ContactsBlockRequest
*github.com/gotd/td/tg.ContactsContacts
*github.com/gotd/td/tg.ContactsContactsBox
github.com/gotd/td/tg.ContactsContactsClass (interface)
*github.com/gotd/td/tg.ContactsContactsNotModified
*github.com/gotd/td/tg.ContactsDeleteByPhonesRequest
*github.com/gotd/td/tg.ContactsDeleteContactsRequest
*github.com/gotd/td/tg.ContactsEditCloseFriendsRequest
*github.com/gotd/td/tg.ContactsExportContactTokenRequest
*github.com/gotd/td/tg.ContactsFound
*github.com/gotd/td/tg.ContactsGetBlockedRequest
*github.com/gotd/td/tg.ContactsGetContactIDsRequest
*github.com/gotd/td/tg.ContactsGetContactsRequest
*github.com/gotd/td/tg.ContactsGetLocatedRequest
*github.com/gotd/td/tg.ContactsGetSavedRequest
*github.com/gotd/td/tg.ContactsGetStatusesRequest
*github.com/gotd/td/tg.ContactsGetTopPeersRequest
*github.com/gotd/td/tg.ContactsImportContactsRequest
*github.com/gotd/td/tg.ContactsImportContactTokenRequest
*github.com/gotd/td/tg.ContactsImportedContacts
*github.com/gotd/td/tg.ContactsResetSavedRequest
*github.com/gotd/td/tg.ContactsResetTopPeerRatingRequest
*github.com/gotd/td/tg.ContactsResolvedPeer
*github.com/gotd/td/tg.ContactsResolvePhoneRequest
*github.com/gotd/td/tg.ContactsResolveUsernameRequest
*github.com/gotd/td/tg.ContactsSearchRequest
*github.com/gotd/td/tg.ContactsSetBlockedRequest
*github.com/gotd/td/tg.ContactsToggleTopPeersRequest
*github.com/gotd/td/tg.ContactsTopPeers
*github.com/gotd/td/tg.ContactsTopPeersBox
github.com/gotd/td/tg.ContactsTopPeersClass (interface)
*github.com/gotd/td/tg.ContactsTopPeersDisabled
*github.com/gotd/td/tg.ContactsTopPeersNotModified
*github.com/gotd/td/tg.ContactsUnblockRequest
*github.com/gotd/td/tg.DataJSON
*github.com/gotd/td/tg.DCOption
*github.com/gotd/td/tg.DefaultHistoryTTL
*github.com/gotd/td/tg.Dialog
*github.com/gotd/td/tg.DialogBox
github.com/gotd/td/tg.DialogClass (interface)
*github.com/gotd/td/tg.DialogFilter
*github.com/gotd/td/tg.DialogFilterBox
*github.com/gotd/td/tg.DialogFilterChatlist
github.com/gotd/td/tg.DialogFilterClass (interface)
*github.com/gotd/td/tg.DialogFilterClassVector
*github.com/gotd/td/tg.DialogFilterDefault
*github.com/gotd/td/tg.DialogFilterSuggested
*github.com/gotd/td/tg.DialogFilterSuggestedVector
*github.com/gotd/td/tg.DialogFolder
*github.com/gotd/td/tg.DialogPeer
*github.com/gotd/td/tg.DialogPeerBox
github.com/gotd/td/tg.DialogPeerClass (interface)
*github.com/gotd/td/tg.DialogPeerClassVector
*github.com/gotd/td/tg.DialogPeerFolder
*github.com/gotd/td/tg.Document
*github.com/gotd/td/tg.DocumentAttributeAnimated
*github.com/gotd/td/tg.DocumentAttributeAudio
*github.com/gotd/td/tg.DocumentAttributeBox
github.com/gotd/td/tg.DocumentAttributeClass (interface)
*github.com/gotd/td/tg.DocumentAttributeCustomEmoji
*github.com/gotd/td/tg.DocumentAttributeFilename
*github.com/gotd/td/tg.DocumentAttributeHasStickers
*github.com/gotd/td/tg.DocumentAttributeImageSize
*github.com/gotd/td/tg.DocumentAttributeSticker
*github.com/gotd/td/tg.DocumentAttributeVideo
*github.com/gotd/td/tg.DocumentBox
github.com/gotd/td/tg.DocumentClass (interface)
*github.com/gotd/td/tg.DocumentClassVector
*github.com/gotd/td/tg.DocumentEmpty
*github.com/gotd/td/tg.Double
*github.com/gotd/td/tg.DraftMessage
*github.com/gotd/td/tg.DraftMessageBox
github.com/gotd/td/tg.DraftMessageClass (interface)
*github.com/gotd/td/tg.DraftMessageEmpty
*github.com/gotd/td/tg.EmailVerificationApple
*github.com/gotd/td/tg.EmailVerificationBox
github.com/gotd/td/tg.EmailVerificationClass (interface)
*github.com/gotd/td/tg.EmailVerificationCode
*github.com/gotd/td/tg.EmailVerificationGoogle
*github.com/gotd/td/tg.EmailVerifyPurposeBox
github.com/gotd/td/tg.EmailVerifyPurposeClass (interface)
*github.com/gotd/td/tg.EmailVerifyPurposeLoginChange
*github.com/gotd/td/tg.EmailVerifyPurposeLoginSetup
*github.com/gotd/td/tg.EmailVerifyPurposePassport
*github.com/gotd/td/tg.EmojiGroup
*github.com/gotd/td/tg.EmojiKeyword
*github.com/gotd/td/tg.EmojiKeywordBox
github.com/gotd/td/tg.EmojiKeywordClass (interface)
*github.com/gotd/td/tg.EmojiKeywordDeleted
*github.com/gotd/td/tg.EmojiKeywordsDifference
*github.com/gotd/td/tg.EmojiLanguage
*github.com/gotd/td/tg.EmojiLanguageVector
*github.com/gotd/td/tg.EmojiList
*github.com/gotd/td/tg.EmojiListBox
github.com/gotd/td/tg.EmojiListClass (interface)
*github.com/gotd/td/tg.EmojiListNotModified
*github.com/gotd/td/tg.EmojiStatus
*github.com/gotd/td/tg.EmojiStatusBox
github.com/gotd/td/tg.EmojiStatusClass (interface)
*github.com/gotd/td/tg.EmojiStatusEmpty
*github.com/gotd/td/tg.EmojiStatusUntil
*github.com/gotd/td/tg.EmojiURL
*github.com/gotd/td/tg.EncryptedChat
*github.com/gotd/td/tg.EncryptedChatBox
github.com/gotd/td/tg.EncryptedChatClass (interface)
*github.com/gotd/td/tg.EncryptedChatDiscarded
*github.com/gotd/td/tg.EncryptedChatEmpty
*github.com/gotd/td/tg.EncryptedChatRequested
*github.com/gotd/td/tg.EncryptedChatWaiting
*github.com/gotd/td/tg.EncryptedFile
*github.com/gotd/td/tg.EncryptedFileBox
github.com/gotd/td/tg.EncryptedFileClass (interface)
*github.com/gotd/td/tg.EncryptedFileEmpty
*github.com/gotd/td/tg.EncryptedMessage
*github.com/gotd/td/tg.EncryptedMessageBox
github.com/gotd/td/tg.EncryptedMessageClass (interface)
*github.com/gotd/td/tg.EncryptedMessageService
*github.com/gotd/td/tg.Error
*github.com/gotd/td/tg.ExportedChatInviteBox
github.com/gotd/td/tg.ExportedChatInviteClass (interface)
*github.com/gotd/td/tg.ExportedChatlistInvite
*github.com/gotd/td/tg.ExportedContactToken
*github.com/gotd/td/tg.ExportedMessageLink
*github.com/gotd/td/tg.ExportedStoryLink
*github.com/gotd/td/tg.FileHash
*github.com/gotd/td/tg.FileHashVector
*github.com/gotd/td/tg.Folder
*github.com/gotd/td/tg.FolderPeer
*github.com/gotd/td/tg.FoldersEditPeerFoldersRequest
*github.com/gotd/td/tg.ForumTopic
*github.com/gotd/td/tg.ForumTopicBox
github.com/gotd/td/tg.ForumTopicClass (interface)
*github.com/gotd/td/tg.ForumTopicDeleted
github.com/gotd/td/tg.FullChat (interface)
*github.com/gotd/td/tg.Game
*github.com/gotd/td/tg.GeoPoint
*github.com/gotd/td/tg.GeoPointBox
github.com/gotd/td/tg.GeoPointClass (interface)
*github.com/gotd/td/tg.GeoPointEmpty
*github.com/gotd/td/tg.GlobalPrivacySettings
*github.com/gotd/td/tg.GroupCall
*github.com/gotd/td/tg.GroupCallBox
github.com/gotd/td/tg.GroupCallClass (interface)
*github.com/gotd/td/tg.GroupCallDiscarded
*github.com/gotd/td/tg.GroupCallParticipant
*github.com/gotd/td/tg.GroupCallParticipantVideo
*github.com/gotd/td/tg.GroupCallParticipantVideoSourceGroup
*github.com/gotd/td/tg.GroupCallStreamChannel
*github.com/gotd/td/tg.HelpAcceptTermsOfServiceRequest
*github.com/gotd/td/tg.HelpAppConfig
*github.com/gotd/td/tg.HelpAppConfigBox
github.com/gotd/td/tg.HelpAppConfigClass (interface)
*github.com/gotd/td/tg.HelpAppConfigNotModified
*github.com/gotd/td/tg.HelpAppUpdate
*github.com/gotd/td/tg.HelpAppUpdateBox
github.com/gotd/td/tg.HelpAppUpdateClass (interface)
*github.com/gotd/td/tg.HelpConfigSimple
*github.com/gotd/td/tg.HelpCountriesList
*github.com/gotd/td/tg.HelpCountriesListBox
github.com/gotd/td/tg.HelpCountriesListClass (interface)
*github.com/gotd/td/tg.HelpCountriesListNotModified
*github.com/gotd/td/tg.HelpCountry
*github.com/gotd/td/tg.HelpCountryCode
*github.com/gotd/td/tg.HelpDeepLinkInfo
*github.com/gotd/td/tg.HelpDeepLinkInfoBox
github.com/gotd/td/tg.HelpDeepLinkInfoClass (interface)
*github.com/gotd/td/tg.HelpDeepLinkInfoEmpty
*github.com/gotd/td/tg.HelpDismissSuggestionRequest
*github.com/gotd/td/tg.HelpEditUserInfoRequest
*github.com/gotd/td/tg.HelpGetAppConfigRequest
*github.com/gotd/td/tg.HelpGetAppUpdateRequest
*github.com/gotd/td/tg.HelpGetCDNConfigRequest
*github.com/gotd/td/tg.HelpGetConfigRequest
*github.com/gotd/td/tg.HelpGetCountriesListRequest
*github.com/gotd/td/tg.HelpGetDeepLinkInfoRequest
*github.com/gotd/td/tg.HelpGetInviteTextRequest
*github.com/gotd/td/tg.HelpGetNearestDCRequest
*github.com/gotd/td/tg.HelpGetPassportConfigRequest
*github.com/gotd/td/tg.HelpGetPeerColorsRequest
*github.com/gotd/td/tg.HelpGetPeerProfileColorsRequest
*github.com/gotd/td/tg.HelpGetPremiumPromoRequest
*github.com/gotd/td/tg.HelpGetPromoDataRequest
*github.com/gotd/td/tg.HelpGetRecentMeURLsRequest
*github.com/gotd/td/tg.HelpGetSupportNameRequest
*github.com/gotd/td/tg.HelpGetSupportRequest
*github.com/gotd/td/tg.HelpGetTermsOfServiceUpdateRequest
*github.com/gotd/td/tg.HelpGetUserInfoRequest
*github.com/gotd/td/tg.HelpHidePromoDataRequest
*github.com/gotd/td/tg.HelpInviteText
*github.com/gotd/td/tg.HelpNoAppUpdate
*github.com/gotd/td/tg.HelpPassportConfig
*github.com/gotd/td/tg.HelpPassportConfigBox
github.com/gotd/td/tg.HelpPassportConfigClass (interface)
*github.com/gotd/td/tg.HelpPassportConfigNotModified
*github.com/gotd/td/tg.HelpPeerColorOption
*github.com/gotd/td/tg.HelpPeerColorProfileSet
*github.com/gotd/td/tg.HelpPeerColorSet
*github.com/gotd/td/tg.HelpPeerColorSetBox
github.com/gotd/td/tg.HelpPeerColorSetClass (interface)
*github.com/gotd/td/tg.HelpPeerColors
*github.com/gotd/td/tg.HelpPeerColorsBox
github.com/gotd/td/tg.HelpPeerColorsClass (interface)
*github.com/gotd/td/tg.HelpPeerColorsNotModified
*github.com/gotd/td/tg.HelpPremiumPromo
*github.com/gotd/td/tg.HelpPromoData
*github.com/gotd/td/tg.HelpPromoDataBox
github.com/gotd/td/tg.HelpPromoDataClass (interface)
*github.com/gotd/td/tg.HelpPromoDataEmpty
*github.com/gotd/td/tg.HelpRecentMeURLs
*github.com/gotd/td/tg.HelpSaveAppLogRequest
*github.com/gotd/td/tg.HelpSetBotUpdatesStatusRequest
*github.com/gotd/td/tg.HelpSupport
*github.com/gotd/td/tg.HelpSupportName
*github.com/gotd/td/tg.HelpTermsOfService
*github.com/gotd/td/tg.HelpTermsOfServiceUpdate
*github.com/gotd/td/tg.HelpTermsOfServiceUpdateBox
github.com/gotd/td/tg.HelpTermsOfServiceUpdateClass (interface)
*github.com/gotd/td/tg.HelpTermsOfServiceUpdateEmpty
*github.com/gotd/td/tg.HelpUserInfo
*github.com/gotd/td/tg.HelpUserInfoBox
github.com/gotd/td/tg.HelpUserInfoClass (interface)
*github.com/gotd/td/tg.HelpUserInfoEmpty
*github.com/gotd/td/tg.HighScore
*github.com/gotd/td/tg.ImportedContact
*github.com/gotd/td/tg.InitConnectionRequest
*github.com/gotd/td/tg.InlineBotSwitchPM
*github.com/gotd/td/tg.InlineBotWebView
*github.com/gotd/td/tg.InlineQueryPeerTypeBotPM
*github.com/gotd/td/tg.InlineQueryPeerTypeBox
*github.com/gotd/td/tg.InlineQueryPeerTypeBroadcast
*github.com/gotd/td/tg.InlineQueryPeerTypeChat
github.com/gotd/td/tg.InlineQueryPeerTypeClass (interface)
*github.com/gotd/td/tg.InlineQueryPeerTypeMegagroup
*github.com/gotd/td/tg.InlineQueryPeerTypePM
*github.com/gotd/td/tg.InlineQueryPeerTypeSameBotPM
*github.com/gotd/td/tg.InputAppEvent
*github.com/gotd/td/tg.InputBotAppBox
github.com/gotd/td/tg.InputBotAppClass (interface)
*github.com/gotd/td/tg.InputBotAppID
*github.com/gotd/td/tg.InputBotAppShortName
*github.com/gotd/td/tg.InputBotInlineMessageBox
github.com/gotd/td/tg.InputBotInlineMessageClass (interface)
*github.com/gotd/td/tg.InputBotInlineMessageGame
*github.com/gotd/td/tg.InputBotInlineMessageID
*github.com/gotd/td/tg.InputBotInlineMessageID64
*github.com/gotd/td/tg.InputBotInlineMessageIDBox
github.com/gotd/td/tg.InputBotInlineMessageIDClass (interface)
*github.com/gotd/td/tg.InputBotInlineMessageMediaAuto
*github.com/gotd/td/tg.InputBotInlineMessageMediaContact
*github.com/gotd/td/tg.InputBotInlineMessageMediaGeo
*github.com/gotd/td/tg.InputBotInlineMessageMediaInvoice
*github.com/gotd/td/tg.InputBotInlineMessageMediaVenue
*github.com/gotd/td/tg.InputBotInlineMessageMediaWebPage
*github.com/gotd/td/tg.InputBotInlineMessageText
*github.com/gotd/td/tg.InputBotInlineResult
*github.com/gotd/td/tg.InputBotInlineResultBox
github.com/gotd/td/tg.InputBotInlineResultClass (interface)
*github.com/gotd/td/tg.InputBotInlineResultDocument
*github.com/gotd/td/tg.InputBotInlineResultGame
*github.com/gotd/td/tg.InputBotInlineResultPhoto
*github.com/gotd/td/tg.InputChannel
*github.com/gotd/td/tg.InputChannelBox
github.com/gotd/td/tg.InputChannelClass (interface)
*github.com/gotd/td/tg.InputChannelEmpty
*github.com/gotd/td/tg.InputChannelFromMessage
*github.com/gotd/td/tg.InputChatlistDialogFilter
*github.com/gotd/td/tg.InputChatPhoto
*github.com/gotd/td/tg.InputChatPhotoBox
github.com/gotd/td/tg.InputChatPhotoClass (interface)
*github.com/gotd/td/tg.InputChatPhotoEmpty
*github.com/gotd/td/tg.InputChatUploadedPhoto
*github.com/gotd/td/tg.InputCheckPasswordEmpty
*github.com/gotd/td/tg.InputCheckPasswordSRP
*github.com/gotd/td/tg.InputCheckPasswordSRPBox
github.com/gotd/td/tg.InputCheckPasswordSRPClass (interface)
*github.com/gotd/td/tg.InputClientProxy
*github.com/gotd/td/tg.InputDialogPeer
*github.com/gotd/td/tg.InputDialogPeerBox
github.com/gotd/td/tg.InputDialogPeerClass (interface)
*github.com/gotd/td/tg.InputDialogPeerFolder
*github.com/gotd/td/tg.InputDocument
*github.com/gotd/td/tg.InputDocumentBox
github.com/gotd/td/tg.InputDocumentClass (interface)
*github.com/gotd/td/tg.InputDocumentEmpty
*github.com/gotd/td/tg.InputDocumentFileLocation
*github.com/gotd/td/tg.InputEncryptedChat
*github.com/gotd/td/tg.InputEncryptedFile
*github.com/gotd/td/tg.InputEncryptedFileBigUploaded
*github.com/gotd/td/tg.InputEncryptedFileBox
github.com/gotd/td/tg.InputEncryptedFileClass (interface)
*github.com/gotd/td/tg.InputEncryptedFileEmpty
*github.com/gotd/td/tg.InputEncryptedFileLocation
*github.com/gotd/td/tg.InputEncryptedFileUploaded
*github.com/gotd/td/tg.InputFile
*github.com/gotd/td/tg.InputFileBig
*github.com/gotd/td/tg.InputFileBox
github.com/gotd/td/tg.InputFileClass (interface)
*github.com/gotd/td/tg.InputFileLocation
*github.com/gotd/td/tg.InputFileLocationBox
github.com/gotd/td/tg.InputFileLocationClass (interface)
*github.com/gotd/td/tg.InputFolderPeer
*github.com/gotd/td/tg.InputGameBox
github.com/gotd/td/tg.InputGameClass (interface)
*github.com/gotd/td/tg.InputGameID
*github.com/gotd/td/tg.InputGameShortName
*github.com/gotd/td/tg.InputGeoPoint
*github.com/gotd/td/tg.InputGeoPointBox
github.com/gotd/td/tg.InputGeoPointClass (interface)
*github.com/gotd/td/tg.InputGeoPointEmpty
*github.com/gotd/td/tg.InputGroupCall
*github.com/gotd/td/tg.InputGroupCallStream
*github.com/gotd/td/tg.InputInvoiceBox
github.com/gotd/td/tg.InputInvoiceClass (interface)
*github.com/gotd/td/tg.InputInvoiceMessage
*github.com/gotd/td/tg.InputInvoicePremiumGiftCode
*github.com/gotd/td/tg.InputInvoiceSlug
*github.com/gotd/td/tg.InputKeyboardButtonURLAuth
*github.com/gotd/td/tg.InputKeyboardButtonUserProfile
*github.com/gotd/td/tg.InputMediaAreaChannelPost
*github.com/gotd/td/tg.InputMediaAreaVenue
*github.com/gotd/td/tg.InputMediaBox
github.com/gotd/td/tg.InputMediaClass (interface)
*github.com/gotd/td/tg.InputMediaContact
*github.com/gotd/td/tg.InputMediaDice
*github.com/gotd/td/tg.InputMediaDocument
*github.com/gotd/td/tg.InputMediaDocumentExternal
*github.com/gotd/td/tg.InputMediaEmpty
*github.com/gotd/td/tg.InputMediaGame
*github.com/gotd/td/tg.InputMediaGeoLive
*github.com/gotd/td/tg.InputMediaGeoPoint
*github.com/gotd/td/tg.InputMediaInvoice
*github.com/gotd/td/tg.InputMediaPhoto
*github.com/gotd/td/tg.InputMediaPhotoExternal
*github.com/gotd/td/tg.InputMediaPoll
*github.com/gotd/td/tg.InputMediaStory
*github.com/gotd/td/tg.InputMediaUploadedDocument
*github.com/gotd/td/tg.InputMediaUploadedPhoto
*github.com/gotd/td/tg.InputMediaVenue
*github.com/gotd/td/tg.InputMediaWebPage
*github.com/gotd/td/tg.InputMessageBox
*github.com/gotd/td/tg.InputMessageCallbackQuery
github.com/gotd/td/tg.InputMessageClass (interface)
*github.com/gotd/td/tg.InputMessageEntityMentionName
*github.com/gotd/td/tg.InputMessageID
*github.com/gotd/td/tg.InputMessagePinned
*github.com/gotd/td/tg.InputMessageReplyTo
*github.com/gotd/td/tg.InputMessagesFilterChatPhotos
*github.com/gotd/td/tg.InputMessagesFilterContacts
*github.com/gotd/td/tg.InputMessagesFilterDocument
*github.com/gotd/td/tg.InputMessagesFilterEmpty
*github.com/gotd/td/tg.InputMessagesFilterGeo
*github.com/gotd/td/tg.InputMessagesFilterGif
*github.com/gotd/td/tg.InputMessagesFilterMusic
*github.com/gotd/td/tg.InputMessagesFilterMyMentions
*github.com/gotd/td/tg.InputMessagesFilterPhoneCalls
*github.com/gotd/td/tg.InputMessagesFilterPhotos
*github.com/gotd/td/tg.InputMessagesFilterPhotoVideo
*github.com/gotd/td/tg.InputMessagesFilterPinned
*github.com/gotd/td/tg.InputMessagesFilterRoundVideo
*github.com/gotd/td/tg.InputMessagesFilterRoundVoice
*github.com/gotd/td/tg.InputMessagesFilterURL
*github.com/gotd/td/tg.InputMessagesFilterVideo
*github.com/gotd/td/tg.InputMessagesFilterVoice
*github.com/gotd/td/tg.InputNotifyBroadcasts
*github.com/gotd/td/tg.InputNotifyChats
*github.com/gotd/td/tg.InputNotifyForumTopic
*github.com/gotd/td/tg.InputNotifyPeer
*github.com/gotd/td/tg.InputNotifyPeerBox
github.com/gotd/td/tg.InputNotifyPeerClass (interface)
*github.com/gotd/td/tg.InputNotifyUsers
*github.com/gotd/td/tg.InputPaymentCredentials
*github.com/gotd/td/tg.InputPaymentCredentialsApplePay
*github.com/gotd/td/tg.InputPaymentCredentialsBox
github.com/gotd/td/tg.InputPaymentCredentialsClass (interface)
*github.com/gotd/td/tg.InputPaymentCredentialsGooglePay
*github.com/gotd/td/tg.InputPaymentCredentialsSaved
*github.com/gotd/td/tg.InputPeerBox
*github.com/gotd/td/tg.InputPeerChannel
*github.com/gotd/td/tg.InputPeerChannelFromMessage
*github.com/gotd/td/tg.InputPeerChat
github.com/gotd/td/tg.InputPeerClass (interface)
*github.com/gotd/td/tg.InputPeerEmpty
*github.com/gotd/td/tg.InputPeerNotifySettings
*github.com/gotd/td/tg.InputPeerPhotoFileLocation
*github.com/gotd/td/tg.InputPeerPhotoFileLocationLegacy
*github.com/gotd/td/tg.InputPeerSelf
*github.com/gotd/td/tg.InputPeerUser
*github.com/gotd/td/tg.InputPeerUserFromMessage
*github.com/gotd/td/tg.InputPhoneCall
*github.com/gotd/td/tg.InputPhoneContact
*github.com/gotd/td/tg.InputPhoto
*github.com/gotd/td/tg.InputPhotoBox
github.com/gotd/td/tg.InputPhotoClass (interface)
*github.com/gotd/td/tg.InputPhotoEmpty
*github.com/gotd/td/tg.InputPhotoFileLocation
*github.com/gotd/td/tg.InputPhotoLegacyFileLocation
*github.com/gotd/td/tg.InputPrivacyKeyAbout
*github.com/gotd/td/tg.InputPrivacyKeyAddedByPhone
*github.com/gotd/td/tg.InputPrivacyKeyBox
*github.com/gotd/td/tg.InputPrivacyKeyChatInvite
github.com/gotd/td/tg.InputPrivacyKeyClass (interface)
*github.com/gotd/td/tg.InputPrivacyKeyForwards
*github.com/gotd/td/tg.InputPrivacyKeyPhoneCall
*github.com/gotd/td/tg.InputPrivacyKeyPhoneNumber
*github.com/gotd/td/tg.InputPrivacyKeyPhoneP2P
*github.com/gotd/td/tg.InputPrivacyKeyProfilePhoto
*github.com/gotd/td/tg.InputPrivacyKeyStatusTimestamp
*github.com/gotd/td/tg.InputPrivacyKeyVoiceMessages
*github.com/gotd/td/tg.InputPrivacyRuleBox
github.com/gotd/td/tg.InputPrivacyRuleClass (interface)
*github.com/gotd/td/tg.InputPrivacyValueAllowAll
*github.com/gotd/td/tg.InputPrivacyValueAllowChatParticipants
*github.com/gotd/td/tg.InputPrivacyValueAllowCloseFriends
*github.com/gotd/td/tg.InputPrivacyValueAllowContacts
*github.com/gotd/td/tg.InputPrivacyValueAllowUsers
*github.com/gotd/td/tg.InputPrivacyValueDisallowAll
*github.com/gotd/td/tg.InputPrivacyValueDisallowChatParticipants
*github.com/gotd/td/tg.InputPrivacyValueDisallowContacts
*github.com/gotd/td/tg.InputPrivacyValueDisallowUsers
*github.com/gotd/td/tg.InputReplyToBox
github.com/gotd/td/tg.InputReplyToClass (interface)
*github.com/gotd/td/tg.InputReplyToMessage
*github.com/gotd/td/tg.InputReplyToStory
*github.com/gotd/td/tg.InputReportReasonChildAbuse
*github.com/gotd/td/tg.InputReportReasonCopyright
*github.com/gotd/td/tg.InputReportReasonFake
*github.com/gotd/td/tg.InputReportReasonGeoIrrelevant
*github.com/gotd/td/tg.InputReportReasonIllegalDrugs
*github.com/gotd/td/tg.InputReportReasonOther
*github.com/gotd/td/tg.InputReportReasonPersonalDetails
*github.com/gotd/td/tg.InputReportReasonPornography
*github.com/gotd/td/tg.InputReportReasonSpam
*github.com/gotd/td/tg.InputReportReasonViolence
*github.com/gotd/td/tg.InputSecureFile
*github.com/gotd/td/tg.InputSecureFileBox
github.com/gotd/td/tg.InputSecureFileClass (interface)
*github.com/gotd/td/tg.InputSecureFileLocation
*github.com/gotd/td/tg.InputSecureFileUploaded
*github.com/gotd/td/tg.InputSecureValue
*github.com/gotd/td/tg.InputSingleMedia
*github.com/gotd/td/tg.InputStickeredMediaBox
github.com/gotd/td/tg.InputStickeredMediaClass (interface)
*github.com/gotd/td/tg.InputStickeredMediaDocument
*github.com/gotd/td/tg.InputStickeredMediaPhoto
*github.com/gotd/td/tg.InputStickerSetAnimatedEmoji
*github.com/gotd/td/tg.InputStickerSetAnimatedEmojiAnimations
*github.com/gotd/td/tg.InputStickerSetBox
github.com/gotd/td/tg.InputStickerSetClass (interface)
*github.com/gotd/td/tg.InputStickerSetDice
*github.com/gotd/td/tg.InputStickerSetEmojiChannelDefaultStatuses
*github.com/gotd/td/tg.InputStickerSetEmojiDefaultStatuses
*github.com/gotd/td/tg.InputStickerSetEmojiDefaultTopicIcons
*github.com/gotd/td/tg.InputStickerSetEmojiGenericAnimations
*github.com/gotd/td/tg.InputStickerSetEmpty
*github.com/gotd/td/tg.InputStickerSetID
*github.com/gotd/td/tg.InputStickerSetItem
*github.com/gotd/td/tg.InputStickerSetPremiumGifts
*github.com/gotd/td/tg.InputStickerSetShortName
*github.com/gotd/td/tg.InputStickerSetThumb
*github.com/gotd/td/tg.InputStickerSetThumbLegacy
*github.com/gotd/td/tg.InputStorePaymentGiftPremium
*github.com/gotd/td/tg.InputStorePaymentPremiumGiftCode
*github.com/gotd/td/tg.InputStorePaymentPremiumGiveaway
*github.com/gotd/td/tg.InputStorePaymentPremiumSubscription
*github.com/gotd/td/tg.InputStorePaymentPurposeBox
github.com/gotd/td/tg.InputStorePaymentPurposeClass (interface)
*github.com/gotd/td/tg.InputTakeoutFileLocation
*github.com/gotd/td/tg.InputTheme
*github.com/gotd/td/tg.InputThemeBox
github.com/gotd/td/tg.InputThemeClass (interface)
*github.com/gotd/td/tg.InputThemeSettings
*github.com/gotd/td/tg.InputThemeSlug
*github.com/gotd/td/tg.InputUser
*github.com/gotd/td/tg.InputUserBox
github.com/gotd/td/tg.InputUserClass (interface)
*github.com/gotd/td/tg.InputUserEmpty
*github.com/gotd/td/tg.InputUserFromMessage
*github.com/gotd/td/tg.InputUserSelf
*github.com/gotd/td/tg.InputWallPaper
*github.com/gotd/td/tg.InputWallPaperBox
github.com/gotd/td/tg.InputWallPaperClass (interface)
*github.com/gotd/td/tg.InputWallPaperNoFile
*github.com/gotd/td/tg.InputWallPaperSlug
*github.com/gotd/td/tg.InputWebDocument
*github.com/gotd/td/tg.InputWebFileAudioAlbumThumbLocation
*github.com/gotd/td/tg.InputWebFileGeoPointLocation
*github.com/gotd/td/tg.InputWebFileLocation
*github.com/gotd/td/tg.InputWebFileLocationBox
github.com/gotd/td/tg.InputWebFileLocationClass (interface)
*github.com/gotd/td/tg.Int
*github.com/gotd/td/tg.IntVector
*github.com/gotd/td/tg.Invoice
*github.com/gotd/td/tg.InvokeAfterMsgRequest
*github.com/gotd/td/tg.InvokeAfterMsgsRequest
*github.com/gotd/td/tg.InvokeWithLayerRequest
*github.com/gotd/td/tg.InvokeWithMessagesRangeRequest
*github.com/gotd/td/tg.InvokeWithoutUpdatesRequest
*github.com/gotd/td/tg.InvokeWithTakeoutRequest
*github.com/gotd/td/tg.IPPort
*github.com/gotd/td/tg.IPPortBox
github.com/gotd/td/tg.IPPortClass (interface)
*github.com/gotd/td/tg.IPPortSecret
*github.com/gotd/td/tg.JSONArray
*github.com/gotd/td/tg.JSONBool
*github.com/gotd/td/tg.JSONNull
*github.com/gotd/td/tg.JSONNumber
*github.com/gotd/td/tg.JSONObject
*github.com/gotd/td/tg.JSONObjectValue
*github.com/gotd/td/tg.JSONString
*github.com/gotd/td/tg.JSONValueBox
github.com/gotd/td/tg.JSONValueClass (interface)
*github.com/gotd/td/tg.KeyboardButton
*github.com/gotd/td/tg.KeyboardButtonBox
*github.com/gotd/td/tg.KeyboardButtonBuy
*github.com/gotd/td/tg.KeyboardButtonCallback
github.com/gotd/td/tg.KeyboardButtonClass (interface)
*github.com/gotd/td/tg.KeyboardButtonGame
*github.com/gotd/td/tg.KeyboardButtonRequestGeoLocation
*github.com/gotd/td/tg.KeyboardButtonRequestPeer
*github.com/gotd/td/tg.KeyboardButtonRequestPhone
*github.com/gotd/td/tg.KeyboardButtonRequestPoll
*github.com/gotd/td/tg.KeyboardButtonRow
*github.com/gotd/td/tg.KeyboardButtonSimpleWebView
*github.com/gotd/td/tg.KeyboardButtonSwitchInline
*github.com/gotd/td/tg.KeyboardButtonURL
*github.com/gotd/td/tg.KeyboardButtonURLAuth
*github.com/gotd/td/tg.KeyboardButtonUserProfile
*github.com/gotd/td/tg.KeyboardButtonWebView
*github.com/gotd/td/tg.LabeledPrice
*github.com/gotd/td/tg.LangPackDifference
*github.com/gotd/td/tg.LangPackLanguage
*github.com/gotd/td/tg.LangPackLanguageVector
*github.com/gotd/td/tg.LangPackString
*github.com/gotd/td/tg.LangPackStringBox
github.com/gotd/td/tg.LangPackStringClass (interface)
*github.com/gotd/td/tg.LangPackStringClassVector
*github.com/gotd/td/tg.LangPackStringDeleted
*github.com/gotd/td/tg.LangPackStringPluralized
*github.com/gotd/td/tg.LangpackGetDifferenceRequest
*github.com/gotd/td/tg.LangpackGetLangPackRequest
*github.com/gotd/td/tg.LangpackGetLanguageRequest
*github.com/gotd/td/tg.LangpackGetLanguagesRequest
*github.com/gotd/td/tg.LangpackGetStringsRequest
*github.com/gotd/td/tg.Long
*github.com/gotd/td/tg.LongVector
*github.com/gotd/td/tg.MaskCoords
*github.com/gotd/td/tg.MediaAreaBox
*github.com/gotd/td/tg.MediaAreaChannelPost
github.com/gotd/td/tg.MediaAreaClass (interface)
*github.com/gotd/td/tg.MediaAreaCoordinates
*github.com/gotd/td/tg.MediaAreaGeoPoint
*github.com/gotd/td/tg.MediaAreaSuggestedReaction
*github.com/gotd/td/tg.MediaAreaVenue
*github.com/gotd/td/tg.Message
*github.com/gotd/td/tg.MessageActionBotAllowed
*github.com/gotd/td/tg.MessageActionBox
*github.com/gotd/td/tg.MessageActionChannelCreate
*github.com/gotd/td/tg.MessageActionChannelMigrateFrom
*github.com/gotd/td/tg.MessageActionChatAddUser
*github.com/gotd/td/tg.MessageActionChatCreate
*github.com/gotd/td/tg.MessageActionChatDeletePhoto
*github.com/gotd/td/tg.MessageActionChatDeleteUser
*github.com/gotd/td/tg.MessageActionChatEditPhoto
*github.com/gotd/td/tg.MessageActionChatEditTitle
*github.com/gotd/td/tg.MessageActionChatJoinedByLink
*github.com/gotd/td/tg.MessageActionChatJoinedByRequest
*github.com/gotd/td/tg.MessageActionChatMigrateTo
github.com/gotd/td/tg.MessageActionClass (interface)
*github.com/gotd/td/tg.MessageActionContactSignUp
*github.com/gotd/td/tg.MessageActionCustomAction
*github.com/gotd/td/tg.MessageActionEmpty
*github.com/gotd/td/tg.MessageActionGameScore
*github.com/gotd/td/tg.MessageActionGeoProximityReached
*github.com/gotd/td/tg.MessageActionGiftCode
*github.com/gotd/td/tg.MessageActionGiftPremium
*github.com/gotd/td/tg.MessageActionGiveawayLaunch
*github.com/gotd/td/tg.MessageActionGiveawayResults
*github.com/gotd/td/tg.MessageActionGroupCall
*github.com/gotd/td/tg.MessageActionGroupCallScheduled
*github.com/gotd/td/tg.MessageActionHistoryClear
*github.com/gotd/td/tg.MessageActionInviteToGroupCall
*github.com/gotd/td/tg.MessageActionPaymentSent
*github.com/gotd/td/tg.MessageActionPaymentSentMe
*github.com/gotd/td/tg.MessageActionPhoneCall
*github.com/gotd/td/tg.MessageActionPinMessage
*github.com/gotd/td/tg.MessageActionRequestedPeer
*github.com/gotd/td/tg.MessageActionScreenshotTaken
*github.com/gotd/td/tg.MessageActionSecureValuesSent
*github.com/gotd/td/tg.MessageActionSecureValuesSentMe
*github.com/gotd/td/tg.MessageActionSetChatTheme
*github.com/gotd/td/tg.MessageActionSetChatWallPaper
*github.com/gotd/td/tg.MessageActionSetMessagesTTL
*github.com/gotd/td/tg.MessageActionSuggestProfilePhoto
*github.com/gotd/td/tg.MessageActionTopicCreate
*github.com/gotd/td/tg.MessageActionTopicEdit
*github.com/gotd/td/tg.MessageActionWebViewDataSent
*github.com/gotd/td/tg.MessageActionWebViewDataSentMe
*github.com/gotd/td/tg.MessageBox
github.com/gotd/td/tg.MessageClass (interface)
*github.com/gotd/td/tg.MessageEmpty
*github.com/gotd/td/tg.MessageEntityBankCard
*github.com/gotd/td/tg.MessageEntityBlockquote
*github.com/gotd/td/tg.MessageEntityBold
*github.com/gotd/td/tg.MessageEntityBotCommand
*github.com/gotd/td/tg.MessageEntityBox
*github.com/gotd/td/tg.MessageEntityCashtag
github.com/gotd/td/tg.MessageEntityClass (interface)
*github.com/gotd/td/tg.MessageEntityCode
*github.com/gotd/td/tg.MessageEntityCustomEmoji
*github.com/gotd/td/tg.MessageEntityEmail
*github.com/gotd/td/tg.MessageEntityHashtag
*github.com/gotd/td/tg.MessageEntityItalic
*github.com/gotd/td/tg.MessageEntityMention
*github.com/gotd/td/tg.MessageEntityMentionName
*github.com/gotd/td/tg.MessageEntityPhone
*github.com/gotd/td/tg.MessageEntityPre
*github.com/gotd/td/tg.MessageEntitySpoiler
*github.com/gotd/td/tg.MessageEntityStrike
*github.com/gotd/td/tg.MessageEntityTextURL
*github.com/gotd/td/tg.MessageEntityUnderline
*github.com/gotd/td/tg.MessageEntityUnknown
*github.com/gotd/td/tg.MessageEntityURL
*github.com/gotd/td/tg.MessageExtendedMedia
*github.com/gotd/td/tg.MessageExtendedMediaBox
github.com/gotd/td/tg.MessageExtendedMediaClass (interface)
*github.com/gotd/td/tg.MessageExtendedMediaPreview
*github.com/gotd/td/tg.MessageFwdHeader
*github.com/gotd/td/tg.MessageMediaBox
github.com/gotd/td/tg.MessageMediaClass (interface)
*github.com/gotd/td/tg.MessageMediaContact
*github.com/gotd/td/tg.MessageMediaDice
*github.com/gotd/td/tg.MessageMediaDocument
*github.com/gotd/td/tg.MessageMediaEmpty
*github.com/gotd/td/tg.MessageMediaGame
*github.com/gotd/td/tg.MessageMediaGeo
*github.com/gotd/td/tg.MessageMediaGeoLive
*github.com/gotd/td/tg.MessageMediaGiveaway
*github.com/gotd/td/tg.MessageMediaGiveawayResults
*github.com/gotd/td/tg.MessageMediaInvoice
*github.com/gotd/td/tg.MessageMediaPhoto
*github.com/gotd/td/tg.MessageMediaPoll
*github.com/gotd/td/tg.MessageMediaStory
*github.com/gotd/td/tg.MessageMediaUnsupported
*github.com/gotd/td/tg.MessageMediaVenue
*github.com/gotd/td/tg.MessageMediaWebPage
*github.com/gotd/td/tg.MessagePeerReaction
*github.com/gotd/td/tg.MessagePeerVote
*github.com/gotd/td/tg.MessagePeerVoteBox
github.com/gotd/td/tg.MessagePeerVoteClass (interface)
*github.com/gotd/td/tg.MessagePeerVoteInputOption
*github.com/gotd/td/tg.MessagePeerVoteMultiple
*github.com/gotd/td/tg.MessageRange
*github.com/gotd/td/tg.MessageRangeVector
*github.com/gotd/td/tg.MessageReactions
*github.com/gotd/td/tg.MessageReplies
*github.com/gotd/td/tg.MessageReplyHeader
*github.com/gotd/td/tg.MessageReplyHeaderBox
github.com/gotd/td/tg.MessageReplyHeaderClass (interface)
*github.com/gotd/td/tg.MessageReplyStoryHeader
*github.com/gotd/td/tg.MessageService
*github.com/gotd/td/tg.MessagesAcceptEncryptionRequest
*github.com/gotd/td/tg.MessagesAcceptURLAuthRequest
*github.com/gotd/td/tg.MessagesAddChatUserRequest
*github.com/gotd/td/tg.MessagesAffectedFoundMessages
*github.com/gotd/td/tg.MessagesAffectedHistory
*github.com/gotd/td/tg.MessagesAffectedMessages
*github.com/gotd/td/tg.MessagesAllStickers
*github.com/gotd/td/tg.MessagesAllStickersBox
github.com/gotd/td/tg.MessagesAllStickersClass (interface)
*github.com/gotd/td/tg.MessagesAllStickersNotModified
*github.com/gotd/td/tg.MessagesArchivedStickers
*github.com/gotd/td/tg.MessagesAvailableReactions
*github.com/gotd/td/tg.MessagesAvailableReactionsBox
github.com/gotd/td/tg.MessagesAvailableReactionsClass (interface)
*github.com/gotd/td/tg.MessagesAvailableReactionsNotModified
*github.com/gotd/td/tg.MessagesBotApp
*github.com/gotd/td/tg.MessagesBotCallbackAnswer
*github.com/gotd/td/tg.MessagesBotResults
*github.com/gotd/td/tg.MessagesChannelMessages
*github.com/gotd/td/tg.MessagesChatAdminsWithInvites
*github.com/gotd/td/tg.MessagesChatFull
*github.com/gotd/td/tg.MessagesChatInviteImporters
*github.com/gotd/td/tg.MessagesChats
*github.com/gotd/td/tg.MessagesChatsBox
github.com/gotd/td/tg.MessagesChatsClass (interface)
*github.com/gotd/td/tg.MessagesChatsSlice
*github.com/gotd/td/tg.MessagesCheckChatInviteRequest
*github.com/gotd/td/tg.MessagesCheckedHistoryImportPeer
*github.com/gotd/td/tg.MessagesCheckHistoryImportPeerRequest
*github.com/gotd/td/tg.MessagesCheckHistoryImportRequest
*github.com/gotd/td/tg.MessagesClearAllDraftsRequest
*github.com/gotd/td/tg.MessagesClearRecentReactionsRequest
*github.com/gotd/td/tg.MessagesClearRecentStickersRequest
*github.com/gotd/td/tg.MessagesCreateChatRequest
*github.com/gotd/td/tg.MessagesDeleteChatRequest
*github.com/gotd/td/tg.MessagesDeleteChatUserRequest
*github.com/gotd/td/tg.MessagesDeleteExportedChatInviteRequest
*github.com/gotd/td/tg.MessagesDeleteHistoryRequest
*github.com/gotd/td/tg.MessagesDeleteMessagesRequest
*github.com/gotd/td/tg.MessagesDeletePhoneCallHistoryRequest
*github.com/gotd/td/tg.MessagesDeleteRevokedExportedChatInvitesRequest
*github.com/gotd/td/tg.MessagesDeleteScheduledMessagesRequest
*github.com/gotd/td/tg.MessagesDhConfig
*github.com/gotd/td/tg.MessagesDhConfigBox
github.com/gotd/td/tg.MessagesDhConfigClass (interface)
*github.com/gotd/td/tg.MessagesDhConfigNotModified
*github.com/gotd/td/tg.MessagesDialogs
*github.com/gotd/td/tg.MessagesDialogsBox
github.com/gotd/td/tg.MessagesDialogsClass (interface)
*github.com/gotd/td/tg.MessagesDialogsNotModified
*github.com/gotd/td/tg.MessagesDialogsSlice
*github.com/gotd/td/tg.MessagesDiscardEncryptionRequest
*github.com/gotd/td/tg.MessagesDiscussionMessage
*github.com/gotd/td/tg.MessagesEditChatAboutRequest
*github.com/gotd/td/tg.MessagesEditChatAdminRequest
*github.com/gotd/td/tg.MessagesEditChatDefaultBannedRightsRequest
*github.com/gotd/td/tg.MessagesEditChatPhotoRequest
*github.com/gotd/td/tg.MessagesEditChatTitleRequest
*github.com/gotd/td/tg.MessagesEditExportedChatInviteRequest
*github.com/gotd/td/tg.MessagesEditInlineBotMessageRequest
*github.com/gotd/td/tg.MessagesEditMessageRequest
*github.com/gotd/td/tg.MessagesEmojiGroups
*github.com/gotd/td/tg.MessagesEmojiGroupsBox
github.com/gotd/td/tg.MessagesEmojiGroupsClass (interface)
*github.com/gotd/td/tg.MessagesEmojiGroupsNotModified
*github.com/gotd/td/tg.MessagesExportChatInviteRequest
*github.com/gotd/td/tg.MessagesExportedChatInvite
*github.com/gotd/td/tg.MessagesExportedChatInviteBox
github.com/gotd/td/tg.MessagesExportedChatInviteClass (interface)
*github.com/gotd/td/tg.MessagesExportedChatInviteReplaced
*github.com/gotd/td/tg.MessagesExportedChatInvites
*github.com/gotd/td/tg.MessagesFavedStickers
*github.com/gotd/td/tg.MessagesFavedStickersBox
github.com/gotd/td/tg.MessagesFavedStickersClass (interface)
*github.com/gotd/td/tg.MessagesFavedStickersNotModified
*github.com/gotd/td/tg.MessagesFaveStickerRequest
*github.com/gotd/td/tg.MessagesFeaturedStickers
*github.com/gotd/td/tg.MessagesFeaturedStickersBox
github.com/gotd/td/tg.MessagesFeaturedStickersClass (interface)
*github.com/gotd/td/tg.MessagesFeaturedStickersNotModified
*github.com/gotd/td/tg.MessagesFilterBox
github.com/gotd/td/tg.MessagesFilterClass (interface)
*github.com/gotd/td/tg.MessagesForumTopics
*github.com/gotd/td/tg.MessagesForwardMessagesRequest
*github.com/gotd/td/tg.MessagesFoundStickerSets
*github.com/gotd/td/tg.MessagesFoundStickerSetsBox
github.com/gotd/td/tg.MessagesFoundStickerSetsClass (interface)
*github.com/gotd/td/tg.MessagesFoundStickerSetsNotModified
*github.com/gotd/td/tg.MessagesGetAdminsWithInvitesRequest
*github.com/gotd/td/tg.MessagesGetAllDraftsRequest
*github.com/gotd/td/tg.MessagesGetAllStickersRequest
*github.com/gotd/td/tg.MessagesGetArchivedStickersRequest
*github.com/gotd/td/tg.MessagesGetAttachedStickersRequest
*github.com/gotd/td/tg.MessagesGetAttachMenuBotRequest
*github.com/gotd/td/tg.MessagesGetAttachMenuBotsRequest
*github.com/gotd/td/tg.MessagesGetAvailableReactionsRequest
*github.com/gotd/td/tg.MessagesGetBotAppRequest
*github.com/gotd/td/tg.MessagesGetBotCallbackAnswerRequest
*github.com/gotd/td/tg.MessagesGetChatInviteImportersRequest
*github.com/gotd/td/tg.MessagesGetChatsRequest
*github.com/gotd/td/tg.MessagesGetCommonChatsRequest
*github.com/gotd/td/tg.MessagesGetCustomEmojiDocumentsRequest
*github.com/gotd/td/tg.MessagesGetDefaultHistoryTTLRequest
*github.com/gotd/td/tg.MessagesGetDhConfigRequest
*github.com/gotd/td/tg.MessagesGetDialogFiltersRequest
*github.com/gotd/td/tg.MessagesGetDialogsRequest
*github.com/gotd/td/tg.MessagesGetDialogUnreadMarksRequest
*github.com/gotd/td/tg.MessagesGetDiscussionMessageRequest
*github.com/gotd/td/tg.MessagesGetDocumentByHashRequest
*github.com/gotd/td/tg.MessagesGetEmojiGroupsRequest
*github.com/gotd/td/tg.MessagesGetEmojiKeywordsDifferenceRequest
*github.com/gotd/td/tg.MessagesGetEmojiKeywordsLanguagesRequest
*github.com/gotd/td/tg.MessagesGetEmojiKeywordsRequest
*github.com/gotd/td/tg.MessagesGetEmojiProfilePhotoGroupsRequest
*github.com/gotd/td/tg.MessagesGetEmojiStatusGroupsRequest
*github.com/gotd/td/tg.MessagesGetEmojiStickersRequest
*github.com/gotd/td/tg.MessagesGetEmojiURLRequest
*github.com/gotd/td/tg.MessagesGetExportedChatInviteRequest
*github.com/gotd/td/tg.MessagesGetExportedChatInvitesRequest
*github.com/gotd/td/tg.MessagesGetExtendedMediaRequest
*github.com/gotd/td/tg.MessagesGetFavedStickersRequest
*github.com/gotd/td/tg.MessagesGetFeaturedEmojiStickersRequest
*github.com/gotd/td/tg.MessagesGetFeaturedStickersRequest
*github.com/gotd/td/tg.MessagesGetFullChatRequest
*github.com/gotd/td/tg.MessagesGetGameHighScoresRequest
*github.com/gotd/td/tg.MessagesGetHistoryRequest
*github.com/gotd/td/tg.MessagesGetInlineBotResultsRequest
*github.com/gotd/td/tg.MessagesGetInlineGameHighScoresRequest
*github.com/gotd/td/tg.MessagesGetMaskStickersRequest
*github.com/gotd/td/tg.MessagesGetMessageEditDataRequest
*github.com/gotd/td/tg.MessagesGetMessageReactionsListRequest
*github.com/gotd/td/tg.MessagesGetMessageReadParticipantsRequest
*github.com/gotd/td/tg.MessagesGetMessagesReactionsRequest
*github.com/gotd/td/tg.MessagesGetMessagesRequest
*github.com/gotd/td/tg.MessagesGetMessagesViewsRequest
*github.com/gotd/td/tg.MessagesGetOldFeaturedStickersRequest
*github.com/gotd/td/tg.MessagesGetOnlinesRequest
*github.com/gotd/td/tg.MessagesGetPeerDialogsRequest
*github.com/gotd/td/tg.MessagesGetPeerSettingsRequest
*github.com/gotd/td/tg.MessagesGetPinnedDialogsRequest
*github.com/gotd/td/tg.MessagesGetPollResultsRequest
*github.com/gotd/td/tg.MessagesGetPollVotesRequest
*github.com/gotd/td/tg.MessagesGetRecentLocationsRequest
*github.com/gotd/td/tg.MessagesGetRecentReactionsRequest
*github.com/gotd/td/tg.MessagesGetRecentStickersRequest
*github.com/gotd/td/tg.MessagesGetRepliesRequest
*github.com/gotd/td/tg.MessagesGetSavedGifsRequest
*github.com/gotd/td/tg.MessagesGetScheduledHistoryRequest
*github.com/gotd/td/tg.MessagesGetScheduledMessagesRequest
*github.com/gotd/td/tg.MessagesGetSearchCountersRequest
*github.com/gotd/td/tg.MessagesGetSearchResultsCalendarRequest
*github.com/gotd/td/tg.MessagesGetSearchResultsPositionsRequest
*github.com/gotd/td/tg.MessagesGetSplitRangesRequest
*github.com/gotd/td/tg.MessagesGetStickerSetRequest
*github.com/gotd/td/tg.MessagesGetStickersRequest
*github.com/gotd/td/tg.MessagesGetSuggestedDialogFiltersRequest
*github.com/gotd/td/tg.MessagesGetTopReactionsRequest
*github.com/gotd/td/tg.MessagesGetUnreadMentionsRequest
*github.com/gotd/td/tg.MessagesGetUnreadReactionsRequest
*github.com/gotd/td/tg.MessagesGetWebPagePreviewRequest
*github.com/gotd/td/tg.MessagesGetWebPageRequest
*github.com/gotd/td/tg.MessagesHideAllChatJoinRequestsRequest
*github.com/gotd/td/tg.MessagesHideChatJoinRequestRequest
*github.com/gotd/td/tg.MessagesHidePeerSettingsBarRequest
*github.com/gotd/td/tg.MessagesHighScores
*github.com/gotd/td/tg.MessagesHistoryImport
*github.com/gotd/td/tg.MessagesHistoryImportParsed
*github.com/gotd/td/tg.MessagesImportChatInviteRequest
*github.com/gotd/td/tg.MessagesInactiveChats
*github.com/gotd/td/tg.MessagesInitHistoryImportRequest
*github.com/gotd/td/tg.MessagesInstallStickerSetRequest
*github.com/gotd/td/tg.MessagesMarkDialogUnreadRequest
*github.com/gotd/td/tg.MessagesMessageEditData
*github.com/gotd/td/tg.MessagesMessageReactionsList
*github.com/gotd/td/tg.MessagesMessages
*github.com/gotd/td/tg.MessagesMessagesBox
github.com/gotd/td/tg.MessagesMessagesClass (interface)
*github.com/gotd/td/tg.MessagesMessagesNotModified
*github.com/gotd/td/tg.MessagesMessagesSlice
*github.com/gotd/td/tg.MessagesMessageViews
*github.com/gotd/td/tg.MessagesMigrateChatRequest
*github.com/gotd/td/tg.MessagesPeerDialogs
*github.com/gotd/td/tg.MessagesPeerSettings
*github.com/gotd/td/tg.MessagesProlongWebViewRequest
*github.com/gotd/td/tg.MessagesRateTranscribedAudioRequest
*github.com/gotd/td/tg.MessagesReactions
*github.com/gotd/td/tg.MessagesReactionsBox
github.com/gotd/td/tg.MessagesReactionsClass (interface)
*github.com/gotd/td/tg.MessagesReactionsNotModified
*github.com/gotd/td/tg.MessagesReadDiscussionRequest
*github.com/gotd/td/tg.MessagesReadEncryptedHistoryRequest
*github.com/gotd/td/tg.MessagesReadFeaturedStickersRequest
*github.com/gotd/td/tg.MessagesReadHistoryRequest
*github.com/gotd/td/tg.MessagesReadMentionsRequest
*github.com/gotd/td/tg.MessagesReadMessageContentsRequest
*github.com/gotd/td/tg.MessagesReadReactionsRequest
*github.com/gotd/td/tg.MessagesReceivedMessagesRequest
*github.com/gotd/td/tg.MessagesReceivedQueueRequest
*github.com/gotd/td/tg.MessagesRecentStickers
*github.com/gotd/td/tg.MessagesRecentStickersBox
github.com/gotd/td/tg.MessagesRecentStickersClass (interface)
*github.com/gotd/td/tg.MessagesRecentStickersNotModified
*github.com/gotd/td/tg.MessagesReorderPinnedDialogsRequest
*github.com/gotd/td/tg.MessagesReorderStickerSetsRequest
*github.com/gotd/td/tg.MessagesReportEncryptedSpamRequest
*github.com/gotd/td/tg.MessagesReportReactionRequest
*github.com/gotd/td/tg.MessagesReportRequest
*github.com/gotd/td/tg.MessagesReportSpamRequest
*github.com/gotd/td/tg.MessagesRequestAppWebViewRequest
*github.com/gotd/td/tg.MessagesRequestEncryptionRequest
*github.com/gotd/td/tg.MessagesRequestSimpleWebViewRequest
*github.com/gotd/td/tg.MessagesRequestURLAuthRequest
*github.com/gotd/td/tg.MessagesRequestWebViewRequest
*github.com/gotd/td/tg.MessagesSaveDefaultSendAsRequest
*github.com/gotd/td/tg.MessagesSaveDraftRequest
*github.com/gotd/td/tg.MessagesSavedGifs
*github.com/gotd/td/tg.MessagesSavedGifsBox
github.com/gotd/td/tg.MessagesSavedGifsClass (interface)
*github.com/gotd/td/tg.MessagesSavedGifsNotModified
*github.com/gotd/td/tg.MessagesSaveGifRequest
*github.com/gotd/td/tg.MessagesSaveRecentStickerRequest
*github.com/gotd/td/tg.MessagesSearchCounter
*github.com/gotd/td/tg.MessagesSearchCounterVector
*github.com/gotd/td/tg.MessagesSearchCustomEmojiRequest
*github.com/gotd/td/tg.MessagesSearchEmojiStickerSetsRequest
*github.com/gotd/td/tg.MessagesSearchGlobalRequest
*github.com/gotd/td/tg.MessagesSearchRequest
*github.com/gotd/td/tg.MessagesSearchResultsCalendar
*github.com/gotd/td/tg.MessagesSearchResultsPositions
*github.com/gotd/td/tg.MessagesSearchSentMediaRequest
*github.com/gotd/td/tg.MessagesSearchStickerSetsRequest
*github.com/gotd/td/tg.MessagesSendBotRequestedPeerRequest
*github.com/gotd/td/tg.MessagesSendEncryptedFileRequest
*github.com/gotd/td/tg.MessagesSendEncryptedRequest
*github.com/gotd/td/tg.MessagesSendEncryptedServiceRequest
*github.com/gotd/td/tg.MessagesSendInlineBotResultRequest
*github.com/gotd/td/tg.MessagesSendMediaRequest
*github.com/gotd/td/tg.MessagesSendMessageRequest
*github.com/gotd/td/tg.MessagesSendMultiMediaRequest
*github.com/gotd/td/tg.MessagesSendReactionRequest
*github.com/gotd/td/tg.MessagesSendScheduledMessagesRequest
*github.com/gotd/td/tg.MessagesSendScreenshotNotificationRequest
*github.com/gotd/td/tg.MessagesSendVoteRequest
*github.com/gotd/td/tg.MessagesSendWebViewDataRequest
*github.com/gotd/td/tg.MessagesSendWebViewResultMessageRequest
*github.com/gotd/td/tg.MessagesSentEncryptedFile
*github.com/gotd/td/tg.MessagesSentEncryptedMessage
*github.com/gotd/td/tg.MessagesSentEncryptedMessageBox
github.com/gotd/td/tg.MessagesSentEncryptedMessageClass (interface)
*github.com/gotd/td/tg.MessagesSetBotCallbackAnswerRequest
*github.com/gotd/td/tg.MessagesSetBotPrecheckoutResultsRequest
*github.com/gotd/td/tg.MessagesSetBotShippingResultsRequest
*github.com/gotd/td/tg.MessagesSetChatAvailableReactionsRequest
*github.com/gotd/td/tg.MessagesSetChatThemeRequest
*github.com/gotd/td/tg.MessagesSetChatWallPaperRequest
*github.com/gotd/td/tg.MessagesSetDefaultHistoryTTLRequest
*github.com/gotd/td/tg.MessagesSetDefaultReactionRequest
*github.com/gotd/td/tg.MessagesSetEncryptedTypingRequest
*github.com/gotd/td/tg.MessagesSetGameScoreRequest
*github.com/gotd/td/tg.MessagesSetHistoryTTLRequest
*github.com/gotd/td/tg.MessagesSetInlineBotResultsRequest
*github.com/gotd/td/tg.MessagesSetInlineGameScoreRequest
*github.com/gotd/td/tg.MessagesSetTypingRequest
*github.com/gotd/td/tg.MessagesSponsoredMessages
*github.com/gotd/td/tg.MessagesSponsoredMessagesBox
github.com/gotd/td/tg.MessagesSponsoredMessagesClass (interface)
*github.com/gotd/td/tg.MessagesSponsoredMessagesEmpty
*github.com/gotd/td/tg.MessagesStartBotRequest
*github.com/gotd/td/tg.MessagesStartHistoryImportRequest
*github.com/gotd/td/tg.MessagesStickerSet
*github.com/gotd/td/tg.MessagesStickerSetBox
github.com/gotd/td/tg.MessagesStickerSetClass (interface)
*github.com/gotd/td/tg.MessagesStickerSetInstallResultArchive
*github.com/gotd/td/tg.MessagesStickerSetInstallResultBox
github.com/gotd/td/tg.MessagesStickerSetInstallResultClass (interface)
*github.com/gotd/td/tg.MessagesStickerSetInstallResultSuccess
*github.com/gotd/td/tg.MessagesStickerSetNotModified
*github.com/gotd/td/tg.MessagesStickers
*github.com/gotd/td/tg.MessagesStickersBox
github.com/gotd/td/tg.MessagesStickersClass (interface)
*github.com/gotd/td/tg.MessagesStickersNotModified
*github.com/gotd/td/tg.MessagesToggleBotInAttachMenuRequest
*github.com/gotd/td/tg.MessagesToggleDialogPinRequest
*github.com/gotd/td/tg.MessagesToggleNoForwardsRequest
*github.com/gotd/td/tg.MessagesTogglePeerTranslationsRequest
*github.com/gotd/td/tg.MessagesToggleStickerSetsRequest
*github.com/gotd/td/tg.MessagesTranscribeAudioRequest
*github.com/gotd/td/tg.MessagesTranscribedAudio
*github.com/gotd/td/tg.MessagesTranslateResult
*github.com/gotd/td/tg.MessagesTranslateTextRequest
*github.com/gotd/td/tg.MessagesUninstallStickerSetRequest
*github.com/gotd/td/tg.MessagesUnpinAllMessagesRequest
*github.com/gotd/td/tg.MessagesUpdateDialogFilterRequest
*github.com/gotd/td/tg.MessagesUpdateDialogFiltersOrderRequest
*github.com/gotd/td/tg.MessagesUpdatePinnedMessageRequest
*github.com/gotd/td/tg.MessagesUploadEncryptedFileRequest
*github.com/gotd/td/tg.MessagesUploadImportedMediaRequest
*github.com/gotd/td/tg.MessagesUploadMediaRequest
*github.com/gotd/td/tg.MessagesVotesList
*github.com/gotd/td/tg.MessagesWebPage
*github.com/gotd/td/tg.MessageViews
github.com/gotd/td/tg.ModifiedMessagesDialogs (interface)
github.com/gotd/td/tg.ModifiedMessagesMessages (interface)
github.com/gotd/td/tg.ModifiedWebPage (interface)
*github.com/gotd/td/tg.MyBoost
*github.com/gotd/td/tg.NearestDC
github.com/gotd/td/tg.NotEmptyChat (interface)
github.com/gotd/td/tg.NotEmptyEmojiStatus (interface)
github.com/gotd/td/tg.NotEmptyEncryptedChat (interface)
github.com/gotd/td/tg.NotEmptyInputChannel (interface)
github.com/gotd/td/tg.NotEmptyInputEncryptedFile (interface)
github.com/gotd/td/tg.NotEmptyMessage (interface)
github.com/gotd/td/tg.NotEmptyPhoneCall (interface)
github.com/gotd/td/tg.NotEmptyPhotoSize (interface)
github.com/gotd/td/tg.NotEmptyUpdatesChannelDifference (interface)
github.com/gotd/td/tg.NotForbiddenChat (interface)
*github.com/gotd/td/tg.NotificationSoundBox
github.com/gotd/td/tg.NotificationSoundClass (interface)
*github.com/gotd/td/tg.NotificationSoundDefault
*github.com/gotd/td/tg.NotificationSoundLocal
*github.com/gotd/td/tg.NotificationSoundNone
*github.com/gotd/td/tg.NotificationSoundRingtone
*github.com/gotd/td/tg.NotifyBroadcasts
*github.com/gotd/td/tg.NotifyChats
*github.com/gotd/td/tg.NotifyForumTopic
*github.com/gotd/td/tg.NotifyPeer
*github.com/gotd/td/tg.NotifyPeerBox
github.com/gotd/td/tg.NotifyPeerClass (interface)
*github.com/gotd/td/tg.NotifyUsers
*github.com/gotd/td/tg.Null
*github.com/gotd/td/tg.Page
*github.com/gotd/td/tg.PageBlockAnchor
*github.com/gotd/td/tg.PageBlockAudio
*github.com/gotd/td/tg.PageBlockAuthorDate
*github.com/gotd/td/tg.PageBlockBlockquote
*github.com/gotd/td/tg.PageBlockBox
*github.com/gotd/td/tg.PageBlockChannel
github.com/gotd/td/tg.PageBlockClass (interface)
*github.com/gotd/td/tg.PageBlockCollage
*github.com/gotd/td/tg.PageBlockCover
*github.com/gotd/td/tg.PageBlockDetails
*github.com/gotd/td/tg.PageBlockDivider
*github.com/gotd/td/tg.PageBlockEmbed
*github.com/gotd/td/tg.PageBlockEmbedPost
*github.com/gotd/td/tg.PageBlockFooter
*github.com/gotd/td/tg.PageBlockHeader
*github.com/gotd/td/tg.PageBlockKicker
*github.com/gotd/td/tg.PageBlockList
*github.com/gotd/td/tg.PageBlockMap
*github.com/gotd/td/tg.PageBlockOrderedList
*github.com/gotd/td/tg.PageBlockParagraph
*github.com/gotd/td/tg.PageBlockPhoto
*github.com/gotd/td/tg.PageBlockPreformatted
*github.com/gotd/td/tg.PageBlockPullquote
*github.com/gotd/td/tg.PageBlockRelatedArticles
*github.com/gotd/td/tg.PageBlockSlideshow
*github.com/gotd/td/tg.PageBlockSubheader
*github.com/gotd/td/tg.PageBlockSubtitle
*github.com/gotd/td/tg.PageBlockTable
*github.com/gotd/td/tg.PageBlockTitle
*github.com/gotd/td/tg.PageBlockUnsupported
*github.com/gotd/td/tg.PageBlockVideo
*github.com/gotd/td/tg.PageCaption
*github.com/gotd/td/tg.PageListItemBlocks
*github.com/gotd/td/tg.PageListItemBox
github.com/gotd/td/tg.PageListItemClass (interface)
*github.com/gotd/td/tg.PageListItemText
*github.com/gotd/td/tg.PageListOrderedItemBlocks
*github.com/gotd/td/tg.PageListOrderedItemBox
github.com/gotd/td/tg.PageListOrderedItemClass (interface)
*github.com/gotd/td/tg.PageListOrderedItemText
*github.com/gotd/td/tg.PageRelatedArticle
*github.com/gotd/td/tg.PageTableCell
*github.com/gotd/td/tg.PageTableRow
*github.com/gotd/td/tg.PasswordKdfAlgoBox
github.com/gotd/td/tg.PasswordKdfAlgoClass (interface)
*github.com/gotd/td/tg.PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow
*github.com/gotd/td/tg.PasswordKdfAlgoUnknown
*github.com/gotd/td/tg.PaymentCharge
*github.com/gotd/td/tg.PaymentFormMethod
*github.com/gotd/td/tg.PaymentRequestedInfo
*github.com/gotd/td/tg.PaymentSavedCredentialsCard
*github.com/gotd/td/tg.PaymentsApplyGiftCodeRequest
*github.com/gotd/td/tg.PaymentsAssignAppStoreTransactionRequest
*github.com/gotd/td/tg.PaymentsAssignPlayMarketTransactionRequest
*github.com/gotd/td/tg.PaymentsBankCardData
*github.com/gotd/td/tg.PaymentsCanPurchasePremiumRequest
*github.com/gotd/td/tg.PaymentsCheckedGiftCode
*github.com/gotd/td/tg.PaymentsCheckGiftCodeRequest
*github.com/gotd/td/tg.PaymentsClearSavedInfoRequest
*github.com/gotd/td/tg.PaymentsExportedInvoice
*github.com/gotd/td/tg.PaymentsExportInvoiceRequest
*github.com/gotd/td/tg.PaymentsGetBankCardDataRequest
*github.com/gotd/td/tg.PaymentsGetGiveawayInfoRequest
*github.com/gotd/td/tg.PaymentsGetPaymentFormRequest
*github.com/gotd/td/tg.PaymentsGetPaymentReceiptRequest
*github.com/gotd/td/tg.PaymentsGetPremiumGiftCodeOptionsRequest
*github.com/gotd/td/tg.PaymentsGetSavedInfoRequest
*github.com/gotd/td/tg.PaymentsGiveawayInfo
*github.com/gotd/td/tg.PaymentsGiveawayInfoBox
github.com/gotd/td/tg.PaymentsGiveawayInfoClass (interface)
*github.com/gotd/td/tg.PaymentsGiveawayInfoResults
*github.com/gotd/td/tg.PaymentsLaunchPrepaidGiveawayRequest
*github.com/gotd/td/tg.PaymentsPaymentForm
*github.com/gotd/td/tg.PaymentsPaymentReceipt
*github.com/gotd/td/tg.PaymentsPaymentResult
*github.com/gotd/td/tg.PaymentsPaymentResultBox
github.com/gotd/td/tg.PaymentsPaymentResultClass (interface)
*github.com/gotd/td/tg.PaymentsPaymentVerificationNeeded
*github.com/gotd/td/tg.PaymentsSavedInfo
*github.com/gotd/td/tg.PaymentsSendPaymentFormRequest
*github.com/gotd/td/tg.PaymentsValidatedRequestedInfo
*github.com/gotd/td/tg.PaymentsValidateRequestedInfoRequest
*github.com/gotd/td/tg.PeerBlocked
*github.com/gotd/td/tg.PeerBox
*github.com/gotd/td/tg.PeerChannel
*github.com/gotd/td/tg.PeerChat
github.com/gotd/td/tg.PeerClass (interface)
*github.com/gotd/td/tg.PeerClassVector
*github.com/gotd/td/tg.PeerColor
*github.com/gotd/td/tg.PeerLocated
*github.com/gotd/td/tg.PeerLocatedBox
github.com/gotd/td/tg.PeerLocatedClass (interface)
*github.com/gotd/td/tg.PeerNotifySettings
*github.com/gotd/td/tg.PeerSelfLocated
*github.com/gotd/td/tg.PeerSettings
*github.com/gotd/td/tg.PeerStories
*github.com/gotd/td/tg.PeerUser
*github.com/gotd/td/tg.PhoneAcceptCallRequest
*github.com/gotd/td/tg.PhoneCall
*github.com/gotd/td/tg.PhoneCallAccepted
*github.com/gotd/td/tg.PhoneCallBox
github.com/gotd/td/tg.PhoneCallClass (interface)
*github.com/gotd/td/tg.PhoneCallDiscarded
*github.com/gotd/td/tg.PhoneCallDiscardReasonBox
*github.com/gotd/td/tg.PhoneCallDiscardReasonBusy
github.com/gotd/td/tg.PhoneCallDiscardReasonClass (interface)
*github.com/gotd/td/tg.PhoneCallDiscardReasonDisconnect
*github.com/gotd/td/tg.PhoneCallDiscardReasonHangup
*github.com/gotd/td/tg.PhoneCallDiscardReasonMissed
*github.com/gotd/td/tg.PhoneCallEmpty
*github.com/gotd/td/tg.PhoneCallProtocol
*github.com/gotd/td/tg.PhoneCallRequested
*github.com/gotd/td/tg.PhoneCallWaiting
*github.com/gotd/td/tg.PhoneCheckGroupCallRequest
*github.com/gotd/td/tg.PhoneConfirmCallRequest
*github.com/gotd/td/tg.PhoneConnection
*github.com/gotd/td/tg.PhoneConnectionBox
github.com/gotd/td/tg.PhoneConnectionClass (interface)
*github.com/gotd/td/tg.PhoneConnectionWebrtc
*github.com/gotd/td/tg.PhoneCreateGroupCallRequest
*github.com/gotd/td/tg.PhoneDiscardCallRequest
*github.com/gotd/td/tg.PhoneDiscardGroupCallRequest
*github.com/gotd/td/tg.PhoneEditGroupCallParticipantRequest
*github.com/gotd/td/tg.PhoneEditGroupCallTitleRequest
*github.com/gotd/td/tg.PhoneExportedGroupCallInvite
*github.com/gotd/td/tg.PhoneExportGroupCallInviteRequest
*github.com/gotd/td/tg.PhoneGetCallConfigRequest
*github.com/gotd/td/tg.PhoneGetGroupCallJoinAsRequest
*github.com/gotd/td/tg.PhoneGetGroupCallRequest
*github.com/gotd/td/tg.PhoneGetGroupCallStreamChannelsRequest
*github.com/gotd/td/tg.PhoneGetGroupCallStreamRtmpURLRequest
*github.com/gotd/td/tg.PhoneGetGroupParticipantsRequest
*github.com/gotd/td/tg.PhoneGroupCall
*github.com/gotd/td/tg.PhoneGroupCallStreamChannels
*github.com/gotd/td/tg.PhoneGroupCallStreamRtmpURL
*github.com/gotd/td/tg.PhoneGroupParticipants
*github.com/gotd/td/tg.PhoneInviteToGroupCallRequest
*github.com/gotd/td/tg.PhoneJoinAsPeers
*github.com/gotd/td/tg.PhoneJoinGroupCallPresentationRequest
*github.com/gotd/td/tg.PhoneJoinGroupCallRequest
*github.com/gotd/td/tg.PhoneLeaveGroupCallPresentationRequest
*github.com/gotd/td/tg.PhoneLeaveGroupCallRequest
*github.com/gotd/td/tg.PhonePhoneCall
*github.com/gotd/td/tg.PhoneReceivedCallRequest
*github.com/gotd/td/tg.PhoneRequestCallRequest
*github.com/gotd/td/tg.PhoneSaveCallDebugRequest
*github.com/gotd/td/tg.PhoneSaveCallLogRequest
*github.com/gotd/td/tg.PhoneSaveDefaultGroupCallJoinAsRequest
*github.com/gotd/td/tg.PhoneSendSignalingDataRequest
*github.com/gotd/td/tg.PhoneSetCallRatingRequest
*github.com/gotd/td/tg.PhoneStartScheduledGroupCallRequest
*github.com/gotd/td/tg.PhoneToggleGroupCallRecordRequest
*github.com/gotd/td/tg.PhoneToggleGroupCallSettingsRequest
*github.com/gotd/td/tg.PhoneToggleGroupCallStartSubscriptionRequest
*github.com/gotd/td/tg.Photo
*github.com/gotd/td/tg.PhotoBox
*github.com/gotd/td/tg.PhotoCachedSize
github.com/gotd/td/tg.PhotoClass (interface)
*github.com/gotd/td/tg.PhotoEmpty
*github.com/gotd/td/tg.PhotoPathSize
*github.com/gotd/td/tg.PhotoSize
*github.com/gotd/td/tg.PhotoSizeBox
github.com/gotd/td/tg.PhotoSizeClass (interface)
*github.com/gotd/td/tg.PhotoSizeEmpty
*github.com/gotd/td/tg.PhotoSizeProgressive
*github.com/gotd/td/tg.PhotoStrippedSize
*github.com/gotd/td/tg.PhotosDeletePhotosRequest
*github.com/gotd/td/tg.PhotosGetUserPhotosRequest
*github.com/gotd/td/tg.PhotosPhoto
*github.com/gotd/td/tg.PhotosPhotos
*github.com/gotd/td/tg.PhotosPhotosBox
github.com/gotd/td/tg.PhotosPhotosClass (interface)
*github.com/gotd/td/tg.PhotosPhotosSlice
*github.com/gotd/td/tg.PhotosUpdateProfilePhotoRequest
*github.com/gotd/td/tg.PhotosUploadContactProfilePhotoRequest
*github.com/gotd/td/tg.PhotosUploadProfilePhotoRequest
*github.com/gotd/td/tg.Poll
*github.com/gotd/td/tg.PollAnswer
*github.com/gotd/td/tg.PollAnswerVoters
*github.com/gotd/td/tg.PollResults
*github.com/gotd/td/tg.PopularContact
*github.com/gotd/td/tg.PostAddress
*github.com/gotd/td/tg.PostInteractionCountersBox
github.com/gotd/td/tg.PostInteractionCountersClass (interface)
*github.com/gotd/td/tg.PostInteractionCountersMessage
*github.com/gotd/td/tg.PostInteractionCountersStory
*github.com/gotd/td/tg.PremiumApplyBoostRequest
*github.com/gotd/td/tg.PremiumBoostsList
*github.com/gotd/td/tg.PremiumBoostsStatus
*github.com/gotd/td/tg.PremiumGetBoostsListRequest
*github.com/gotd/td/tg.PremiumGetBoostsStatusRequest
*github.com/gotd/td/tg.PremiumGetMyBoostsRequest
*github.com/gotd/td/tg.PremiumGetUserBoostsRequest
*github.com/gotd/td/tg.PremiumGiftCodeOption
*github.com/gotd/td/tg.PremiumGiftCodeOptionVector
*github.com/gotd/td/tg.PremiumGiftOption
*github.com/gotd/td/tg.PremiumMyBoosts
*github.com/gotd/td/tg.PremiumSubscriptionOption
*github.com/gotd/td/tg.PrepaidGiveaway
*github.com/gotd/td/tg.PrivacyKeyAbout
*github.com/gotd/td/tg.PrivacyKeyAddedByPhone
*github.com/gotd/td/tg.PrivacyKeyBox
*github.com/gotd/td/tg.PrivacyKeyChatInvite
github.com/gotd/td/tg.PrivacyKeyClass (interface)
*github.com/gotd/td/tg.PrivacyKeyForwards
*github.com/gotd/td/tg.PrivacyKeyPhoneCall
*github.com/gotd/td/tg.PrivacyKeyPhoneNumber
*github.com/gotd/td/tg.PrivacyKeyPhoneP2P
*github.com/gotd/td/tg.PrivacyKeyProfilePhoto
*github.com/gotd/td/tg.PrivacyKeyStatusTimestamp
*github.com/gotd/td/tg.PrivacyKeyVoiceMessages
*github.com/gotd/td/tg.PrivacyRuleBox
github.com/gotd/td/tg.PrivacyRuleClass (interface)
*github.com/gotd/td/tg.PrivacyValueAllowAll
*github.com/gotd/td/tg.PrivacyValueAllowChatParticipants
*github.com/gotd/td/tg.PrivacyValueAllowCloseFriends
*github.com/gotd/td/tg.PrivacyValueAllowContacts
*github.com/gotd/td/tg.PrivacyValueAllowUsers
*github.com/gotd/td/tg.PrivacyValueDisallowAll
*github.com/gotd/td/tg.PrivacyValueDisallowChatParticipants
*github.com/gotd/td/tg.PrivacyValueDisallowContacts
*github.com/gotd/td/tg.PrivacyValueDisallowUsers
*github.com/gotd/td/tg.PublicForwardBox
github.com/gotd/td/tg.PublicForwardClass (interface)
*github.com/gotd/td/tg.PublicForwardMessage
*github.com/gotd/td/tg.PublicForwardStory
*github.com/gotd/td/tg.ReactionBox
github.com/gotd/td/tg.ReactionClass (interface)
*github.com/gotd/td/tg.ReactionCount
*github.com/gotd/td/tg.ReactionCustomEmoji
*github.com/gotd/td/tg.ReactionEmoji
*github.com/gotd/td/tg.ReactionEmpty
*github.com/gotd/td/tg.ReadParticipantDate
*github.com/gotd/td/tg.ReadParticipantDateVector
*github.com/gotd/td/tg.ReceivedNotifyMessage
*github.com/gotd/td/tg.ReceivedNotifyMessageVector
*github.com/gotd/td/tg.RecentMeURLBox
*github.com/gotd/td/tg.RecentMeURLChat
*github.com/gotd/td/tg.RecentMeURLChatInvite
github.com/gotd/td/tg.RecentMeURLClass (interface)
*github.com/gotd/td/tg.RecentMeURLStickerSet
*github.com/gotd/td/tg.RecentMeURLUnknown
*github.com/gotd/td/tg.RecentMeURLUser
*github.com/gotd/td/tg.ReplyInlineMarkup
*github.com/gotd/td/tg.ReplyKeyboardForceReply
*github.com/gotd/td/tg.ReplyKeyboardHide
*github.com/gotd/td/tg.ReplyKeyboardMarkup
*github.com/gotd/td/tg.ReplyMarkupBox
github.com/gotd/td/tg.ReplyMarkupClass (interface)
*github.com/gotd/td/tg.ReportReasonBox
github.com/gotd/td/tg.ReportReasonClass (interface)
*github.com/gotd/td/tg.RequestPeerTypeBox
*github.com/gotd/td/tg.RequestPeerTypeBroadcast
*github.com/gotd/td/tg.RequestPeerTypeChat
github.com/gotd/td/tg.RequestPeerTypeClass (interface)
*github.com/gotd/td/tg.RequestPeerTypeUser
*github.com/gotd/td/tg.RestrictionReason
*github.com/gotd/td/tg.RichTextBox
github.com/gotd/td/tg.RichTextClass (interface)
*github.com/gotd/td/tg.SavedPhoneContact
*github.com/gotd/td/tg.SavedPhoneContactVector
*github.com/gotd/td/tg.SearchResultPosition
*github.com/gotd/td/tg.SearchResultsCalendarPeriod
*github.com/gotd/td/tg.SecureCredentialsEncrypted
*github.com/gotd/td/tg.SecureData
*github.com/gotd/td/tg.SecureFile
*github.com/gotd/td/tg.SecureFileBox
github.com/gotd/td/tg.SecureFileClass (interface)
*github.com/gotd/td/tg.SecureFileEmpty
*github.com/gotd/td/tg.SecurePasswordKdfAlgoBox
github.com/gotd/td/tg.SecurePasswordKdfAlgoClass (interface)
*github.com/gotd/td/tg.SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000
*github.com/gotd/td/tg.SecurePasswordKdfAlgoSHA512
*github.com/gotd/td/tg.SecurePasswordKdfAlgoUnknown
*github.com/gotd/td/tg.SecurePlainDataBox
github.com/gotd/td/tg.SecurePlainDataClass (interface)
*github.com/gotd/td/tg.SecurePlainEmail
*github.com/gotd/td/tg.SecurePlainPhone
*github.com/gotd/td/tg.SecureRequiredType
*github.com/gotd/td/tg.SecureRequiredTypeBox
github.com/gotd/td/tg.SecureRequiredTypeClass (interface)
*github.com/gotd/td/tg.SecureRequiredTypeOneOf
*github.com/gotd/td/tg.SecureSecretSettings
*github.com/gotd/td/tg.SecureValue
*github.com/gotd/td/tg.SecureValueError
*github.com/gotd/td/tg.SecureValueErrorBox
github.com/gotd/td/tg.SecureValueErrorClass (interface)
*github.com/gotd/td/tg.SecureValueErrorData
*github.com/gotd/td/tg.SecureValueErrorFile
*github.com/gotd/td/tg.SecureValueErrorFiles
*github.com/gotd/td/tg.SecureValueErrorFrontSide
*github.com/gotd/td/tg.SecureValueErrorReverseSide
*github.com/gotd/td/tg.SecureValueErrorSelfie
*github.com/gotd/td/tg.SecureValueErrorTranslationFile
*github.com/gotd/td/tg.SecureValueErrorTranslationFiles
*github.com/gotd/td/tg.SecureValueHash
*github.com/gotd/td/tg.SecureValueTypeAddress
*github.com/gotd/td/tg.SecureValueTypeBankStatement
*github.com/gotd/td/tg.SecureValueTypeBox
github.com/gotd/td/tg.SecureValueTypeClass (interface)
*github.com/gotd/td/tg.SecureValueTypeDriverLicense
*github.com/gotd/td/tg.SecureValueTypeEmail
*github.com/gotd/td/tg.SecureValueTypeIdentityCard
*github.com/gotd/td/tg.SecureValueTypeInternalPassport
*github.com/gotd/td/tg.SecureValueTypePassport
*github.com/gotd/td/tg.SecureValueTypePassportRegistration
*github.com/gotd/td/tg.SecureValueTypePersonalDetails
*github.com/gotd/td/tg.SecureValueTypePhone
*github.com/gotd/td/tg.SecureValueTypeRentalAgreement
*github.com/gotd/td/tg.SecureValueTypeTemporaryRegistration
*github.com/gotd/td/tg.SecureValueTypeUtilityBill
*github.com/gotd/td/tg.SecureValueVector
*github.com/gotd/td/tg.SendAsPeer
*github.com/gotd/td/tg.SendMessageActionBox
github.com/gotd/td/tg.SendMessageActionClass (interface)
*github.com/gotd/td/tg.SendMessageCancelAction
*github.com/gotd/td/tg.SendMessageChooseContactAction
*github.com/gotd/td/tg.SendMessageChooseStickerAction
*github.com/gotd/td/tg.SendMessageEmojiInteraction
*github.com/gotd/td/tg.SendMessageEmojiInteractionSeen
*github.com/gotd/td/tg.SendMessageGamePlayAction
*github.com/gotd/td/tg.SendMessageGeoLocationAction
*github.com/gotd/td/tg.SendMessageHistoryImportAction
*github.com/gotd/td/tg.SendMessageRecordAudioAction
*github.com/gotd/td/tg.SendMessageRecordRoundAction
*github.com/gotd/td/tg.SendMessageRecordVideoAction
*github.com/gotd/td/tg.SendMessageTypingAction
*github.com/gotd/td/tg.SendMessageUploadAudioAction
*github.com/gotd/td/tg.SendMessageUploadDocumentAction
*github.com/gotd/td/tg.SendMessageUploadPhotoAction
*github.com/gotd/td/tg.SendMessageUploadRoundAction
*github.com/gotd/td/tg.SendMessageUploadVideoAction
*github.com/gotd/td/tg.ShippingOption
*github.com/gotd/td/tg.SimpleWebViewResultURL
*github.com/gotd/td/tg.SpeakingInGroupCallAction
*github.com/gotd/td/tg.SponsoredMessage
*github.com/gotd/td/tg.SponsoredWebPage
*github.com/gotd/td/tg.StatsAbsValueAndPrev
*github.com/gotd/td/tg.StatsBroadcastStats
*github.com/gotd/td/tg.StatsDateRangeDays
*github.com/gotd/td/tg.StatsGetBroadcastStatsRequest
*github.com/gotd/td/tg.StatsGetMegagroupStatsRequest
*github.com/gotd/td/tg.StatsGetMessagePublicForwardsRequest
*github.com/gotd/td/tg.StatsGetMessageStatsRequest
*github.com/gotd/td/tg.StatsGetStoryPublicForwardsRequest
*github.com/gotd/td/tg.StatsGetStoryStatsRequest
*github.com/gotd/td/tg.StatsGraph
*github.com/gotd/td/tg.StatsGraphAsync
*github.com/gotd/td/tg.StatsGraphBox
github.com/gotd/td/tg.StatsGraphClass (interface)
*github.com/gotd/td/tg.StatsGraphError
*github.com/gotd/td/tg.StatsGroupTopAdmin
*github.com/gotd/td/tg.StatsGroupTopInviter
*github.com/gotd/td/tg.StatsGroupTopPoster
*github.com/gotd/td/tg.StatsLoadAsyncGraphRequest
*github.com/gotd/td/tg.StatsMegagroupStats
*github.com/gotd/td/tg.StatsMessageStats
*github.com/gotd/td/tg.StatsPercentValue
*github.com/gotd/td/tg.StatsPublicForwards
*github.com/gotd/td/tg.StatsStoryStats
*github.com/gotd/td/tg.StatsURL
*github.com/gotd/td/tg.StickerKeyword
*github.com/gotd/td/tg.StickerPack
*github.com/gotd/td/tg.StickerSet
*github.com/gotd/td/tg.StickerSetCovered
*github.com/gotd/td/tg.StickerSetCoveredBox
github.com/gotd/td/tg.StickerSetCoveredClass (interface)
*github.com/gotd/td/tg.StickerSetCoveredClassVector
*github.com/gotd/td/tg.StickerSetFullCovered
*github.com/gotd/td/tg.StickerSetMultiCovered
*github.com/gotd/td/tg.StickerSetNoCovered
*github.com/gotd/td/tg.StickersAddStickerToSetRequest
*github.com/gotd/td/tg.StickersChangeStickerPositionRequest
*github.com/gotd/td/tg.StickersChangeStickerRequest
*github.com/gotd/td/tg.StickersCheckShortNameRequest
*github.com/gotd/td/tg.StickersCreateStickerSetRequest
*github.com/gotd/td/tg.StickersDeleteStickerSetRequest
*github.com/gotd/td/tg.StickersRemoveStickerFromSetRequest
*github.com/gotd/td/tg.StickersRenameStickerSetRequest
*github.com/gotd/td/tg.StickersSetStickerSetThumbRequest
*github.com/gotd/td/tg.StickersSuggestedShortName
*github.com/gotd/td/tg.StickersSuggestShortNameRequest
*github.com/gotd/td/tg.StorageFileGif
*github.com/gotd/td/tg.StorageFileJpeg
*github.com/gotd/td/tg.StorageFileMov
*github.com/gotd/td/tg.StorageFileMp3
*github.com/gotd/td/tg.StorageFileMp4
*github.com/gotd/td/tg.StorageFilePartial
*github.com/gotd/td/tg.StorageFilePdf
*github.com/gotd/td/tg.StorageFilePng
*github.com/gotd/td/tg.StorageFileTypeBox
github.com/gotd/td/tg.StorageFileTypeClass (interface)
*github.com/gotd/td/tg.StorageFileUnknown
*github.com/gotd/td/tg.StorageFileWebp
*github.com/gotd/td/tg.StoriesActivateStealthModeRequest
*github.com/gotd/td/tg.StoriesAllStories
*github.com/gotd/td/tg.StoriesAllStoriesBox
github.com/gotd/td/tg.StoriesAllStoriesClass (interface)
*github.com/gotd/td/tg.StoriesAllStoriesNotModified
*github.com/gotd/td/tg.StoriesCanSendStoryRequest
*github.com/gotd/td/tg.StoriesDeleteStoriesRequest
*github.com/gotd/td/tg.StoriesEditStoryRequest
*github.com/gotd/td/tg.StoriesExportStoryLinkRequest
*github.com/gotd/td/tg.StoriesGetAllReadPeerStoriesRequest
*github.com/gotd/td/tg.StoriesGetAllStoriesRequest
*github.com/gotd/td/tg.StoriesGetChatsToSendRequest
*github.com/gotd/td/tg.StoriesGetPeerMaxIDsRequest
*github.com/gotd/td/tg.StoriesGetPeerStoriesRequest
*github.com/gotd/td/tg.StoriesGetPinnedStoriesRequest
*github.com/gotd/td/tg.StoriesGetStoriesArchiveRequest
*github.com/gotd/td/tg.StoriesGetStoriesByIDRequest
*github.com/gotd/td/tg.StoriesGetStoriesViewsRequest
*github.com/gotd/td/tg.StoriesGetStoryReactionsListRequest
*github.com/gotd/td/tg.StoriesGetStoryViewsListRequest
*github.com/gotd/td/tg.StoriesIncrementStoryViewsRequest
*github.com/gotd/td/tg.StoriesPeerStories
*github.com/gotd/td/tg.StoriesReadStoriesRequest
*github.com/gotd/td/tg.StoriesReportRequest
*github.com/gotd/td/tg.StoriesSendReactionRequest
*github.com/gotd/td/tg.StoriesSendStoryRequest
*github.com/gotd/td/tg.StoriesStealthMode
*github.com/gotd/td/tg.StoriesStories
*github.com/gotd/td/tg.StoriesStoryReactionsList
*github.com/gotd/td/tg.StoriesStoryViews
*github.com/gotd/td/tg.StoriesStoryViewsList
*github.com/gotd/td/tg.StoriesToggleAllStoriesHiddenRequest
*github.com/gotd/td/tg.StoriesTogglePeerStoriesHiddenRequest
*github.com/gotd/td/tg.StoriesTogglePinnedRequest
*github.com/gotd/td/tg.StoryFwdHeader
*github.com/gotd/td/tg.StoryItem
*github.com/gotd/td/tg.StoryItemBox
github.com/gotd/td/tg.StoryItemClass (interface)
*github.com/gotd/td/tg.StoryItemDeleted
*github.com/gotd/td/tg.StoryItemSkipped
*github.com/gotd/td/tg.StoryReaction
*github.com/gotd/td/tg.StoryReactionBox
github.com/gotd/td/tg.StoryReactionClass (interface)
*github.com/gotd/td/tg.StoryReactionPublicForward
*github.com/gotd/td/tg.StoryReactionPublicRepost
*github.com/gotd/td/tg.StoryView
*github.com/gotd/td/tg.StoryViewBox
github.com/gotd/td/tg.StoryViewClass (interface)
*github.com/gotd/td/tg.StoryViewPublicForward
*github.com/gotd/td/tg.StoryViewPublicRepost
*github.com/gotd/td/tg.StoryViews
*github.com/gotd/td/tg.String
*github.com/gotd/td/tg.TestUseConfigSimpleRequest
*github.com/gotd/td/tg.TestUseErrorRequest
*github.com/gotd/td/tg.TextAnchor
*github.com/gotd/td/tg.TextBold
*github.com/gotd/td/tg.TextConcat
*github.com/gotd/td/tg.TextEmail
*github.com/gotd/td/tg.TextEmpty
*github.com/gotd/td/tg.TextFixed
*github.com/gotd/td/tg.TextImage
*github.com/gotd/td/tg.TextItalic
*github.com/gotd/td/tg.TextMarked
*github.com/gotd/td/tg.TextPhone
*github.com/gotd/td/tg.TextPlain
*github.com/gotd/td/tg.TextStrike
*github.com/gotd/td/tg.TextSubscript
*github.com/gotd/td/tg.TextSuperscript
*github.com/gotd/td/tg.TextUnderline
*github.com/gotd/td/tg.TextURL
*github.com/gotd/td/tg.TextWithEntities
*github.com/gotd/td/tg.Theme
*github.com/gotd/td/tg.ThemeSettings
*github.com/gotd/td/tg.TopPeer
*github.com/gotd/td/tg.TopPeerCategoryBotsInline
*github.com/gotd/td/tg.TopPeerCategoryBotsPM
*github.com/gotd/td/tg.TopPeerCategoryBox
*github.com/gotd/td/tg.TopPeerCategoryChannels
github.com/gotd/td/tg.TopPeerCategoryClass (interface)
*github.com/gotd/td/tg.TopPeerCategoryCorrespondents
*github.com/gotd/td/tg.TopPeerCategoryForwardChats
*github.com/gotd/td/tg.TopPeerCategoryForwardUsers
*github.com/gotd/td/tg.TopPeerCategoryGroups
*github.com/gotd/td/tg.TopPeerCategoryPeers
*github.com/gotd/td/tg.TopPeerCategoryPhoneCalls
*github.com/gotd/td/tg.True
*github.com/gotd/td/tg.UpdateAttachMenuBots
*github.com/gotd/td/tg.UpdateAutoSaveSettings
*github.com/gotd/td/tg.UpdateBotCallbackQuery
*github.com/gotd/td/tg.UpdateBotChatBoost
*github.com/gotd/td/tg.UpdateBotChatInviteRequester
*github.com/gotd/td/tg.UpdateBotCommands
*github.com/gotd/td/tg.UpdateBotInlineQuery
*github.com/gotd/td/tg.UpdateBotInlineSend
*github.com/gotd/td/tg.UpdateBotMenuButton
*github.com/gotd/td/tg.UpdateBotMessageReaction
*github.com/gotd/td/tg.UpdateBotMessageReactions
*github.com/gotd/td/tg.UpdateBotPrecheckoutQuery
*github.com/gotd/td/tg.UpdateBotShippingQuery
*github.com/gotd/td/tg.UpdateBotStopped
*github.com/gotd/td/tg.UpdateBotWebhookJSON
*github.com/gotd/td/tg.UpdateBotWebhookJSONQuery
*github.com/gotd/td/tg.UpdateBox
*github.com/gotd/td/tg.UpdateChannel
*github.com/gotd/td/tg.UpdateChannelAvailableMessages
*github.com/gotd/td/tg.UpdateChannelMessageForwards
*github.com/gotd/td/tg.UpdateChannelMessageViews
*github.com/gotd/td/tg.UpdateChannelParticipant
*github.com/gotd/td/tg.UpdateChannelPinnedTopic
*github.com/gotd/td/tg.UpdateChannelPinnedTopics
*github.com/gotd/td/tg.UpdateChannelReadMessagesContents
*github.com/gotd/td/tg.UpdateChannelTooLong
*github.com/gotd/td/tg.UpdateChannelUserTyping
*github.com/gotd/td/tg.UpdateChannelViewForumAsMessages
*github.com/gotd/td/tg.UpdateChannelWebPage
*github.com/gotd/td/tg.UpdateChat
*github.com/gotd/td/tg.UpdateChatDefaultBannedRights
*github.com/gotd/td/tg.UpdateChatParticipant
*github.com/gotd/td/tg.UpdateChatParticipantAdd
*github.com/gotd/td/tg.UpdateChatParticipantAdmin
*github.com/gotd/td/tg.UpdateChatParticipantDelete
*github.com/gotd/td/tg.UpdateChatParticipants
*github.com/gotd/td/tg.UpdateChatUserTyping
github.com/gotd/td/tg.UpdateClass (interface)
*github.com/gotd/td/tg.UpdateConfig
*github.com/gotd/td/tg.UpdateContactsReset
*github.com/gotd/td/tg.UpdateDCOptions
*github.com/gotd/td/tg.UpdateDeleteChannelMessages
*github.com/gotd/td/tg.UpdateDeleteMessages
*github.com/gotd/td/tg.UpdateDeleteScheduledMessages
*github.com/gotd/td/tg.UpdateDialogFilter
*github.com/gotd/td/tg.UpdateDialogFilterOrder
*github.com/gotd/td/tg.UpdateDialogFilters
*github.com/gotd/td/tg.UpdateDialogPinned
*github.com/gotd/td/tg.UpdateDialogUnreadMark
*github.com/gotd/td/tg.UpdateDraftMessage
*github.com/gotd/td/tg.UpdateEditChannelMessage
*github.com/gotd/td/tg.UpdateEditMessage
*github.com/gotd/td/tg.UpdateEncryptedChatTyping
*github.com/gotd/td/tg.UpdateEncryptedMessagesRead
*github.com/gotd/td/tg.UpdateEncryption
*github.com/gotd/td/tg.UpdateFavedStickers
*github.com/gotd/td/tg.UpdateFolderPeers
*github.com/gotd/td/tg.UpdateGeoLiveViewed
*github.com/gotd/td/tg.UpdateGroupCall
*github.com/gotd/td/tg.UpdateGroupCallConnection
*github.com/gotd/td/tg.UpdateGroupCallParticipants
*github.com/gotd/td/tg.UpdateGroupInvitePrivacyForbidden
*github.com/gotd/td/tg.UpdateInlineBotCallbackQuery
*github.com/gotd/td/tg.UpdateLangPack
*github.com/gotd/td/tg.UpdateLangPackTooLong
*github.com/gotd/td/tg.UpdateLoginToken
*github.com/gotd/td/tg.UpdateMessageExtendedMedia
*github.com/gotd/td/tg.UpdateMessageID
*github.com/gotd/td/tg.UpdateMessagePoll
*github.com/gotd/td/tg.UpdateMessagePollVote
*github.com/gotd/td/tg.UpdateMessageReactions
*github.com/gotd/td/tg.UpdateMoveStickerSetToTop
*github.com/gotd/td/tg.UpdateNewAuthorization
*github.com/gotd/td/tg.UpdateNewChannelMessage
*github.com/gotd/td/tg.UpdateNewEncryptedMessage
*github.com/gotd/td/tg.UpdateNewMessage
*github.com/gotd/td/tg.UpdateNewScheduledMessage
*github.com/gotd/td/tg.UpdateNewStickerSet
*github.com/gotd/td/tg.UpdateNotifySettings
*github.com/gotd/td/tg.UpdatePeerBlocked
*github.com/gotd/td/tg.UpdatePeerHistoryTTL
*github.com/gotd/td/tg.UpdatePeerLocated
*github.com/gotd/td/tg.UpdatePeerSettings
*github.com/gotd/td/tg.UpdatePeerWallpaper
*github.com/gotd/td/tg.UpdatePendingJoinRequests
*github.com/gotd/td/tg.UpdatePhoneCall
*github.com/gotd/td/tg.UpdatePhoneCallSignalingData
*github.com/gotd/td/tg.UpdatePinnedChannelMessages
*github.com/gotd/td/tg.UpdatePinnedDialogs
*github.com/gotd/td/tg.UpdatePinnedMessages
*github.com/gotd/td/tg.UpdatePrivacy
*github.com/gotd/td/tg.UpdatePtsChanged
*github.com/gotd/td/tg.UpdateReadChannelDiscussionInbox
*github.com/gotd/td/tg.UpdateReadChannelDiscussionOutbox
*github.com/gotd/td/tg.UpdateReadChannelInbox
*github.com/gotd/td/tg.UpdateReadChannelOutbox
*github.com/gotd/td/tg.UpdateReadFeaturedEmojiStickers
*github.com/gotd/td/tg.UpdateReadFeaturedStickers
*github.com/gotd/td/tg.UpdateReadHistoryInbox
*github.com/gotd/td/tg.UpdateReadHistoryOutbox
*github.com/gotd/td/tg.UpdateReadMessagesContents
*github.com/gotd/td/tg.UpdateReadStories
*github.com/gotd/td/tg.UpdateRecentEmojiStatuses
*github.com/gotd/td/tg.UpdateRecentReactions
*github.com/gotd/td/tg.UpdateRecentStickers
*github.com/gotd/td/tg.UpdateSavedGifs
*github.com/gotd/td/tg.UpdateSavedRingtones
*github.com/gotd/td/tg.UpdateSentStoryReaction
*github.com/gotd/td/tg.UpdateServiceNotification
*github.com/gotd/td/tg.UpdateShort
*github.com/gotd/td/tg.UpdateShortChatMessage
*github.com/gotd/td/tg.UpdateShortMessage
*github.com/gotd/td/tg.UpdateShortSentMessage
*github.com/gotd/td/tg.UpdateStickerSets
*github.com/gotd/td/tg.UpdateStickerSetsOrder
*github.com/gotd/td/tg.UpdateStoriesStealthMode
*github.com/gotd/td/tg.UpdateStory
*github.com/gotd/td/tg.UpdateStoryID
*github.com/gotd/td/tg.Updates
*github.com/gotd/td/tg.UpdatesBox
*github.com/gotd/td/tg.UpdatesChannelDifference
*github.com/gotd/td/tg.UpdatesChannelDifferenceBox
github.com/gotd/td/tg.UpdatesChannelDifferenceClass (interface)
*github.com/gotd/td/tg.UpdatesChannelDifferenceEmpty
*github.com/gotd/td/tg.UpdatesChannelDifferenceTooLong
github.com/gotd/td/tg.UpdatesClass (interface)
*github.com/gotd/td/tg.UpdatesCombined
*github.com/gotd/td/tg.UpdatesDifference
*github.com/gotd/td/tg.UpdatesDifferenceBox
github.com/gotd/td/tg.UpdatesDifferenceClass (interface)
*github.com/gotd/td/tg.UpdatesDifferenceEmpty
*github.com/gotd/td/tg.UpdatesDifferenceSlice
*github.com/gotd/td/tg.UpdatesDifferenceTooLong
*github.com/gotd/td/tg.UpdatesGetChannelDifferenceRequest
*github.com/gotd/td/tg.UpdatesGetDifferenceRequest
*github.com/gotd/td/tg.UpdatesGetStateRequest
*github.com/gotd/td/tg.UpdatesState
*github.com/gotd/td/tg.UpdatesTooLong
*github.com/gotd/td/tg.UpdateTheme
*github.com/gotd/td/tg.UpdateTranscribedAudio
*github.com/gotd/td/tg.UpdateUser
*github.com/gotd/td/tg.UpdateUserEmojiStatus
*github.com/gotd/td/tg.UpdateUserName
*github.com/gotd/td/tg.UpdateUserPhone
*github.com/gotd/td/tg.UpdateUserStatus
*github.com/gotd/td/tg.UpdateUserTyping
*github.com/gotd/td/tg.UpdateWebPage
*github.com/gotd/td/tg.UpdateWebViewResultSent
*github.com/gotd/td/tg.UploadCDNFile
*github.com/gotd/td/tg.UploadCDNFileBox
github.com/gotd/td/tg.UploadCDNFileClass (interface)
*github.com/gotd/td/tg.UploadCDNFileReuploadNeeded
*github.com/gotd/td/tg.UploadFile
*github.com/gotd/td/tg.UploadFileBox
*github.com/gotd/td/tg.UploadFileCDNRedirect
github.com/gotd/td/tg.UploadFileClass (interface)
*github.com/gotd/td/tg.UploadGetCDNFileHashesRequest
*github.com/gotd/td/tg.UploadGetCDNFileRequest
*github.com/gotd/td/tg.UploadGetFileHashesRequest
*github.com/gotd/td/tg.UploadGetFileRequest
*github.com/gotd/td/tg.UploadGetWebFileRequest
*github.com/gotd/td/tg.UploadReuploadCDNFileRequest
*github.com/gotd/td/tg.UploadSaveBigFilePartRequest
*github.com/gotd/td/tg.UploadSaveFilePartRequest
*github.com/gotd/td/tg.UploadWebFile
*github.com/gotd/td/tg.URLAuthResultAccepted
*github.com/gotd/td/tg.URLAuthResultBox
github.com/gotd/td/tg.URLAuthResultClass (interface)
*github.com/gotd/td/tg.URLAuthResultDefault
*github.com/gotd/td/tg.URLAuthResultRequest
*github.com/gotd/td/tg.User
*github.com/gotd/td/tg.UserBox
github.com/gotd/td/tg.UserClass (interface)
*github.com/gotd/td/tg.UserClassVector
*github.com/gotd/td/tg.UserEmpty
*github.com/gotd/td/tg.UserFull
*github.com/gotd/td/tg.Username
*github.com/gotd/td/tg.UserProfilePhoto
*github.com/gotd/td/tg.UserProfilePhotoBox
github.com/gotd/td/tg.UserProfilePhotoClass (interface)
*github.com/gotd/td/tg.UserProfilePhotoEmpty
*github.com/gotd/td/tg.UserStatusBox
github.com/gotd/td/tg.UserStatusClass (interface)
*github.com/gotd/td/tg.UserStatusEmpty
*github.com/gotd/td/tg.UserStatusLastMonth
*github.com/gotd/td/tg.UserStatusLastWeek
*github.com/gotd/td/tg.UserStatusOffline
*github.com/gotd/td/tg.UserStatusOnline
*github.com/gotd/td/tg.UserStatusRecently
*github.com/gotd/td/tg.UsersGetFullUserRequest
*github.com/gotd/td/tg.UsersGetUsersRequest
*github.com/gotd/td/tg.UsersSetSecureValueErrorsRequest
*github.com/gotd/td/tg.UsersUserFull
*github.com/gotd/td/tg.VideoSize
*github.com/gotd/td/tg.VideoSizeBox
github.com/gotd/td/tg.VideoSizeClass (interface)
*github.com/gotd/td/tg.VideoSizeEmojiMarkup
*github.com/gotd/td/tg.VideoSizeStickerMarkup
*github.com/gotd/td/tg.WallPaper
*github.com/gotd/td/tg.WallPaperBox
github.com/gotd/td/tg.WallPaperClass (interface)
*github.com/gotd/td/tg.WallPaperClassVector
*github.com/gotd/td/tg.WallPaperNoFile
*github.com/gotd/td/tg.WallPaperSettings
*github.com/gotd/td/tg.WebAuthorization
*github.com/gotd/td/tg.WebDocument
*github.com/gotd/td/tg.WebDocumentBox
github.com/gotd/td/tg.WebDocumentClass (interface)
*github.com/gotd/td/tg.WebDocumentNoProxy
*github.com/gotd/td/tg.WebPage
*github.com/gotd/td/tg.WebPageAttributeBox
github.com/gotd/td/tg.WebPageAttributeClass (interface)
*github.com/gotd/td/tg.WebPageAttributeStory
*github.com/gotd/td/tg.WebPageAttributeTheme
*github.com/gotd/td/tg.WebPageBox
github.com/gotd/td/tg.WebPageClass (interface)
*github.com/gotd/td/tg.WebPageEmpty
*github.com/gotd/td/tg.WebPageNotModified
*github.com/gotd/td/tg.WebPagePending
*github.com/gotd/td/tg.WebViewMessageSent
*github.com/gotd/td/tg.WebViewResultURL
/* at least one unexported ... */ /* at least one unexported: */
github.com/gotd/td/telegram/internal/manager.noopDecoder
As Outputs Of (at least one exported )
func github.com/gotd/td/tg.(*ServerDispatcher ).Handle (ctx context .Context , b *Buffer ) (Encoder , error )
As Inputs Of (at least 18, in which 10 are exported )
func (*Buffer ).Encode (e Encoder ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/internal/pool.Conn .Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/internal/pool.(*DC ).Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/internal/rpc.NopSend (context .Context , int64 , int32 , Encoder ) error
func github.com/gotd/td/telegram.(*Client ).Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.CloseInvoker .Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.InvokeFunc .Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram/internal/manager.(*Conn ).Invoke (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/tg.Invoker .Invoke (ctx context .Context , input Encoder , output Decoder ) error
/* 8+ unexporteds ... */ /* 8+ unexporteds: */
func github.com/gotd/td/internal/mtproto.(*Conn ).newEncryptedMessage (id int64 , seq int32 , payload Encoder , b *Buffer ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).write (ctx context .Context , msgID int64 , seqNo int32 , message Encoder ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).writeContentMessage (ctx context .Context , msgID int64 , seqNo int32 , message Encoder ) error
func github.com/gotd/td/internal/mtproto.(*Conn ).writeServiceMessage (ctx context .Context , message Encoder ) error
func github.com/gotd/td/telegram.(*Client ).invokeConn (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.(*Client ).invokeDirect (ctx context .Context , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.(*Client ).invokeMigrate (ctx context .Context , dcID int , input Encoder , output Decoder ) error
func github.com/gotd/td/telegram.(*Client ).invokeSub (ctx context .Context , dc int , input Encoder , output Decoder ) error
type Int128 ([...])
Int128 represents signed 128-bit integer.
Methods (total 3, all are exported )
( Int128) BigInt () *big .Int
BigInt returns corresponding big.Int value.
(*Int128) Decode (buf *Buffer ) error
Decode implements bin.Decoder.
( Int128) Encode (b *Buffer ) error
Encode implements bin.Encoder.
Implements (at least 3, all are exported )
*Int128 : Decoder
Int128 : Encoder
*Int128 : Object
As Outputs Of (at least 44, in which 43 are exported )
func (*Buffer ).Int128 () (Int128 , error )
func github.com/gotd/td/internal/crypto.MessageKey (authKey crypto .Key , plaintextPadded []byte , mode crypto .Side ) Int128
func github.com/gotd/td/internal/crypto.NonceHash1 (newNonce Int256 , key crypto .Key ) (r Int128 )
func github.com/gotd/td/internal/crypto.RandInt128 (randSource io .Reader ) (Int128 , error )
func github.com/gotd/td/internal/mt.(*ClientDHInnerData ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ClientDHInnerData ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*DhGenFail ).GetNewNonceHash3 () (value Int128 )
func github.com/gotd/td/internal/mt.(*DhGenFail ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*DhGenFail ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*DhGenOk ).GetNewNonceHash1 () (value Int128 )
func github.com/gotd/td/internal/mt.(*DhGenOk ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*DhGenOk ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*DhGenRetry ).GetNewNonceHash2 () (value Int128 )
func github.com/gotd/td/internal/mt.(*DhGenRetry ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*DhGenRetry ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*PQInnerData ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*PQInnerData ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.PQInnerDataClass .GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.PQInnerDataClass .GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*PQInnerDataDC ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*PQInnerDataDC ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*PQInnerDataTempDC ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*PQInnerDataTempDC ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ReqDHParamsRequest ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ReqDHParamsRequest ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ReqPqMultiRequest ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ReqPqRequest ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ResPQ ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ResPQ ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ServerDHInnerData ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ServerDHInnerData ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.ServerDHParamsClass .GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.ServerDHParamsClass .GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ServerDHParamsFail ).GetNewNonceHash () (value Int128 )
func github.com/gotd/td/internal/mt.(*ServerDHParamsFail ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ServerDHParamsFail ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ServerDHParamsOk ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*ServerDHParamsOk ).GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.SetClientDHParamsAnswerClass .GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.SetClientDHParamsAnswerClass .GetServerNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*SetClientDHParamsRequest ).GetNonce () (value Int128 )
func github.com/gotd/td/internal/mt.(*SetClientDHParamsRequest ).GetServerNonce () (value Int128 )
func github.com/gotd/td/tdjson.Decoder .Int128 () (Int128 , error )
/* at least one unexported ... */ /* at least one unexported: */
func github.com/gotd/td/internal/crypto.messageKey (messageKeyLarge []byte ) (v Int128 )
As Inputs Of (at least 11, in which 5 are exported )
func (*Buffer ).PutInt128 (v Int128 )
func github.com/gotd/td/internal/crypto.Keys (authKey crypto .Key , msgKey Int128 , mode crypto .Side ) (key, iv Int256 )
func github.com/gotd/td/internal/crypto.OldKeys (authKey crypto .Key , msgKey Int128 , mode crypto .Side ) (key, iv Int256 )
func github.com/gotd/td/internal/crypto.ServerSalt (newNonce Int256 , serverNonce Int128 ) (salt int64 )
func github.com/gotd/td/tdjson.Encoder .PutInt128 (v Int128 )
/* 6+ unexporteds ... */ /* 6+ unexporteds: */
func github.com/gotd/td/internal/crypto.sha1a (r []byte , authKey crypto .Key , msgKey Int128 , x int ) []byte
func github.com/gotd/td/internal/crypto.sha1b (r []byte , authKey crypto .Key , msgKey Int128 , x int ) []byte
func github.com/gotd/td/internal/crypto.sha1c (r []byte , authKey crypto .Key , msgKey Int128 , x int ) []byte
func github.com/gotd/td/internal/crypto.sha1d (r []byte , authKey crypto .Key , msgKey Int128 , x int ) []byte
func github.com/gotd/td/internal/crypto.sha256a (r []byte , authKey *crypto .Key , msgKey *Int128 , x int ) []byte
func github.com/gotd/td/internal/crypto.sha256b (r []byte , authKey *crypto .Key , msgKey *Int128 , x int ) []byte
type Int256 ([...])
Int256 represents signed 256-bit integer.
Methods (total 3, all are exported )
( Int256) BigInt () *big .Int
BigInt returns corresponding big.Int value.
(*Int256) Decode (buf *Buffer ) error
Decode implements bin.Decoder.
( Int256) Encode (b *Buffer ) error
Encode implements bin.Encoder.
Implements (at least 3, all are exported )
*Int256 : Decoder
Int256 : Encoder
*Int256 : Object
As Outputs Of (at least 9, all are exported )
func (*Buffer ).Int256 () (Int256 , error )
func github.com/gotd/td/internal/crypto.Keys (authKey crypto .Key , msgKey Int128 , mode crypto .Side ) (key, iv Int256 )
func github.com/gotd/td/internal/crypto.OldKeys (authKey crypto .Key , msgKey Int128 , mode crypto .Side ) (key, iv Int256 )
func github.com/gotd/td/internal/crypto.RandInt256 (randSource io .Reader ) (Int256 , error )
func github.com/gotd/td/internal/mt.(*PQInnerData ).GetNewNonce () (value Int256 )
func github.com/gotd/td/internal/mt.PQInnerDataClass .GetNewNonce () (value Int256 )
func github.com/gotd/td/internal/mt.(*PQInnerDataDC ).GetNewNonce () (value Int256 )
func github.com/gotd/td/internal/mt.(*PQInnerDataTempDC ).GetNewNonce () (value Int256 )
func github.com/gotd/td/tdjson.Decoder .Int256 () (Int256 , error )
As Inputs Of (at least 6, in which 4 are exported )
func (*Buffer ).PutInt256 (v Int256 )
func github.com/gotd/td/internal/crypto.NonceHash1 (newNonce Int256 , key crypto .Key ) (r Int128 )
func github.com/gotd/td/internal/crypto.ServerSalt (newNonce Int256 , serverNonce Int128 ) (salt int64 )
func github.com/gotd/td/tdjson.Encoder .PutInt256 (v Int256 )
/* 2+ unexporteds ... */ /* 2+ unexporteds: */
func github.com/gotd/td/internal/crypto.aesIV (sha256a, sha256b []byte , v *Int256 )
func github.com/gotd/td/internal/crypto.aesKey (sha256a, sha256b []byte , v *Int256 )
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 .