2021-08-12 21:03:24 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
// Client client model
|
2025-06-06 15:14:37 +02:00
|
|
|
type Client struct {
|
|
|
|
|
ID string
|
|
|
|
|
Secret string
|
|
|
|
|
Domain string
|
|
|
|
|
Public bool
|
|
|
|
|
UserID string
|
2021-08-12 21:03:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetID client id
|
2025-06-06 15:14:37 +02:00
|
|
|
func (c *Client) GetID() string {
|
|
|
|
|
return c.ID
|
2021-08-12 21:03:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetSecret client secret
|
2025-06-06 15:14:37 +02:00
|
|
|
func (c *Client) GetSecret() string {
|
|
|
|
|
return c.Secret
|
2021-08-12 21:03:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetDomain client domain
|
2025-06-06 15:14:37 +02:00
|
|
|
func (c *Client) GetDomain() string {
|
|
|
|
|
return c.Domain
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// IsPublic public
|
|
|
|
|
func (c *Client) IsPublic() bool {
|
|
|
|
|
return c.Public
|
2021-08-12 21:03:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetUserID user id
|
2025-06-06 15:14:37 +02:00
|
|
|
func (c *Client) GetUserID() string {
|
|
|
|
|
return c.UserID
|
2021-08-12 21:03:24 +02:00
|
|
|
}
|