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