-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_peer_blocked_gen.go
186 lines (165 loc) · 3.88 KB
/
tl_peer_blocked_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
// 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{}
)
// PeerBlocked represents TL type `peerBlocked#e8fd8014`.
// Information about a blocked peer
//
// See https://core.telegram.org/constructor/peerBlocked for reference.
type PeerBlocked struct {
// Peer ID
PeerID PeerClass
// When was the peer blocked
Date int
}
// PeerBlockedTypeID is TL type id of PeerBlocked.
const PeerBlockedTypeID = 0xe8fd8014
func (p *PeerBlocked) Zero() bool {
if p == nil {
return true
}
if !(p.PeerID == nil) {
return false
}
if !(p.Date == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *PeerBlocked) String() string {
if p == nil {
return "PeerBlocked(nil)"
}
type Alias PeerBlocked
return fmt.Sprintf("PeerBlocked%+v", Alias(*p))
}
// FillFrom fills PeerBlocked from given interface.
func (p *PeerBlocked) FillFrom(from interface {
GetPeerID() (value PeerClass)
GetDate() (value int)
}) {
p.PeerID = from.GetPeerID()
p.Date = from.GetDate()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PeerBlocked) TypeID() uint32 {
return PeerBlockedTypeID
}
// TypeName returns name of type in TL schema.
func (*PeerBlocked) TypeName() string {
return "peerBlocked"
}
// TypeInfo returns info about TL type.
func (p *PeerBlocked) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "peerBlocked",
ID: PeerBlockedTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "PeerID",
SchemaName: "peer_id",
},
{
Name: "Date",
SchemaName: "date",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *PeerBlocked) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode peerBlocked#e8fd8014 as nil")
}
b.PutID(PeerBlockedTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *PeerBlocked) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode peerBlocked#e8fd8014 as nil")
}
if p.PeerID == nil {
return fmt.Errorf("unable to encode peerBlocked#e8fd8014: field peer_id is nil")
}
if err := p.PeerID.Encode(b); err != nil {
return fmt.Errorf("unable to encode peerBlocked#e8fd8014: field peer_id: %w", err)
}
b.PutInt(p.Date)
return nil
}
// GetPeerID returns value of PeerID field.
func (p *PeerBlocked) GetPeerID() (value PeerClass) {
return p.PeerID
}
// GetDate returns value of Date field.
func (p *PeerBlocked) GetDate() (value int) {
return p.Date
}
// Decode implements bin.Decoder.
func (p *PeerBlocked) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode peerBlocked#e8fd8014 to nil")
}
if err := b.ConsumeID(PeerBlockedTypeID); err != nil {
return fmt.Errorf("unable to decode peerBlocked#e8fd8014: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *PeerBlocked) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode peerBlocked#e8fd8014 to nil")
}
{
value, err := DecodePeer(b)
if err != nil {
return fmt.Errorf("unable to decode peerBlocked#e8fd8014: field peer_id: %w", err)
}
p.PeerID = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode peerBlocked#e8fd8014: field date: %w", err)
}
p.Date = value
}
return nil
}
// Ensuring interfaces in compile-time for PeerBlocked.
var (
_ bin.Encoder = &PeerBlocked{}
_ bin.Decoder = &PeerBlocked{}
_ bin.BareEncoder = &PeerBlocked{}
_ bin.BareDecoder = &PeerBlocked{}
)