-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_send_as_peer_gen.go
223 lines (200 loc) · 4.83 KB
/
tl_send_as_peer_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
// 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{}
)
// SendAsPeer represents TL type `sendAsPeer#b81c7034`.
// Indicates a peer that can be used to send messages
//
// See https://core.telegram.org/constructor/sendAsPeer for reference.
type SendAsPeer struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// Whether a Telegram Premium account is required to send messages as this peer
PremiumRequired bool
// Peer
Peer PeerClass
}
// SendAsPeerTypeID is TL type id of SendAsPeer.
const SendAsPeerTypeID = 0xb81c7034
// Ensuring interfaces in compile-time for SendAsPeer.
var (
_ bin.Encoder = &SendAsPeer{}
_ bin.Decoder = &SendAsPeer{}
_ bin.BareEncoder = &SendAsPeer{}
_ bin.BareDecoder = &SendAsPeer{}
)
func (s *SendAsPeer) Zero() bool {
if s == nil {
return true
}
if !(s.Flags.Zero()) {
return false
}
if !(s.PremiumRequired == false) {
return false
}
if !(s.Peer == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (s *SendAsPeer) String() string {
if s == nil {
return "SendAsPeer(nil)"
}
type Alias SendAsPeer
return fmt.Sprintf("SendAsPeer%+v", Alias(*s))
}
// FillFrom fills SendAsPeer from given interface.
func (s *SendAsPeer) FillFrom(from interface {
GetPremiumRequired() (value bool)
GetPeer() (value PeerClass)
}) {
s.PremiumRequired = from.GetPremiumRequired()
s.Peer = from.GetPeer()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*SendAsPeer) TypeID() uint32 {
return SendAsPeerTypeID
}
// TypeName returns name of type in TL schema.
func (*SendAsPeer) TypeName() string {
return "sendAsPeer"
}
// TypeInfo returns info about TL type.
func (s *SendAsPeer) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "sendAsPeer",
ID: SendAsPeerTypeID,
}
if s == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "PremiumRequired",
SchemaName: "premium_required",
Null: !s.Flags.Has(0),
},
{
Name: "Peer",
SchemaName: "peer",
},
}
return typ
}
// SetFlags sets flags for non-zero fields.
func (s *SendAsPeer) SetFlags() {
if !(s.PremiumRequired == false) {
s.Flags.Set(0)
}
}
// Encode implements bin.Encoder.
func (s *SendAsPeer) Encode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode sendAsPeer#b81c7034 as nil")
}
b.PutID(SendAsPeerTypeID)
return s.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (s *SendAsPeer) EncodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode sendAsPeer#b81c7034 as nil")
}
s.SetFlags()
if err := s.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode sendAsPeer#b81c7034: field flags: %w", err)
}
if s.Peer == nil {
return fmt.Errorf("unable to encode sendAsPeer#b81c7034: field peer is nil")
}
if err := s.Peer.Encode(b); err != nil {
return fmt.Errorf("unable to encode sendAsPeer#b81c7034: field peer: %w", err)
}
return nil
}
// Decode implements bin.Decoder.
func (s *SendAsPeer) Decode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode sendAsPeer#b81c7034 to nil")
}
if err := b.ConsumeID(SendAsPeerTypeID); err != nil {
return fmt.Errorf("unable to decode sendAsPeer#b81c7034: %w", err)
}
return s.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (s *SendAsPeer) DecodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode sendAsPeer#b81c7034 to nil")
}
{
if err := s.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode sendAsPeer#b81c7034: field flags: %w", err)
}
}
s.PremiumRequired = s.Flags.Has(0)
{
value, err := DecodePeer(b)
if err != nil {
return fmt.Errorf("unable to decode sendAsPeer#b81c7034: field peer: %w", err)
}
s.Peer = value
}
return nil
}
// SetPremiumRequired sets value of PremiumRequired conditional field.
func (s *SendAsPeer) SetPremiumRequired(value bool) {
if value {
s.Flags.Set(0)
s.PremiumRequired = true
} else {
s.Flags.Unset(0)
s.PremiumRequired = false
}
}
// GetPremiumRequired returns value of PremiumRequired conditional field.
func (s *SendAsPeer) GetPremiumRequired() (value bool) {
if s == nil {
return
}
return s.Flags.Has(0)
}
// GetPeer returns value of Peer field.
func (s *SendAsPeer) GetPeer() (value PeerClass) {
if s == nil {
return
}
return s.Peer
}