-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_payment_form_method_gen.go
189 lines (168 loc) · 4.03 KB
/
tl_payment_form_method_gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
// Code generated by gotdgen, DO NOT EDIT.
package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/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{}
)
// PaymentFormMethod represents TL type `paymentFormMethod#88f8f21b`.
// Represents an additional payment method
//
// See https://core.telegram.org/constructor/paymentFormMethod for reference.
type PaymentFormMethod struct {
// URL to open in a webview to process the payment
URL string
// Payment method description
Title string
}
// PaymentFormMethodTypeID is TL type id of PaymentFormMethod.
const PaymentFormMethodTypeID = 0x88f8f21b
// Ensuring interfaces in compile-time for PaymentFormMethod.
var (
_ bin.Encoder = &PaymentFormMethod{}
_ bin.Decoder = &PaymentFormMethod{}
_ bin.BareEncoder = &PaymentFormMethod{}
_ bin.BareDecoder = &PaymentFormMethod{}
)
func (p *PaymentFormMethod) Zero() bool {
if p == nil {
return true
}
if !(p.URL == "") {
return false
}
if !(p.Title == "") {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *PaymentFormMethod) String() string {
if p == nil {
return "PaymentFormMethod(nil)"
}
type Alias PaymentFormMethod
return fmt.Sprintf("PaymentFormMethod%+v", Alias(*p))
}
// FillFrom fills PaymentFormMethod from given interface.
func (p *PaymentFormMethod) FillFrom(from interface {
GetURL() (value string)
GetTitle() (value string)
}) {
p.URL = from.GetURL()
p.Title = from.GetTitle()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PaymentFormMethod) TypeID() uint32 {
return PaymentFormMethodTypeID
}
// TypeName returns name of type in TL schema.
func (*PaymentFormMethod) TypeName() string {
return "paymentFormMethod"
}
// TypeInfo returns info about TL type.
func (p *PaymentFormMethod) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "paymentFormMethod",
ID: PaymentFormMethodTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "URL",
SchemaName: "url",
},
{
Name: "Title",
SchemaName: "title",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *PaymentFormMethod) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode paymentFormMethod#88f8f21b as nil")
}
b.PutID(PaymentFormMethodTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *PaymentFormMethod) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode paymentFormMethod#88f8f21b as nil")
}
b.PutString(p.URL)
b.PutString(p.Title)
return nil
}
// Decode implements bin.Decoder.
func (p *PaymentFormMethod) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode paymentFormMethod#88f8f21b to nil")
}
if err := b.ConsumeID(PaymentFormMethodTypeID); err != nil {
return fmt.Errorf("unable to decode paymentFormMethod#88f8f21b: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *PaymentFormMethod) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode paymentFormMethod#88f8f21b to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode paymentFormMethod#88f8f21b: field url: %w", err)
}
p.URL = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode paymentFormMethod#88f8f21b: field title: %w", err)
}
p.Title = value
}
return nil
}
// GetURL returns value of URL field.
func (p *PaymentFormMethod) GetURL() (value string) {
if p == nil {
return
}
return p.URL
}
// GetTitle returns value of Title field.
func (p *PaymentFormMethod) GetTitle() (value string) {
if p == nil {
return
}
return p.Title
}