-
Notifications
You must be signed in to change notification settings - Fork 19
/
services.go
93 lines (77 loc) · 1.83 KB
/
services.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
package slack
// Auto-generated by internal/cmd/genmethods/genmethods.go. DO NOT EDIT!
// AuthService handles Auth related endpoints
type AuthService struct {
client *httpClient
token string
}
// BotsService handles Bots related endpoints
type BotsService struct {
client *httpClient
token string
}
// ChannelsService handles Channels related endpoints
type ChannelsService struct {
client *httpClient
token string
}
// ChatService handles Chat related endpoints
type ChatService struct {
client *httpClient
token string
}
// DialogService handles Dialog related endpoints
type DialogService struct {
client *httpClient
token string
}
// EmojiService handles Emoji related endpoints
type EmojiService struct {
client *httpClient
token string
}
// GroupsService handles Groups related endpoints
type GroupsService struct {
client *httpClient
token string
}
// OAuthService handles OAuth related endpoints
type OAuthService struct {
client *httpClient
token string
}
// RTMService handles RTM related endpoints
type RTMService struct {
client *httpClient
token string
}
// ReactionsService handles Reactions related endpoints
type ReactionsService struct {
client *httpClient
token string
}
// RemindersService handles Reminders related endpoints
type RemindersService struct {
client *httpClient
token string
}
// UsergroupsService handles Usergroups related endpoints
type UsergroupsService struct {
client *httpClient
token string
}
// UsergroupsUsersService handles UsergroupsUsers related endpoints
type UsergroupsUsersService struct {
client *httpClient
token string
}
// UsersService handles Users related endpoints
type UsersService struct {
client *httpClient
token string
}
// UsersProfileService handles UsersProfile related endpoints
type UsersProfileService struct {
client *httpClient
token string
}