dwd_api_sys/apis/configuration.rs
1/*
2 * Deutscher Wetterdienst: API
3 *
4 * API des Deutschen Wetterdienstes (DWD) aus der DWD App. <br><br> Neben unterschiedlichen Wetterwarnungen (s.u.) lassen sich unter [/dwd.api.proxy.bund.dev/v30/stationOverviewExtended](/dwd.api.proxy.bund.dev/v30/stationOverviewExtended) nach Angabe des Parameters *stationIDs* (z.B. 'G005') auch die Wetterdaten ausgewählter Wetterstationen anfordern (wobei die sog. 'Stationskennung' des DWD anzugeben ist). <br><br> Unter [https://opendata.dwd.de/](https://opendata.dwd.de/) bietet der DWD darüber hinaus auch aktuelle und historische Daten zu diversen Wetter- und Klimaphänomenen zum Download an (vgl. hierzu die offizielle Dokumentation [hier](https://opendata.dwd.de/climate_environment/CDC/Readme_intro_CDC_ftp.pdf)). In diesem Zusammenhang erwähnenswert ist auch eine weitere offizielle Liste aller Wetterstationen (ohne Stationskennung aber mit sog. 'Stations_id') [hier](https://opendata.dwd.de/climate_environment/CDC/observations_germany/climate/daily/kl/recent/KL_Tageswerte_Beschreibung_Stationen.txt).
5 *
6 * The version of the OpenAPI document: 1.2.0
7 *
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://app-prod-ws.warnwetter.de/v30".to_owned(),
43 user_agent: Some("OpenAPI-Generator/1.2.0/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}