| 91 | } |
| 92 | } |
| 93 | |
| 94 | /// Authentication configuration |
| 95 | #[derive(Debug, Clone, Default)] |
| 96 | pub struct AuthConfig { |
| 97 | pub auth_type: AuthType, |
| 98 | pub username: String, |
| 99 | pub password: String, |
| 100 | pub token: String, |
| 101 | pub api_key_name: String, |
| 102 | pub api_key_value: String, |
| 103 | pub api_key_in_header: bool, // true = header, false = query param |
| 104 | } |
nothing calls this directly
no outgoing calls
no test coverage detected