From 4c94e5f9101c14bfc5c6989d11ea6c855c809f0b Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 14 Sep 2019 14:19:01 -0400 Subject: update openapi spec --- src/apis/accounts_api.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/apis/accounts_api.rs') diff --git a/src/apis/accounts_api.rs b/src/apis/accounts_api.rs index 616476e..b536e89 100644 --- a/src/apis/accounts_api.rs +++ b/src/apis/accounts_api.rs @@ -13,7 +13,7 @@ use std::borrow::Borrow; use reqwest; -use super::{Error, configuration, urlencode}; +use super::{Error, configuration}; pub struct AccountsApiClient { configuration: Rc, @@ -28,16 +28,16 @@ impl AccountsApiClient { } pub trait AccountsApi { - fn get_account_by_id(&self, budget_id: &str, account_id: &str) -> Result<::models::AccountResponse, Error>; - fn get_accounts(&self, budget_id: &str, last_knowledge_of_server: i64) -> Result<::models::AccountsResponse, Error>; + fn get_account_by_id(&self, budget_id: &str, account_id: &str) -> Result; + fn get_accounts(&self, budget_id: &str, last_knowledge_of_server: i64) -> Result; } impl AccountsApi for AccountsApiClient { - fn get_account_by_id(&self, budget_id: &str, account_id: &str) -> Result<::models::AccountResponse, Error> { + fn get_account_by_id(&self, budget_id: &str, account_id: &str) -> Result { let configuration: &configuration::Configuration = self.configuration.borrow(); let client = &configuration.client; - let uri_str = format!("{}/budgets/{budget_id}/accounts/{account_id}", configuration.base_path, budget_id=urlencode(budget_id), account_id=account_id); + let uri_str = format!("{}/budgets/{budget_id}/accounts/{account_id}", configuration.base_path, budget_id=crate::apis::urlencode(budget_id), account_id=account_id); let mut req_builder = client.get(uri_str.as_str()); if let Some(ref user_agent) = configuration.user_agent { @@ -58,11 +58,11 @@ impl AccountsApi for AccountsApiClient { Ok(client.execute(req)?.error_for_status()?.json()?) } - fn get_accounts(&self, budget_id: &str, last_knowledge_of_server: i64) -> Result<::models::AccountsResponse, Error> { + fn get_accounts(&self, budget_id: &str, last_knowledge_of_server: i64) -> Result { let configuration: &configuration::Configuration = self.configuration.borrow(); let client = &configuration.client; - let uri_str = format!("{}/budgets/{budget_id}/accounts", configuration.base_path, budget_id=urlencode(budget_id)); + let uri_str = format!("{}/budgets/{budget_id}/accounts", configuration.base_path, budget_id=crate::apis::urlencode(budget_id)); let mut req_builder = client.get(uri_str.as_str()); req_builder = req_builder.query(&[("last_knowledge_of_server", &last_knowledge_of_server.to_string())]); -- cgit v1.2.3-54-g00ecf