blob: c31ad7fb0c02f3bc041ac371e749466b2dc8c06b (
plain)
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
|
package models
// Client client model
type Client struct {
ID string
Secret string
Domain string
Public bool
UserID string
}
// GetID client id
func (c *Client) GetID() string {
return c.ID
}
// GetSecret client secret
func (c *Client) GetSecret() string {
return c.Secret
}
// GetDomain client domain
func (c *Client) GetDomain() string {
return c.Domain
}
// IsPublic public
func (c *Client) IsPublic() bool {
return c.Public
}
// GetUserID user id
func (c *Client) GetUserID() string {
return c.UserID
}
|