Skip to main content

canton_api_client/apis/
configuration.rs

1/*
2 * JSON Ledger API HTTP endpoints
3 *
4 * This specification version fixes the API inconsistencies where certain fields marked as required in the spec are in fact optional. If you use code generation tool based on this file, you might need to adjust the existing application code to handle those fields as optional. If you do not want to change your client code, continue using the OpenAPI specification from the previous Canton 3.4 patch release. MINIMUM_CANTON_VERSION=3.4.12
5 *
6 * The version of the OpenAPI document: 3.4.12-SNAPSHOT
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("CantonAPI/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}