Files
mautrix-telegram/pkg/gotd/tg/tl_account_sent_email_code_gen.go
T
2025-06-27 20:03:37 -07:00

193 lines
4.4 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{}
)
// AccountSentEmailCode represents TL type `account.sentEmailCode#811f854f`.
// The sent email code
//
// See https://core.telegram.org/constructor/account.sentEmailCode for reference.
type AccountSentEmailCode struct {
// The email (to which the code was sent) must match this pattern¹
//
// Links:
// 1) https://core.telegram.org/api/pattern
EmailPattern string
// The length of the verification code
Length int
}
// AccountSentEmailCodeTypeID is TL type id of AccountSentEmailCode.
const AccountSentEmailCodeTypeID = 0x811f854f
// Ensuring interfaces in compile-time for AccountSentEmailCode.
var (
_ bin.Encoder = &AccountSentEmailCode{}
_ bin.Decoder = &AccountSentEmailCode{}
_ bin.BareEncoder = &AccountSentEmailCode{}
_ bin.BareDecoder = &AccountSentEmailCode{}
)
func (s *AccountSentEmailCode) Zero() bool {
if s == nil {
return true
}
if !(s.EmailPattern == "") {
return false
}
if !(s.Length == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (s *AccountSentEmailCode) String() string {
if s == nil {
return "AccountSentEmailCode(nil)"
}
type Alias AccountSentEmailCode
return fmt.Sprintf("AccountSentEmailCode%+v", Alias(*s))
}
// FillFrom fills AccountSentEmailCode from given interface.
func (s *AccountSentEmailCode) FillFrom(from interface {
GetEmailPattern() (value string)
GetLength() (value int)
}) {
s.EmailPattern = from.GetEmailPattern()
s.Length = from.GetLength()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*AccountSentEmailCode) TypeID() uint32 {
return AccountSentEmailCodeTypeID
}
// TypeName returns name of type in TL schema.
func (*AccountSentEmailCode) TypeName() string {
return "account.sentEmailCode"
}
// TypeInfo returns info about TL type.
func (s *AccountSentEmailCode) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "account.sentEmailCode",
ID: AccountSentEmailCodeTypeID,
}
if s == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "EmailPattern",
SchemaName: "email_pattern",
},
{
Name: "Length",
SchemaName: "length",
},
}
return typ
}
// Encode implements bin.Encoder.
func (s *AccountSentEmailCode) Encode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode account.sentEmailCode#811f854f as nil")
}
b.PutID(AccountSentEmailCodeTypeID)
return s.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (s *AccountSentEmailCode) EncodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode account.sentEmailCode#811f854f as nil")
}
b.PutString(s.EmailPattern)
b.PutInt(s.Length)
return nil
}
// Decode implements bin.Decoder.
func (s *AccountSentEmailCode) Decode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode account.sentEmailCode#811f854f to nil")
}
if err := b.ConsumeID(AccountSentEmailCodeTypeID); err != nil {
return fmt.Errorf("unable to decode account.sentEmailCode#811f854f: %w", err)
}
return s.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (s *AccountSentEmailCode) DecodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode account.sentEmailCode#811f854f to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode account.sentEmailCode#811f854f: field email_pattern: %w", err)
}
s.EmailPattern = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode account.sentEmailCode#811f854f: field length: %w", err)
}
s.Length = value
}
return nil
}
// GetEmailPattern returns value of EmailPattern field.
func (s *AccountSentEmailCode) GetEmailPattern() (value string) {
if s == nil {
return
}
return s.EmailPattern
}
// GetLength returns value of Length field.
func (s *AccountSentEmailCode) GetLength() (value int) {
if s == nil {
return
}
return s.Length
}