bitwarden_api_api/apis/
configuration.rs

1/*
2 * Bitwarden Internal API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: latest
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[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}