-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_messages_get_emoji_keywords_difference_gen.go
202 lines (179 loc) · 5.57 KB
/
tl_messages_get_emoji_keywords_difference_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
// 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{}
)
// MessagesGetEmojiKeywordsDifferenceRequest represents TL type `messages.getEmojiKeywordsDifference#1508b6af`.
// Get changed emoji keywords
//
// See https://core.telegram.org/method/messages.getEmojiKeywordsDifference for reference.
type MessagesGetEmojiKeywordsDifferenceRequest struct {
// Language code
LangCode string
// Previous emoji keyword localization version
FromVersion int
}
// MessagesGetEmojiKeywordsDifferenceRequestTypeID is TL type id of MessagesGetEmojiKeywordsDifferenceRequest.
const MessagesGetEmojiKeywordsDifferenceRequestTypeID = 0x1508b6af
// Ensuring interfaces in compile-time for MessagesGetEmojiKeywordsDifferenceRequest.
var (
_ bin.Encoder = &MessagesGetEmojiKeywordsDifferenceRequest{}
_ bin.Decoder = &MessagesGetEmojiKeywordsDifferenceRequest{}
_ bin.BareEncoder = &MessagesGetEmojiKeywordsDifferenceRequest{}
_ bin.BareDecoder = &MessagesGetEmojiKeywordsDifferenceRequest{}
)
func (g *MessagesGetEmojiKeywordsDifferenceRequest) Zero() bool {
if g == nil {
return true
}
if !(g.LangCode == "") {
return false
}
if !(g.FromVersion == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (g *MessagesGetEmojiKeywordsDifferenceRequest) String() string {
if g == nil {
return "MessagesGetEmojiKeywordsDifferenceRequest(nil)"
}
type Alias MessagesGetEmojiKeywordsDifferenceRequest
return fmt.Sprintf("MessagesGetEmojiKeywordsDifferenceRequest%+v", Alias(*g))
}
// FillFrom fills MessagesGetEmojiKeywordsDifferenceRequest from given interface.
func (g *MessagesGetEmojiKeywordsDifferenceRequest) FillFrom(from interface {
GetLangCode() (value string)
GetFromVersion() (value int)
}) {
g.LangCode = from.GetLangCode()
g.FromVersion = from.GetFromVersion()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*MessagesGetEmojiKeywordsDifferenceRequest) TypeID() uint32 {
return MessagesGetEmojiKeywordsDifferenceRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*MessagesGetEmojiKeywordsDifferenceRequest) TypeName() string {
return "messages.getEmojiKeywordsDifference"
}
// TypeInfo returns info about TL type.
func (g *MessagesGetEmojiKeywordsDifferenceRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "messages.getEmojiKeywordsDifference",
ID: MessagesGetEmojiKeywordsDifferenceRequestTypeID,
}
if g == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "LangCode",
SchemaName: "lang_code",
},
{
Name: "FromVersion",
SchemaName: "from_version",
},
}
return typ
}
// Encode implements bin.Encoder.
func (g *MessagesGetEmojiKeywordsDifferenceRequest) Encode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode messages.getEmojiKeywordsDifference#1508b6af as nil")
}
b.PutID(MessagesGetEmojiKeywordsDifferenceRequestTypeID)
return g.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (g *MessagesGetEmojiKeywordsDifferenceRequest) EncodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode messages.getEmojiKeywordsDifference#1508b6af as nil")
}
b.PutString(g.LangCode)
b.PutInt(g.FromVersion)
return nil
}
// Decode implements bin.Decoder.
func (g *MessagesGetEmojiKeywordsDifferenceRequest) Decode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode messages.getEmojiKeywordsDifference#1508b6af to nil")
}
if err := b.ConsumeID(MessagesGetEmojiKeywordsDifferenceRequestTypeID); err != nil {
return fmt.Errorf("unable to decode messages.getEmojiKeywordsDifference#1508b6af: %w", err)
}
return g.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (g *MessagesGetEmojiKeywordsDifferenceRequest) DecodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode messages.getEmojiKeywordsDifference#1508b6af to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode messages.getEmojiKeywordsDifference#1508b6af: field lang_code: %w", err)
}
g.LangCode = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode messages.getEmojiKeywordsDifference#1508b6af: field from_version: %w", err)
}
g.FromVersion = value
}
return nil
}
// GetLangCode returns value of LangCode field.
func (g *MessagesGetEmojiKeywordsDifferenceRequest) GetLangCode() (value string) {
if g == nil {
return
}
return g.LangCode
}
// GetFromVersion returns value of FromVersion field.
func (g *MessagesGetEmojiKeywordsDifferenceRequest) GetFromVersion() (value int) {
if g == nil {
return
}
return g.FromVersion
}
// MessagesGetEmojiKeywordsDifference invokes method messages.getEmojiKeywordsDifference#1508b6af returning error if any.
// Get changed emoji keywords
//
// See https://core.telegram.org/method/messages.getEmojiKeywordsDifference for reference.
func (c *Client) MessagesGetEmojiKeywordsDifference(ctx context.Context, request *MessagesGetEmojiKeywordsDifferenceRequest) (*EmojiKeywordsDifference, error) {
var result EmojiKeywordsDifference
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return &result, nil
}