-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_contact_gen.go
181 lines (160 loc) · 3.57 KB
/
tl_contact_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
// 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{}
)
// Contact represents TL type `contact#f911c994`.
// A contact of the current user that is registered in the system.
//
// See https://core.telegram.org/constructor/contact for reference.
type Contact struct {
// User identifier
UserID int
// Current user is in the user's contact list
Mutual bool
}
// ContactTypeID is TL type id of Contact.
const ContactTypeID = 0xf911c994
func (c *Contact) Zero() bool {
if c == nil {
return true
}
if !(c.UserID == 0) {
return false
}
if !(c.Mutual == false) {
return false
}
return true
}
// String implements fmt.Stringer.
func (c *Contact) String() string {
if c == nil {
return "Contact(nil)"
}
type Alias Contact
return fmt.Sprintf("Contact%+v", Alias(*c))
}
// FillFrom fills Contact from given interface.
func (c *Contact) FillFrom(from interface {
GetUserID() (value int)
GetMutual() (value bool)
}) {
c.UserID = from.GetUserID()
c.Mutual = from.GetMutual()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*Contact) TypeID() uint32 {
return ContactTypeID
}
// TypeName returns name of type in TL schema.
func (*Contact) TypeName() string {
return "contact"
}
// TypeInfo returns info about TL type.
func (c *Contact) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "contact",
ID: ContactTypeID,
}
if c == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "UserID",
SchemaName: "user_id",
},
{
Name: "Mutual",
SchemaName: "mutual",
},
}
return typ
}
// Encode implements bin.Encoder.
func (c *Contact) Encode(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't encode contact#f911c994 as nil")
}
b.PutID(ContactTypeID)
return c.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (c *Contact) EncodeBare(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't encode contact#f911c994 as nil")
}
b.PutInt(c.UserID)
b.PutBool(c.Mutual)
return nil
}
// GetUserID returns value of UserID field.
func (c *Contact) GetUserID() (value int) {
return c.UserID
}
// GetMutual returns value of Mutual field.
func (c *Contact) GetMutual() (value bool) {
return c.Mutual
}
// Decode implements bin.Decoder.
func (c *Contact) Decode(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't decode contact#f911c994 to nil")
}
if err := b.ConsumeID(ContactTypeID); err != nil {
return fmt.Errorf("unable to decode contact#f911c994: %w", err)
}
return c.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (c *Contact) DecodeBare(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't decode contact#f911c994 to nil")
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode contact#f911c994: field user_id: %w", err)
}
c.UserID = value
}
{
value, err := b.Bool()
if err != nil {
return fmt.Errorf("unable to decode contact#f911c994: field mutual: %w", err)
}
c.Mutual = value
}
return nil
}
// Ensuring interfaces in compile-time for Contact.
var (
_ bin.Encoder = &Contact{}
_ bin.Decoder = &Contact{}
_ bin.BareEncoder = &Contact{}
_ bin.BareDecoder = &Contact{}
)