chesscom_openapi/apis/
configuration.rs

1/*
2 * Chess
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 1.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12use reqwest;
13
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    // TODO: take an oauth2 token source, similar to the go one
23}
24
25pub type BasicAuth = (String, Option<String>);
26
27pub struct ApiKey {
28    pub prefix: Option<String>,
29    pub key: String,
30}
31
32impl Configuration {
33    pub fn new() -> Configuration {
34        Configuration::default()
35    }
36}
37
38impl Default for Configuration {
39    fn default() -> Self {
40        Configuration {
41            base_path: "https://api.chess.com".to_owned(),
42            user_agent: Some("OpenAPI-Generator/1.0/rust".to_owned()),
43            client: reqwest::ClientBuilder::new().gzip(true).build().unwrap(),
44            basic_auth: None,
45            oauth_access_token: None,
46            bearer_access_token: None,
47            api_key: None,
48        }
49    }
50}