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
145 lines
3.5 KiB
Go
145 lines
3.5 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{}
|
|
)
|
|
|
|
// UpdatesGetStateRequest represents TL type `updates.getState#edd4882a`.
|
|
// Returns a current state of updates.
|
|
//
|
|
// See https://core.telegram.org/method/updates.getState for reference.
|
|
type UpdatesGetStateRequest struct {
|
|
}
|
|
|
|
// UpdatesGetStateRequestTypeID is TL type id of UpdatesGetStateRequest.
|
|
const UpdatesGetStateRequestTypeID = 0xedd4882a
|
|
|
|
// Ensuring interfaces in compile-time for UpdatesGetStateRequest.
|
|
var (
|
|
_ bin.Encoder = &UpdatesGetStateRequest{}
|
|
_ bin.Decoder = &UpdatesGetStateRequest{}
|
|
_ bin.BareEncoder = &UpdatesGetStateRequest{}
|
|
_ bin.BareDecoder = &UpdatesGetStateRequest{}
|
|
)
|
|
|
|
func (g *UpdatesGetStateRequest) Zero() bool {
|
|
if g == nil {
|
|
return true
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (g *UpdatesGetStateRequest) String() string {
|
|
if g == nil {
|
|
return "UpdatesGetStateRequest(nil)"
|
|
}
|
|
type Alias UpdatesGetStateRequest
|
|
return fmt.Sprintf("UpdatesGetStateRequest%+v", Alias(*g))
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*UpdatesGetStateRequest) TypeID() uint32 {
|
|
return UpdatesGetStateRequestTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*UpdatesGetStateRequest) TypeName() string {
|
|
return "updates.getState"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (g *UpdatesGetStateRequest) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "updates.getState",
|
|
ID: UpdatesGetStateRequestTypeID,
|
|
}
|
|
if g == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (g *UpdatesGetStateRequest) Encode(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't encode updates.getState#edd4882a as nil")
|
|
}
|
|
b.PutID(UpdatesGetStateRequestTypeID)
|
|
return g.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (g *UpdatesGetStateRequest) EncodeBare(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't encode updates.getState#edd4882a as nil")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (g *UpdatesGetStateRequest) Decode(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't decode updates.getState#edd4882a to nil")
|
|
}
|
|
if err := b.ConsumeID(UpdatesGetStateRequestTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode updates.getState#edd4882a: %w", err)
|
|
}
|
|
return g.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (g *UpdatesGetStateRequest) DecodeBare(b *bin.Buffer) error {
|
|
if g == nil {
|
|
return fmt.Errorf("can't decode updates.getState#edd4882a to nil")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// UpdatesGetState invokes method updates.getState#edd4882a returning error if any.
|
|
// Returns a current state of updates.
|
|
//
|
|
// See https://core.telegram.org/method/updates.getState for reference.
|
|
// Can be used by bots.
|
|
func (c *Client) UpdatesGetState(ctx context.Context) (*UpdatesState, error) {
|
|
var result UpdatesState
|
|
|
|
request := &UpdatesGetStateRequest{}
|
|
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
|
return nil, err
|
|
}
|
|
return &result, nil
|
|
}
|