-
Notifications
You must be signed in to change notification settings - Fork 265
/
Copy pathapi_gateway.go
48 lines (39 loc) · 1.04 KB
/
api_gateway.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
/*
* @Copyright Reserved By Janusec (https://www.janusec.com/).
* @Author: U2
* @Date: 2023-04-02 21:32:15
*/
package models
type APIStatByAppIDRequest struct {
Action string `json:"action"`
AppID int64 `json:"app_id,string"`
Host string `json:"host"`
}
type APIWxworkConfigRequest struct {
Action string `json:"action"`
Object *WxworkConfig `json:"object"`
}
type APIDingtalkConfigRequest struct {
Action string `json:"action"`
Object *DingtalkConfig `json:"object"`
}
type APIFeishuConfigRequest struct {
Action string `json:"action"`
Object *FeishuConfig `json:"object"`
}
type APILarkConfigRequest struct {
Action string `json:"action"`
Object *LarkConfig `json:"object"`
}
type APILDAPConfigRequest struct {
Action string `json:"action"`
Object *LDAPConfig `json:"object"`
}
type APICAS2ConfigRequest struct {
Action string `json:"action"`
Object *CAS2Config `json:"object"`
}
type APIDiscoveryRuleRequest struct {
Action string `json:"action"`
Object *DiscoveryRule `json:"object"`
}