p7m_appointment/apis/configuration.rs
1/*
2 * Appointments Backend
3 *
4 * # API for appointment scheduling related data This is the API of the service at P7M that manages the scheduling and management of appointments. It is used by the booking widget (see the **WidgetApi** tag) with functions that are public and don't require the user to be authenticated. For endpoints in other tags the caller has to be authenticated with the system and provide a JWT token in the Authorization header of the HTTP request. When using the API you typically get this token by authenticating first with OAuth 2.0. When you are trying this API using the Swagger interface, you need to click the `Authorize` button and then again the Authorize button in the pop-up that gets opened.
5 *
6 * The version of the OpenAPI document: 0.13.5
7 * Contact: tech@p7m.de
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13#[derive(Debug, Clone)]
14pub struct Configuration {
15 pub base_path: String,
16 pub user_agent: Option<String>,
17 pub client: reqwest::Client,
18 pub basic_auth: Option<BasicAuth>,
19 pub oauth_access_token: Option<String>,
20 pub bearer_access_token: Option<String>,
21 pub api_key: Option<ApiKey>,
22}
23
24pub type BasicAuth = (String, Option<String>);
25
26#[derive(Debug, Clone)]
27pub struct ApiKey {
28 pub prefix: Option<String>,
29 pub key: String,
30}
31
32
33impl Configuration {
34 pub fn new() -> Configuration {
35 Configuration::default()
36 }
37}
38
39impl Default for Configuration {
40 fn default() -> Self {
41 Configuration {
42 base_path: "https://book.p7m.de/v1".to_owned(),
43 user_agent: Some("OpenAPI-Generator/0.13.5/rust".to_owned()),
44 client: reqwest::Client::new(),
45 basic_auth: None,
46 oauth_access_token: None,
47 bearer_access_token: None,
48 api_key: None,
49 }
50 }
51}