-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_auth_log_out_gen.go
144 lines (124 loc) · 3.23 KB
/
tl_auth_log_out_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
// 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{}
)
// AuthLogOutRequest represents TL type `auth.logOut#3e72ba19`.
// Logs out the user.
//
// See https://core.telegram.org/method/auth.logOut for reference.
type AuthLogOutRequest struct {
}
// AuthLogOutRequestTypeID is TL type id of AuthLogOutRequest.
const AuthLogOutRequestTypeID = 0x3e72ba19
// Ensuring interfaces in compile-time for AuthLogOutRequest.
var (
_ bin.Encoder = &AuthLogOutRequest{}
_ bin.Decoder = &AuthLogOutRequest{}
_ bin.BareEncoder = &AuthLogOutRequest{}
_ bin.BareDecoder = &AuthLogOutRequest{}
)
func (l *AuthLogOutRequest) Zero() bool {
if l == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (l *AuthLogOutRequest) String() string {
if l == nil {
return "AuthLogOutRequest(nil)"
}
type Alias AuthLogOutRequest
return fmt.Sprintf("AuthLogOutRequest%+v", Alias(*l))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*AuthLogOutRequest) TypeID() uint32 {
return AuthLogOutRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*AuthLogOutRequest) TypeName() string {
return "auth.logOut"
}
// TypeInfo returns info about TL type.
func (l *AuthLogOutRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "auth.logOut",
ID: AuthLogOutRequestTypeID,
}
if l == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (l *AuthLogOutRequest) Encode(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't encode auth.logOut#3e72ba19 as nil")
}
b.PutID(AuthLogOutRequestTypeID)
return l.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (l *AuthLogOutRequest) EncodeBare(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't encode auth.logOut#3e72ba19 as nil")
}
return nil
}
// Decode implements bin.Decoder.
func (l *AuthLogOutRequest) Decode(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't decode auth.logOut#3e72ba19 to nil")
}
if err := b.ConsumeID(AuthLogOutRequestTypeID); err != nil {
return fmt.Errorf("unable to decode auth.logOut#3e72ba19: %w", err)
}
return l.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (l *AuthLogOutRequest) DecodeBare(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't decode auth.logOut#3e72ba19 to nil")
}
return nil
}
// AuthLogOut invokes method auth.logOut#3e72ba19 returning error if any.
// Logs out the user.
//
// See https://core.telegram.org/method/auth.logOut for reference.
// Can be used by bots.
func (c *Client) AuthLogOut(ctx context.Context) (*AuthLoggedOut, error) {
var result AuthLoggedOut
request := &AuthLogOutRequest{}
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return &result, nil
}