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