mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
25 lines
585 B
Go
25 lines
585 B
Go
package getter
|
|
|
|
type FeLoginData struct {
|
|
Secret string `json:"secret"`
|
|
ClientId string `json:"clientId"`
|
|
}
|
|
|
|
type FeLoginResponse struct {
|
|
Token string `json:"accessToken"`
|
|
RefreshToken string `json:"refreshToken"`
|
|
Expires string `json:"expires"`
|
|
ExpiresIn int32 `json:"expiresIn"`
|
|
}
|
|
|
|
type KSCloudSelectCustomer struct {
|
|
SelectedCustomerGuid string `json:"selectedCustomer"`
|
|
}
|
|
|
|
type TenantResponse struct {
|
|
TenantID string `json:"tenantId"`
|
|
Token string `json:"token"`
|
|
Expires string `json:"expires"`
|
|
AdminMail string `json:"adminMail,omitempty"`
|
|
}
|