-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_phone_export_group_call_invite_gen.go
232 lines (207 loc) · 6.25 KB
/
tl_phone_export_group_call_invite_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
224
225
226
227
228
229
230
231
232
// 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{}
)
// PhoneExportGroupCallInviteRequest represents TL type `phone.exportGroupCallInvite#e6aa647f`.
// Get an invite link for a group call or livestream
//
// See https://core.telegram.org/method/phone.exportGroupCallInvite for reference.
type PhoneExportGroupCallInviteRequest struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// For livestreams, if set, users that join using this link will be able to speak without
// explicitly requesting permission by (for example by raising their hand).
CanSelfUnmute bool
// The group call
Call InputGroupCall
}
// PhoneExportGroupCallInviteRequestTypeID is TL type id of PhoneExportGroupCallInviteRequest.
const PhoneExportGroupCallInviteRequestTypeID = 0xe6aa647f
// Ensuring interfaces in compile-time for PhoneExportGroupCallInviteRequest.
var (
_ bin.Encoder = &PhoneExportGroupCallInviteRequest{}
_ bin.Decoder = &PhoneExportGroupCallInviteRequest{}
_ bin.BareEncoder = &PhoneExportGroupCallInviteRequest{}
_ bin.BareDecoder = &PhoneExportGroupCallInviteRequest{}
)
func (e *PhoneExportGroupCallInviteRequest) Zero() bool {
if e == nil {
return true
}
if !(e.Flags.Zero()) {
return false
}
if !(e.CanSelfUnmute == false) {
return false
}
if !(e.Call.Zero()) {
return false
}
return true
}
// String implements fmt.Stringer.
func (e *PhoneExportGroupCallInviteRequest) String() string {
if e == nil {
return "PhoneExportGroupCallInviteRequest(nil)"
}
type Alias PhoneExportGroupCallInviteRequest
return fmt.Sprintf("PhoneExportGroupCallInviteRequest%+v", Alias(*e))
}
// FillFrom fills PhoneExportGroupCallInviteRequest from given interface.
func (e *PhoneExportGroupCallInviteRequest) FillFrom(from interface {
GetCanSelfUnmute() (value bool)
GetCall() (value InputGroupCall)
}) {
e.CanSelfUnmute = from.GetCanSelfUnmute()
e.Call = from.GetCall()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PhoneExportGroupCallInviteRequest) TypeID() uint32 {
return PhoneExportGroupCallInviteRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*PhoneExportGroupCallInviteRequest) TypeName() string {
return "phone.exportGroupCallInvite"
}
// TypeInfo returns info about TL type.
func (e *PhoneExportGroupCallInviteRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "phone.exportGroupCallInvite",
ID: PhoneExportGroupCallInviteRequestTypeID,
}
if e == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "CanSelfUnmute",
SchemaName: "can_self_unmute",
Null: !e.Flags.Has(0),
},
{
Name: "Call",
SchemaName: "call",
},
}
return typ
}
// SetFlags sets flags for non-zero fields.
func (e *PhoneExportGroupCallInviteRequest) SetFlags() {
if !(e.CanSelfUnmute == false) {
e.Flags.Set(0)
}
}
// Encode implements bin.Encoder.
func (e *PhoneExportGroupCallInviteRequest) Encode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode phone.exportGroupCallInvite#e6aa647f as nil")
}
b.PutID(PhoneExportGroupCallInviteRequestTypeID)
return e.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (e *PhoneExportGroupCallInviteRequest) EncodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode phone.exportGroupCallInvite#e6aa647f as nil")
}
e.SetFlags()
if err := e.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.exportGroupCallInvite#e6aa647f: field flags: %w", err)
}
if err := e.Call.Encode(b); err != nil {
return fmt.Errorf("unable to encode phone.exportGroupCallInvite#e6aa647f: field call: %w", err)
}
return nil
}
// Decode implements bin.Decoder.
func (e *PhoneExportGroupCallInviteRequest) Decode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode phone.exportGroupCallInvite#e6aa647f to nil")
}
if err := b.ConsumeID(PhoneExportGroupCallInviteRequestTypeID); err != nil {
return fmt.Errorf("unable to decode phone.exportGroupCallInvite#e6aa647f: %w", err)
}
return e.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (e *PhoneExportGroupCallInviteRequest) DecodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode phone.exportGroupCallInvite#e6aa647f to nil")
}
{
if err := e.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode phone.exportGroupCallInvite#e6aa647f: field flags: %w", err)
}
}
e.CanSelfUnmute = e.Flags.Has(0)
{
if err := e.Call.Decode(b); err != nil {
return fmt.Errorf("unable to decode phone.exportGroupCallInvite#e6aa647f: field call: %w", err)
}
}
return nil
}
// SetCanSelfUnmute sets value of CanSelfUnmute conditional field.
func (e *PhoneExportGroupCallInviteRequest) SetCanSelfUnmute(value bool) {
if value {
e.Flags.Set(0)
e.CanSelfUnmute = true
} else {
e.Flags.Unset(0)
e.CanSelfUnmute = false
}
}
// GetCanSelfUnmute returns value of CanSelfUnmute conditional field.
func (e *PhoneExportGroupCallInviteRequest) GetCanSelfUnmute() (value bool) {
if e == nil {
return
}
return e.Flags.Has(0)
}
// GetCall returns value of Call field.
func (e *PhoneExportGroupCallInviteRequest) GetCall() (value InputGroupCall) {
if e == nil {
return
}
return e.Call
}
// PhoneExportGroupCallInvite invokes method phone.exportGroupCallInvite#e6aa647f returning error if any.
// Get an invite link for a group call or livestream
//
// See https://core.telegram.org/method/phone.exportGroupCallInvite for reference.
func (c *Client) PhoneExportGroupCallInvite(ctx context.Context, request *PhoneExportGroupCallInviteRequest) (*PhoneExportedGroupCallInvite, error) {
var result PhoneExportedGroupCallInvite
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return &result, nil
}