-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_bot_info_gen.go
216 lines (194 loc) · 4.6 KB
/
tl_bot_info_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
// 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{}
)
// BotInfo represents TL type `botInfo#98e81d3a`.
// Info about bots (available bot commands, etc)
//
// See https://core.telegram.org/constructor/botInfo for reference.
type BotInfo struct {
// ID of the bot
UserID int
// Description of the bot
Description string
// Bot commands that can be used in the chat
Commands []BotCommand
}
// BotInfoTypeID is TL type id of BotInfo.
const BotInfoTypeID = 0x98e81d3a
func (b *BotInfo) Zero() bool {
if b == nil {
return true
}
if !(b.UserID == 0) {
return false
}
if !(b.Description == "") {
return false
}
if !(b.Commands == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (b *BotInfo) String() string {
if b == nil {
return "BotInfo(nil)"
}
type Alias BotInfo
return fmt.Sprintf("BotInfo%+v", Alias(*b))
}
// FillFrom fills BotInfo from given interface.
func (b *BotInfo) FillFrom(from interface {
GetUserID() (value int)
GetDescription() (value string)
GetCommands() (value []BotCommand)
}) {
b.UserID = from.GetUserID()
b.Description = from.GetDescription()
b.Commands = from.GetCommands()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*BotInfo) TypeID() uint32 {
return BotInfoTypeID
}
// TypeName returns name of type in TL schema.
func (*BotInfo) TypeName() string {
return "botInfo"
}
// TypeInfo returns info about TL type.
func (b *BotInfo) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "botInfo",
ID: BotInfoTypeID,
}
if b == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "UserID",
SchemaName: "user_id",
},
{
Name: "Description",
SchemaName: "description",
},
{
Name: "Commands",
SchemaName: "commands",
},
}
return typ
}
// Encode implements bin.Encoder.
func (b *BotInfo) Encode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't encode botInfo#98e81d3a as nil")
}
buf.PutID(BotInfoTypeID)
return b.EncodeBare(buf)
}
// EncodeBare implements bin.BareEncoder.
func (b *BotInfo) EncodeBare(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't encode botInfo#98e81d3a as nil")
}
buf.PutInt(b.UserID)
buf.PutString(b.Description)
buf.PutVectorHeader(len(b.Commands))
for idx, v := range b.Commands {
if err := v.Encode(buf); err != nil {
return fmt.Errorf("unable to encode botInfo#98e81d3a: field commands element with index %d: %w", idx, err)
}
}
return nil
}
// GetUserID returns value of UserID field.
func (b *BotInfo) GetUserID() (value int) {
return b.UserID
}
// GetDescription returns value of Description field.
func (b *BotInfo) GetDescription() (value string) {
return b.Description
}
// GetCommands returns value of Commands field.
func (b *BotInfo) GetCommands() (value []BotCommand) {
return b.Commands
}
// Decode implements bin.Decoder.
func (b *BotInfo) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't decode botInfo#98e81d3a to nil")
}
if err := buf.ConsumeID(BotInfoTypeID); err != nil {
return fmt.Errorf("unable to decode botInfo#98e81d3a: %w", err)
}
return b.DecodeBare(buf)
}
// DecodeBare implements bin.BareDecoder.
func (b *BotInfo) DecodeBare(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't decode botInfo#98e81d3a to nil")
}
{
value, err := buf.Int()
if err != nil {
return fmt.Errorf("unable to decode botInfo#98e81d3a: field user_id: %w", err)
}
b.UserID = value
}
{
value, err := buf.String()
if err != nil {
return fmt.Errorf("unable to decode botInfo#98e81d3a: field description: %w", err)
}
b.Description = value
}
{
headerLen, err := buf.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode botInfo#98e81d3a: field commands: %w", err)
}
for idx := 0; idx < headerLen; idx++ {
var value BotCommand
if err := value.Decode(buf); err != nil {
return fmt.Errorf("unable to decode botInfo#98e81d3a: field commands: %w", err)
}
b.Commands = append(b.Commands, value)
}
}
return nil
}
// Ensuring interfaces in compile-time for BotInfo.
var (
_ bin.Encoder = &BotInfo{}
_ bin.Decoder = &BotInfo{}
_ bin.BareEncoder = &BotInfo{}
_ bin.BareDecoder = &BotInfo{}
)