-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_post_address_gen.go
277 lines (252 loc) · 5.84 KB
/
tl_post_address_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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
// 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/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{}
)
// PostAddress represents TL type `postAddress#1e8caaeb`.
// Shipping address
//
// See https://core.telegram.org/constructor/postAddress for reference.
type PostAddress struct {
// First line for the address
StreetLine1 string
// Second line for the address
StreetLine2 string
// City
City string
// State, if applicable (empty otherwise)
State string
// ISO 3166-1 alpha-2 country code
CountryIso2 string
// Address post code
PostCode string
}
// PostAddressTypeID is TL type id of PostAddress.
const PostAddressTypeID = 0x1e8caaeb
func (p *PostAddress) Zero() bool {
if p == nil {
return true
}
if !(p.StreetLine1 == "") {
return false
}
if !(p.StreetLine2 == "") {
return false
}
if !(p.City == "") {
return false
}
if !(p.State == "") {
return false
}
if !(p.CountryIso2 == "") {
return false
}
if !(p.PostCode == "") {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *PostAddress) String() string {
if p == nil {
return "PostAddress(nil)"
}
type Alias PostAddress
return fmt.Sprintf("PostAddress%+v", Alias(*p))
}
// FillFrom fills PostAddress from given interface.
func (p *PostAddress) FillFrom(from interface {
GetStreetLine1() (value string)
GetStreetLine2() (value string)
GetCity() (value string)
GetState() (value string)
GetCountryIso2() (value string)
GetPostCode() (value string)
}) {
p.StreetLine1 = from.GetStreetLine1()
p.StreetLine2 = from.GetStreetLine2()
p.City = from.GetCity()
p.State = from.GetState()
p.CountryIso2 = from.GetCountryIso2()
p.PostCode = from.GetPostCode()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PostAddress) TypeID() uint32 {
return PostAddressTypeID
}
// TypeName returns name of type in TL schema.
func (*PostAddress) TypeName() string {
return "postAddress"
}
// TypeInfo returns info about TL type.
func (p *PostAddress) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "postAddress",
ID: PostAddressTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "StreetLine1",
SchemaName: "street_line1",
},
{
Name: "StreetLine2",
SchemaName: "street_line2",
},
{
Name: "City",
SchemaName: "city",
},
{
Name: "State",
SchemaName: "state",
},
{
Name: "CountryIso2",
SchemaName: "country_iso2",
},
{
Name: "PostCode",
SchemaName: "post_code",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *PostAddress) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode postAddress#1e8caaeb as nil")
}
b.PutID(PostAddressTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *PostAddress) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode postAddress#1e8caaeb as nil")
}
b.PutString(p.StreetLine1)
b.PutString(p.StreetLine2)
b.PutString(p.City)
b.PutString(p.State)
b.PutString(p.CountryIso2)
b.PutString(p.PostCode)
return nil
}
// GetStreetLine1 returns value of StreetLine1 field.
func (p *PostAddress) GetStreetLine1() (value string) {
return p.StreetLine1
}
// GetStreetLine2 returns value of StreetLine2 field.
func (p *PostAddress) GetStreetLine2() (value string) {
return p.StreetLine2
}
// GetCity returns value of City field.
func (p *PostAddress) GetCity() (value string) {
return p.City
}
// GetState returns value of State field.
func (p *PostAddress) GetState() (value string) {
return p.State
}
// GetCountryIso2 returns value of CountryIso2 field.
func (p *PostAddress) GetCountryIso2() (value string) {
return p.CountryIso2
}
// GetPostCode returns value of PostCode field.
func (p *PostAddress) GetPostCode() (value string) {
return p.PostCode
}
// Decode implements bin.Decoder.
func (p *PostAddress) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode postAddress#1e8caaeb to nil")
}
if err := b.ConsumeID(PostAddressTypeID); err != nil {
return fmt.Errorf("unable to decode postAddress#1e8caaeb: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *PostAddress) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode postAddress#1e8caaeb to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode postAddress#1e8caaeb: field street_line1: %w", err)
}
p.StreetLine1 = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode postAddress#1e8caaeb: field street_line2: %w", err)
}
p.StreetLine2 = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode postAddress#1e8caaeb: field city: %w", err)
}
p.City = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode postAddress#1e8caaeb: field state: %w", err)
}
p.State = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode postAddress#1e8caaeb: field country_iso2: %w", err)
}
p.CountryIso2 = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode postAddress#1e8caaeb: field post_code: %w", err)
}
p.PostCode = value
}
return nil
}
// Ensuring interfaces in compile-time for PostAddress.
var (
_ bin.Encoder = &PostAddress{}
_ bin.Decoder = &PostAddress{}
_ bin.BareEncoder = &PostAddress{}
_ bin.BareDecoder = &PostAddress{}
)