space_traders_api/apis/configuration.rs
1/*
2 * SpaceTraders API
3 *
4 * SpaceTraders is an open-universe game and learning platform that offers a set of HTTP endpoints to control a fleet of ships and explore a multiplayer universe. The API is documented using [OpenAPI](https://github.com/SpaceTradersAPI/api-docs). You can send your first request right here in your browser to check the status of the game server. ```json http { \"method\": \"GET\", \"url\": \"https://api.spacetraders.io/v2\", } ``` Unlike a traditional game, SpaceTraders does not have a first-party client or app to play the game. Instead, you can use the API to build your own client, write a script to automate your ships, or try an app built by the community. We have a [Discord channel](https://discord.com/invite/jh6zurdWk5) where you can share your projects, ask questions, and get help from other players.
5 *
6 * The version of the OpenAPI document: 2.3.0
7 * Contact: joel@spacetraders.io
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://api.spacetraders.io/v2".to_owned(),
43 user_agent: Some("OpenAPI-Generator/2.3.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}