-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
tl_test_dummy_function_gen.go
140 lines (120 loc) · 3.4 KB
/
tl_test_dummy_function_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
// Code generated by gotdgen, DO NOT EDIT.
package e2e
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{}
)
// TestDummyFunctionRequest represents TL type `test.dummyFunction#c8357709`.
//
// See https://core.telegram.org/method/test.dummyFunction for reference.
type TestDummyFunctionRequest struct {
}
// TestDummyFunctionRequestTypeID is TL type id of TestDummyFunctionRequest.
const TestDummyFunctionRequestTypeID = 0xc8357709
// Ensuring interfaces in compile-time for TestDummyFunctionRequest.
var (
_ bin.Encoder = &TestDummyFunctionRequest{}
_ bin.Decoder = &TestDummyFunctionRequest{}
_ bin.BareEncoder = &TestDummyFunctionRequest{}
_ bin.BareDecoder = &TestDummyFunctionRequest{}
)
func (d *TestDummyFunctionRequest) Zero() bool {
if d == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (d *TestDummyFunctionRequest) String() string {
if d == nil {
return "TestDummyFunctionRequest(nil)"
}
type Alias TestDummyFunctionRequest
return fmt.Sprintf("TestDummyFunctionRequest%+v", Alias(*d))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*TestDummyFunctionRequest) TypeID() uint32 {
return TestDummyFunctionRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*TestDummyFunctionRequest) TypeName() string {
return "test.dummyFunction"
}
// TypeInfo returns info about TL type.
func (d *TestDummyFunctionRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "test.dummyFunction",
ID: TestDummyFunctionRequestTypeID,
}
if d == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (d *TestDummyFunctionRequest) Encode(b *bin.Buffer) error {
if d == nil {
return fmt.Errorf("can't encode test.dummyFunction#c8357709 as nil")
}
b.PutID(TestDummyFunctionRequestTypeID)
return d.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (d *TestDummyFunctionRequest) EncodeBare(b *bin.Buffer) error {
if d == nil {
return fmt.Errorf("can't encode test.dummyFunction#c8357709 as nil")
}
return nil
}
// Decode implements bin.Decoder.
func (d *TestDummyFunctionRequest) Decode(b *bin.Buffer) error {
if d == nil {
return fmt.Errorf("can't decode test.dummyFunction#c8357709 to nil")
}
if err := b.ConsumeID(TestDummyFunctionRequestTypeID); err != nil {
return fmt.Errorf("unable to decode test.dummyFunction#c8357709: %w", err)
}
return d.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (d *TestDummyFunctionRequest) DecodeBare(b *bin.Buffer) error {
if d == nil {
return fmt.Errorf("can't decode test.dummyFunction#c8357709 to nil")
}
return nil
}
// TestDummyFunction invokes method test.dummyFunction#c8357709 returning error if any.
//
// See https://core.telegram.org/method/test.dummyFunction for reference.
func (c *Client) TestDummyFunction(ctx context.Context) (bool, error) {
var result BoolBox
request := &TestDummyFunctionRequest{}
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return false, err
}
_, ok := result.Bool.(*BoolTrue)
return ok, nil
}