-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_input_phone_call_gen.go
183 lines (162 loc) · 3.81 KB
/
tl_input_phone_call_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
// 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{}
)
// InputPhoneCall represents TL type `inputPhoneCall#1e36fded`.
// Phone call
//
// See https://core.telegram.org/constructor/inputPhoneCall for reference.
type InputPhoneCall struct {
// Call ID
ID int64
// Access hash
AccessHash int64
}
// InputPhoneCallTypeID is TL type id of InputPhoneCall.
const InputPhoneCallTypeID = 0x1e36fded
// Ensuring interfaces in compile-time for InputPhoneCall.
var (
_ bin.Encoder = &InputPhoneCall{}
_ bin.Decoder = &InputPhoneCall{}
_ bin.BareEncoder = &InputPhoneCall{}
_ bin.BareDecoder = &InputPhoneCall{}
)
func (i *InputPhoneCall) Zero() bool {
if i == nil {
return true
}
if !(i.ID == 0) {
return false
}
if !(i.AccessHash == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (i *InputPhoneCall) String() string {
if i == nil {
return "InputPhoneCall(nil)"
}
type Alias InputPhoneCall
return fmt.Sprintf("InputPhoneCall%+v", Alias(*i))
}
// FillFrom fills InputPhoneCall from given interface.
func (i *InputPhoneCall) FillFrom(from interface {
GetID() (value int64)
GetAccessHash() (value int64)
}) {
i.ID = from.GetID()
i.AccessHash = from.GetAccessHash()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*InputPhoneCall) TypeID() uint32 {
return InputPhoneCallTypeID
}
// TypeName returns name of type in TL schema.
func (*InputPhoneCall) TypeName() string {
return "inputPhoneCall"
}
// TypeInfo returns info about TL type.
func (i *InputPhoneCall) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "inputPhoneCall",
ID: InputPhoneCallTypeID,
}
if i == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "ID",
SchemaName: "id",
},
{
Name: "AccessHash",
SchemaName: "access_hash",
},
}
return typ
}
// Encode implements bin.Encoder.
func (i *InputPhoneCall) Encode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputPhoneCall#1e36fded as nil")
}
b.PutID(InputPhoneCallTypeID)
return i.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (i *InputPhoneCall) EncodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't encode inputPhoneCall#1e36fded as nil")
}
b.PutLong(i.ID)
b.PutLong(i.AccessHash)
return nil
}
// Decode implements bin.Decoder.
func (i *InputPhoneCall) Decode(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputPhoneCall#1e36fded to nil")
}
if err := b.ConsumeID(InputPhoneCallTypeID); err != nil {
return fmt.Errorf("unable to decode inputPhoneCall#1e36fded: %w", err)
}
return i.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (i *InputPhoneCall) DecodeBare(b *bin.Buffer) error {
if i == nil {
return fmt.Errorf("can't decode inputPhoneCall#1e36fded to nil")
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode inputPhoneCall#1e36fded: field id: %w", err)
}
i.ID = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode inputPhoneCall#1e36fded: field access_hash: %w", err)
}
i.AccessHash = value
}
return nil
}
// GetID returns value of ID field.
func (i *InputPhoneCall) GetID() (value int64) {
return i.ID
}
// GetAccessHash returns value of AccessHash field.
func (i *InputPhoneCall) GetAccessHash() (value int64) {
return i.AccessHash
}