bitwarden_api_api/apis/
configuration.rs1#[derive(Debug, Clone)]
12pub struct Configuration {
13 pub base_path: String,
14 pub user_agent: Option<String>,
15 pub client: reqwest::Client,
16 pub basic_auth: Option<BasicAuth>,
17 pub oauth_access_token: Option<String>,
18 pub bearer_access_token: Option<String>,
19 pub api_key: Option<ApiKey>,
20}
21
22pub type BasicAuth = (String, Option<String>);
23
24#[derive(Debug, Clone)]
25pub struct ApiKey {
26 pub prefix: Option<String>,
27 pub key: String,
28}
29
30impl Configuration {
31 pub fn new() -> Configuration {
32 Configuration::default()
33 }
34}
35
36impl Default for Configuration {
37 fn default() -> Self {
38 Configuration {
39 base_path: "http://localhost".to_owned(),
40 user_agent: Some("OpenAPI-Generator/latest/rust".to_owned()),
41 client: reqwest::Client::new(),
42 basic_auth: None,
43 oauth_access_token: None,
44 bearer_access_token: None,
45 api_key: None,
46 }
47 }
48}