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
190 lines
4.4 KiB
Go
Generated
190 lines
4.4 KiB
Go
Generated
// 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{}
|
|
)
|
|
|
|
// PaymentSavedCredentialsCard represents TL type `paymentSavedCredentialsCard#cdc27a1f`.
|
|
// Saved credit card
|
|
//
|
|
// See https://core.telegram.org/constructor/paymentSavedCredentialsCard for reference.
|
|
type PaymentSavedCredentialsCard struct {
|
|
// Card ID
|
|
ID string
|
|
// Title
|
|
Title string
|
|
}
|
|
|
|
// PaymentSavedCredentialsCardTypeID is TL type id of PaymentSavedCredentialsCard.
|
|
const PaymentSavedCredentialsCardTypeID = 0xcdc27a1f
|
|
|
|
// Ensuring interfaces in compile-time for PaymentSavedCredentialsCard.
|
|
var (
|
|
_ bin.Encoder = &PaymentSavedCredentialsCard{}
|
|
_ bin.Decoder = &PaymentSavedCredentialsCard{}
|
|
_ bin.BareEncoder = &PaymentSavedCredentialsCard{}
|
|
_ bin.BareDecoder = &PaymentSavedCredentialsCard{}
|
|
)
|
|
|
|
func (p *PaymentSavedCredentialsCard) Zero() bool {
|
|
if p == nil {
|
|
return true
|
|
}
|
|
if !(p.ID == "") {
|
|
return false
|
|
}
|
|
if !(p.Title == "") {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (p *PaymentSavedCredentialsCard) String() string {
|
|
if p == nil {
|
|
return "PaymentSavedCredentialsCard(nil)"
|
|
}
|
|
type Alias PaymentSavedCredentialsCard
|
|
return fmt.Sprintf("PaymentSavedCredentialsCard%+v", Alias(*p))
|
|
}
|
|
|
|
// FillFrom fills PaymentSavedCredentialsCard from given interface.
|
|
func (p *PaymentSavedCredentialsCard) FillFrom(from interface {
|
|
GetID() (value string)
|
|
GetTitle() (value string)
|
|
}) {
|
|
p.ID = from.GetID()
|
|
p.Title = from.GetTitle()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*PaymentSavedCredentialsCard) TypeID() uint32 {
|
|
return PaymentSavedCredentialsCardTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*PaymentSavedCredentialsCard) TypeName() string {
|
|
return "paymentSavedCredentialsCard"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (p *PaymentSavedCredentialsCard) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "paymentSavedCredentialsCard",
|
|
ID: PaymentSavedCredentialsCardTypeID,
|
|
}
|
|
if p == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "ID",
|
|
SchemaName: "id",
|
|
},
|
|
{
|
|
Name: "Title",
|
|
SchemaName: "title",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (p *PaymentSavedCredentialsCard) Encode(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't encode paymentSavedCredentialsCard#cdc27a1f as nil")
|
|
}
|
|
b.PutID(PaymentSavedCredentialsCardTypeID)
|
|
return p.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (p *PaymentSavedCredentialsCard) EncodeBare(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't encode paymentSavedCredentialsCard#cdc27a1f as nil")
|
|
}
|
|
b.PutString(p.ID)
|
|
b.PutString(p.Title)
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (p *PaymentSavedCredentialsCard) Decode(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't decode paymentSavedCredentialsCard#cdc27a1f to nil")
|
|
}
|
|
if err := b.ConsumeID(PaymentSavedCredentialsCardTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode paymentSavedCredentialsCard#cdc27a1f: %w", err)
|
|
}
|
|
return p.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (p *PaymentSavedCredentialsCard) DecodeBare(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't decode paymentSavedCredentialsCard#cdc27a1f to nil")
|
|
}
|
|
{
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode paymentSavedCredentialsCard#cdc27a1f: field id: %w", err)
|
|
}
|
|
p.ID = value
|
|
}
|
|
{
|
|
value, err := b.String()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode paymentSavedCredentialsCard#cdc27a1f: field title: %w", err)
|
|
}
|
|
p.Title = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetID returns value of ID field.
|
|
func (p *PaymentSavedCredentialsCard) GetID() (value string) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.ID
|
|
}
|
|
|
|
// GetTitle returns value of Title field.
|
|
func (p *PaymentSavedCredentialsCard) GetTitle() (value string) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
return p.Title
|
|
}
|