-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_smsjobs_join_gen.go
142 lines (122 loc) · 3.22 KB
/
tl_smsjobs_join_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
// 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{}
)
// SMSJobsJoinRequest represents TL type `smsjobs.join#a74ece2d`.
//
// See https://core.telegram.org/method/smsjobs.join for reference.
type SMSJobsJoinRequest struct {
}
// SMSJobsJoinRequestTypeID is TL type id of SMSJobsJoinRequest.
const SMSJobsJoinRequestTypeID = 0xa74ece2d
// Ensuring interfaces in compile-time for SMSJobsJoinRequest.
var (
_ bin.Encoder = &SMSJobsJoinRequest{}
_ bin.Decoder = &SMSJobsJoinRequest{}
_ bin.BareEncoder = &SMSJobsJoinRequest{}
_ bin.BareDecoder = &SMSJobsJoinRequest{}
)
func (j *SMSJobsJoinRequest) Zero() bool {
if j == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (j *SMSJobsJoinRequest) String() string {
if j == nil {
return "SMSJobsJoinRequest(nil)"
}
type Alias SMSJobsJoinRequest
return fmt.Sprintf("SMSJobsJoinRequest%+v", Alias(*j))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*SMSJobsJoinRequest) TypeID() uint32 {
return SMSJobsJoinRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*SMSJobsJoinRequest) TypeName() string {
return "smsjobs.join"
}
// TypeInfo returns info about TL type.
func (j *SMSJobsJoinRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "smsjobs.join",
ID: SMSJobsJoinRequestTypeID,
}
if j == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (j *SMSJobsJoinRequest) Encode(b *bin.Buffer) error {
if j == nil {
return fmt.Errorf("can't encode smsjobs.join#a74ece2d as nil")
}
b.PutID(SMSJobsJoinRequestTypeID)
return j.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (j *SMSJobsJoinRequest) EncodeBare(b *bin.Buffer) error {
if j == nil {
return fmt.Errorf("can't encode smsjobs.join#a74ece2d as nil")
}
return nil
}
// Decode implements bin.Decoder.
func (j *SMSJobsJoinRequest) Decode(b *bin.Buffer) error {
if j == nil {
return fmt.Errorf("can't decode smsjobs.join#a74ece2d to nil")
}
if err := b.ConsumeID(SMSJobsJoinRequestTypeID); err != nil {
return fmt.Errorf("unable to decode smsjobs.join#a74ece2d: %w", err)
}
return j.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (j *SMSJobsJoinRequest) DecodeBare(b *bin.Buffer) error {
if j == nil {
return fmt.Errorf("can't decode smsjobs.join#a74ece2d to nil")
}
return nil
}
// SMSJobsJoin invokes method smsjobs.join#a74ece2d returning error if any.
//
// See https://core.telegram.org/method/smsjobs.join for reference.
func (c *Client) SMSJobsJoin(ctx context.Context) (bool, error) {
var result BoolBox
request := &SMSJobsJoinRequest{}
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return false, err
}
_, ok := result.Bool.(*BoolTrue)
return ok, nil
}