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