Skip to main content

bitwarden_api_api/apis/
plans_api.rs

1/*
2 * Bitwarden Internal API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: latest
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use std::sync::Arc;
12
13use async_trait::async_trait;
14#[cfg(feature = "mockall")]
15use mockall::automock;
16use reqwest;
17use serde::{Deserialize, Serialize, de::Error as _};
18
19use super::{Error, configuration};
20use crate::{
21    apis::{AuthRequired, ContentType, ResponseContent},
22    models,
23};
24
25#[cfg_attr(feature = "mockall", automock)]
26#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
27#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
28pub trait PlansApi: Send + Sync {
29    /// GET /plans
30    async fn get(&self) -> Result<models::PlanResponseModelListResponseModel, Error>;
31
32    /// GET /plans/premium
33    async fn get_premium_plan(&self) -> Result<(), Error>;
34}
35
36pub struct PlansApiClient {
37    configuration: Arc<configuration::Configuration>,
38}
39
40impl PlansApiClient {
41    pub fn new(configuration: Arc<configuration::Configuration>) -> Self {
42        Self { configuration }
43    }
44}
45
46#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
47#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
48impl PlansApi for PlansApiClient {
49    async fn get(&self) -> Result<models::PlanResponseModelListResponseModel, Error> {
50        let local_var_configuration = &self.configuration;
51
52        let local_var_client = &local_var_configuration.client;
53
54        let local_var_uri_str = format!("{}/plans", local_var_configuration.base_path);
55        let mut local_var_req_builder =
56            local_var_client.request(reqwest::Method::GET, local_var_uri_str.as_str());
57
58        local_var_req_builder = local_var_req_builder.with_extension(AuthRequired::Bearer);
59
60        bitwarden_api_base::process_with_json_response(local_var_req_builder).await
61    }
62
63    async fn get_premium_plan(&self) -> Result<(), Error> {
64        let local_var_configuration = &self.configuration;
65
66        let local_var_client = &local_var_configuration.client;
67
68        let local_var_uri_str = format!("{}/plans/premium", local_var_configuration.base_path);
69        let mut local_var_req_builder =
70            local_var_client.request(reqwest::Method::GET, local_var_uri_str.as_str());
71
72        local_var_req_builder = local_var_req_builder.with_extension(AuthRequired::Bearer);
73
74        bitwarden_api_base::process_with_empty_response(local_var_req_builder).await
75    }
76}