2018-08-30 09:57:59 +00:00
|
|
|
package credential
|
|
|
|
|
|
|
|
type WindowsCredential struct {
|
|
|
|
Credential
|
2018-08-30 11:12:07 +00:00
|
|
|
|
2018-08-30 09:57:59 +00:00
|
|
|
DomainName string `json:"domainName,omitempty"`
|
|
|
|
User string `json:"user,omitempty"`
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
}
|