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.7 KiB
Go
170 lines
4.7 KiB
Go
// 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{}
|
|
)
|
|
|
|
// ClearAutosaveSettingsExceptionsRequest represents TL type `clearAutosaveSettingsExceptions#57ec63f2`.
|
|
type ClearAutosaveSettingsExceptionsRequest struct {
|
|
}
|
|
|
|
// ClearAutosaveSettingsExceptionsRequestTypeID is TL type id of ClearAutosaveSettingsExceptionsRequest.
|
|
const ClearAutosaveSettingsExceptionsRequestTypeID = 0x57ec63f2
|
|
|
|
// Ensuring interfaces in compile-time for ClearAutosaveSettingsExceptionsRequest.
|
|
var (
|
|
_ bin.Encoder = &ClearAutosaveSettingsExceptionsRequest{}
|
|
_ bin.Decoder = &ClearAutosaveSettingsExceptionsRequest{}
|
|
_ bin.BareEncoder = &ClearAutosaveSettingsExceptionsRequest{}
|
|
_ bin.BareDecoder = &ClearAutosaveSettingsExceptionsRequest{}
|
|
)
|
|
|
|
func (c *ClearAutosaveSettingsExceptionsRequest) Zero() bool {
|
|
if c == nil {
|
|
return true
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (c *ClearAutosaveSettingsExceptionsRequest) String() string {
|
|
if c == nil {
|
|
return "ClearAutosaveSettingsExceptionsRequest(nil)"
|
|
}
|
|
type Alias ClearAutosaveSettingsExceptionsRequest
|
|
return fmt.Sprintf("ClearAutosaveSettingsExceptionsRequest%+v", Alias(*c))
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*ClearAutosaveSettingsExceptionsRequest) TypeID() uint32 {
|
|
return ClearAutosaveSettingsExceptionsRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*ClearAutosaveSettingsExceptionsRequest) TypeName() string {
|
|
return "clearAutosaveSettingsExceptions"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (c *ClearAutosaveSettingsExceptionsRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "clearAutosaveSettingsExceptions",
|
|
ID: ClearAutosaveSettingsExceptionsRequestTypeID,
|
|
}
|
|
if c == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (c *ClearAutosaveSettingsExceptionsRequest) Encode(b *bin.Buffer) error {
|
|
if c == nil {
|
|
return fmt.Errorf("can't encode clearAutosaveSettingsExceptions#57ec63f2 as nil")
|
|
}
|
|
b.PutID(ClearAutosaveSettingsExceptionsRequestTypeID)
|
|
return c.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (c *ClearAutosaveSettingsExceptionsRequest) EncodeBare(b *bin.Buffer) error {
|
|
if c == nil {
|
|
return fmt.Errorf("can't encode clearAutosaveSettingsExceptions#57ec63f2 as nil")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (c *ClearAutosaveSettingsExceptionsRequest) Decode(b *bin.Buffer) error {
|
|
if c == nil {
|
|
return fmt.Errorf("can't decode clearAutosaveSettingsExceptions#57ec63f2 to nil")
|
|
}
|
|
if err := b.ConsumeID(ClearAutosaveSettingsExceptionsRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode clearAutosaveSettingsExceptions#57ec63f2: %w", err)
|
|
}
|
|
return c.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (c *ClearAutosaveSettingsExceptionsRequest) DecodeBare(b *bin.Buffer) error {
|
|
if c == nil {
|
|
return fmt.Errorf("can't decode clearAutosaveSettingsExceptions#57ec63f2 to nil")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// EncodeTDLibJSON implements tdjson.TDLibEncoder.
|
|
func (c *ClearAutosaveSettingsExceptionsRequest) EncodeTDLibJSON(b tdjson.Encoder) error {
|
|
if c == nil {
|
|
return fmt.Errorf("can't encode clearAutosaveSettingsExceptions#57ec63f2 as nil")
|
|
}
|
|
b.ObjStart()
|
|
b.PutID("clearAutosaveSettingsExceptions")
|
|
b.Comma()
|
|
b.StripComma()
|
|
b.ObjEnd()
|
|
return nil
|
|
}
|
|
|
|
// DecodeTDLibJSON implements tdjson.TDLibDecoder.
|
|
func (c *ClearAutosaveSettingsExceptionsRequest) DecodeTDLibJSON(b tdjson.Decoder) error {
|
|
if c == nil {
|
|
return fmt.Errorf("can't decode clearAutosaveSettingsExceptions#57ec63f2 to nil")
|
|
}
|
|
|
|
return b.Obj(func(b tdjson.Decoder, key []byte) error {
|
|
switch string(key) {
|
|
case tdjson.TypeField:
|
|
if err := b.ConsumeID("clearAutosaveSettingsExceptions"); err != nil {
|
|
return fmt.Errorf("unable to decode clearAutosaveSettingsExceptions#57ec63f2: %w", err)
|
|
}
|
|
default:
|
|
return b.Skip()
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// ClearAutosaveSettingsExceptions invokes method clearAutosaveSettingsExceptions#57ec63f2 returning error if any.
|
|
func (c *Client) ClearAutosaveSettingsExceptions(ctx context.Context) error {
|
|
var ok Ok
|
|
|
|
request := &ClearAutosaveSettingsExceptionsRequest{}
|
|
if err := c.rpc.Invoke(ctx, request, &ok); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|