7a04f298d2
- update to latest telegram layer - remove some references to fields in tg.Entities that don't exist in the schema - originally added here: https://github.com/beeper/td/commit/820929062a2ba0104397bc01235ab58a9cff780e - referenced here - https://github.com/mautrix/telegramgo/commit/124f0967ed195b5a380c9bd02e170ada9710dde3 - https://github.com/mautrix/telegramgo/commit/4205047aab2e0639217148b5d125bfaab668bd8e
170 lines
4.1 KiB
Go
Generated
170 lines
4.1 KiB
Go
Generated
// Code generated by gotdgen, DO NOT EDIT.
|
|
|
|
package tdapi
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
|
|
"go.uber.org/multierr"
|
|
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/bin"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tdjson"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tdp"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tgerr"
|
|
)
|
|
|
|
// No-op definition for keeping imports.
|
|
var (
|
|
_ = bin.Buffer{}
|
|
_ = context.Background()
|
|
_ = fmt.Stringer(nil)
|
|
_ = strings.Builder{}
|
|
_ = errors.Is
|
|
_ = multierr.AppendInto
|
|
_ = sort.Ints
|
|
_ = tdp.Format
|
|
_ = tgerr.Error{}
|
|
_ = tdjson.Encoder{}
|
|
)
|
|
|
|
// TestGetDifferenceRequest represents TL type `testGetDifference#68226325`.
|
|
type TestGetDifferenceRequest struct {
|
|
}
|
|
|
|
// TestGetDifferenceRequestTypeID is TL type id of TestGetDifferenceRequest.
|
|
const TestGetDifferenceRequestTypeID = 0x68226325
|
|
|
|
// Ensuring interfaces in compile-time for TestGetDifferenceRequest.
|
|
var (
|
|
_ bin.Encoder = &TestGetDifferenceRequest{}
|
|
_ bin.Decoder = &TestGetDifferenceRequest{}
|
|
_ bin.BareEncoder = &TestGetDifferenceRequest{}
|
|
_ bin.BareDecoder = &TestGetDifferenceRequest{}
|
|
)
|
|
|
|
func (t *TestGetDifferenceRequest) Zero() bool {
|
|
if t == nil {
|
|
return true
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (t *TestGetDifferenceRequest) String() string {
|
|
if t == nil {
|
|
return "TestGetDifferenceRequest(nil)"
|
|
}
|
|
type Alias TestGetDifferenceRequest
|
|
return fmt.Sprintf("TestGetDifferenceRequest%+v", Alias(*t))
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*TestGetDifferenceRequest) TypeID() uint32 {
|
|
return TestGetDifferenceRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*TestGetDifferenceRequest) TypeName() string {
|
|
return "testGetDifference"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (t *TestGetDifferenceRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "testGetDifference",
|
|
ID: TestGetDifferenceRequestTypeID,
|
|
}
|
|
if t == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (t *TestGetDifferenceRequest) Encode(b *bin.Buffer) error {
|
|
if t == nil {
|
|
return fmt.Errorf("can't encode testGetDifference#68226325 as nil")
|
|
}
|
|
b.PutID(TestGetDifferenceRequestTypeID)
|
|
return t.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (t *TestGetDifferenceRequest) EncodeBare(b *bin.Buffer) error {
|
|
if t == nil {
|
|
return fmt.Errorf("can't encode testGetDifference#68226325 as nil")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (t *TestGetDifferenceRequest) Decode(b *bin.Buffer) error {
|
|
if t == nil {
|
|
return fmt.Errorf("can't decode testGetDifference#68226325 to nil")
|
|
}
|
|
if err := b.ConsumeID(TestGetDifferenceRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode testGetDifference#68226325: %w", err)
|
|
}
|
|
return t.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (t *TestGetDifferenceRequest) DecodeBare(b *bin.Buffer) error {
|
|
if t == nil {
|
|
return fmt.Errorf("can't decode testGetDifference#68226325 to nil")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
|
|
func (t *TestGetDifferenceRequest) EncodeTDLibJSON(b tdjson.Encoder) error {
|
|
if t == nil {
|
|
return fmt.Errorf("can't encode testGetDifference#68226325 as nil")
|
|
}
|
|
b.ObjStart()
|
|
b.PutID("testGetDifference")
|
|
b.Comma()
|
|
b.StripComma()
|
|
b.ObjEnd()
|
|
return nil
|
|
}
|
|
|
|
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
|
|
func (t *TestGetDifferenceRequest) DecodeTDLibJSON(b tdjson.Decoder) error {
|
|
if t == nil {
|
|
return fmt.Errorf("can't decode testGetDifference#68226325 to nil")
|
|
}
|
|
|
|
return b.Obj(func(b tdjson.Decoder, key []byte) error {
|
|
switch string(key) {
|
|
case tdjson.TypeField:
|
|
if err := b.ConsumeID("testGetDifference"); err != nil {
|
|
return fmt.Errorf("unable to decode testGetDifference#68226325: %w", err)
|
|
}
|
|
default:
|
|
return b.Skip()
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// TestGetDifference invokes method testGetDifference#68226325 returning error if any.
|
|
func (c *Client) TestGetDifference(ctx context.Context) error {
|
|
var ok Ok
|
|
|
|
request := &TestGetDifferenceRequest{}
|
|
if err := c.rpc.Invoke(ctx, request, &ok); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|