2019-04-24 21:52:08 +00:00
|
|
|
package schema
|
|
|
|
|
|
|
|
// DuoAPIConfiguration represents the configuration related to Duo API.
|
|
|
|
type DuoAPIConfiguration struct {
|
2022-04-15 23:34:26 +00:00
|
|
|
Disable bool `koanf:"disable"`
|
2021-12-01 03:32:58 +00:00
|
|
|
Hostname string `koanf:"hostname"`
|
|
|
|
IntegrationKey string `koanf:"integration_key"`
|
|
|
|
SecretKey string `koanf:"secret_key"`
|
2022-04-15 23:34:26 +00:00
|
|
|
EnableSelfEnrollment bool `koanf:"enable_self_enrollment"`
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|