2019-04-24 21:52:08 +00:00
|
|
|
package schema
|
|
|
|
|
|
|
|
// DuoAPIConfiguration represents the configuration related to Duo API.
|
|
|
|
type DuoAPIConfiguration struct {
|
2020-01-21 20:56:44 +00:00
|
|
|
Hostname string `mapstructure:"hostname"`
|
|
|
|
IntegrationKey string `mapstructure:"integration_key"`
|
|
|
|
SecretKey string `mapstructure:"secret_key"`
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|