2020-04-28 11:11:49 +00:00
|
|
|
package model
|
|
|
|
|
2020-06-10 07:52:44 +00:00
|
|
|
// Auth structure
|
2020-04-28 11:11:49 +00:00
|
|
|
type Auth struct {
|
|
|
|
Oauth2 bool `json:"oauth2"`
|
|
|
|
ClientId string `json:"clientId"`
|
|
|
|
Code string `json:"code"`
|
|
|
|
State string `json:"state"`
|
|
|
|
CodeUrl string `json:"codeUrl"`
|
|
|
|
}
|