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
129 lines
2.4 KiB
Go
129 lines
2.4 KiB
Go
// Code generated by gotdgen, DO NOT EDIT.
|
|
|
|
package tg
|
|
|
|
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{}
|
|
)
|
|
|
|
// Int represents TL type `int#a8509bda`.
|
|
//
|
|
// See https://core.telegram.org/constructor/int for reference.
|
|
type Int struct {
|
|
}
|
|
|
|
// IntTypeID is TL type id of Int.
|
|
const IntTypeID = 0xa8509bda
|
|
|
|
// Ensuring interfaces in compile-time for Int.
|
|
var (
|
|
_ bin.Encoder = &Int{}
|
|
_ bin.Decoder = &Int{}
|
|
_ bin.BareEncoder = &Int{}
|
|
_ bin.BareDecoder = &Int{}
|
|
)
|
|
|
|
func (i *Int) Zero() bool {
|
|
if i == nil {
|
|
return true
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (i *Int) String() string {
|
|
if i == nil {
|
|
return "Int(nil)"
|
|
}
|
|
type Alias Int
|
|
return fmt.Sprintf("Int%+v", Alias(*i))
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*Int) TypeID() uint32 {
|
|
return IntTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*Int) TypeName() string {
|
|
return "int"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (i *Int) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "int",
|
|
ID: IntTypeID,
|
|
}
|
|
if i == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (i *Int) Encode(b *bin.Buffer) error {
|
|
if i == nil {
|
|
return fmt.Errorf("can't encode int#a8509bda as nil")
|
|
}
|
|
b.PutID(IntTypeID)
|
|
return i.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (i *Int) EncodeBare(b *bin.Buffer) error {
|
|
if i == nil {
|
|
return fmt.Errorf("can't encode int#a8509bda as nil")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (i *Int) Decode(b *bin.Buffer) error {
|
|
if i == nil {
|
|
return fmt.Errorf("can't decode int#a8509bda to nil")
|
|
}
|
|
if err := b.ConsumeID(IntTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode int#a8509bda: %w", err)
|
|
}
|
|
return i.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (i *Int) DecodeBare(b *bin.Buffer) error {
|
|
if i == nil {
|
|
return fmt.Errorf("can't decode int#a8509bda to nil")
|
|
}
|
|
return nil
|
|
}
|