From faf9c8aa1e41df1889f8382e9c2183e2d5f85de1 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 9 Aug 2019 02:06:22 -0400 Subject: add openapi-generated api client --- ynab-api/src/models/mod.rs | 160 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 160 insertions(+) create mode 100644 ynab-api/src/models/mod.rs (limited to 'ynab-api/src/models/mod.rs') diff --git a/ynab-api/src/models/mod.rs b/ynab-api/src/models/mod.rs new file mode 100644 index 0000000..e0c52d9 --- /dev/null +++ b/ynab-api/src/models/mod.rs @@ -0,0 +1,160 @@ +mod account; +pub use self::account::Account; +mod account_response; +pub use self::account_response::AccountResponse; +mod account_response_data; +pub use self::account_response_data::AccountResponseData; +mod accounts_response; +pub use self::accounts_response::AccountsResponse; +mod accounts_response_data; +pub use self::accounts_response_data::AccountsResponseData; +mod budget_detail; +pub use self::budget_detail::BudgetDetail; +mod budget_detail_all_of; +pub use self::budget_detail_all_of::BudgetDetailAllOf; +mod budget_detail_response; +pub use self::budget_detail_response::BudgetDetailResponse; +mod budget_detail_response_data; +pub use self::budget_detail_response_data::BudgetDetailResponseData; +mod budget_settings; +pub use self::budget_settings::BudgetSettings; +mod budget_settings_response; +pub use self::budget_settings_response::BudgetSettingsResponse; +mod budget_settings_response_data; +pub use self::budget_settings_response_data::BudgetSettingsResponseData; +mod budget_summary; +pub use self::budget_summary::BudgetSummary; +mod budget_summary_response; +pub use self::budget_summary_response::BudgetSummaryResponse; +mod budget_summary_response_data; +pub use self::budget_summary_response_data::BudgetSummaryResponseData; +mod bulk_response; +pub use self::bulk_response::BulkResponse; +mod bulk_response_data; +pub use self::bulk_response_data::BulkResponseData; +mod bulk_response_data_bulk; +pub use self::bulk_response_data_bulk::BulkResponseDataBulk; +mod bulk_transactions; +pub use self::bulk_transactions::BulkTransactions; +mod categories_response; +pub use self::categories_response::CategoriesResponse; +mod categories_response_data; +pub use self::categories_response_data::CategoriesResponseData; +mod category; +pub use self::category::Category; +mod category_group; +pub use self::category_group::CategoryGroup; +mod category_group_with_categories; +pub use self::category_group_with_categories::CategoryGroupWithCategories; +mod category_group_with_categories_all_of; +pub use self::category_group_with_categories_all_of::CategoryGroupWithCategoriesAllOf; +mod category_response; +pub use self::category_response::CategoryResponse; +mod category_response_data; +pub use self::category_response_data::CategoryResponseData; +mod currency_format; +pub use self::currency_format::CurrencyFormat; +mod date_format; +pub use self::date_format::DateFormat; +mod error_detail; +pub use self::error_detail::ErrorDetail; +mod error_response; +pub use self::error_response::ErrorResponse; +mod hybrid_transaction; +pub use self::hybrid_transaction::HybridTransaction; +mod hybrid_transaction_all_of; +pub use self::hybrid_transaction_all_of::HybridTransactionAllOf; +mod hybrid_transactions_response; +pub use self::hybrid_transactions_response::HybridTransactionsResponse; +mod hybrid_transactions_response_data; +pub use self::hybrid_transactions_response_data::HybridTransactionsResponseData; +mod month_detail; +pub use self::month_detail::MonthDetail; +mod month_detail_all_of; +pub use self::month_detail_all_of::MonthDetailAllOf; +mod month_detail_response; +pub use self::month_detail_response::MonthDetailResponse; +mod month_detail_response_data; +pub use self::month_detail_response_data::MonthDetailResponseData; +mod month_summaries_response; +pub use self::month_summaries_response::MonthSummariesResponse; +mod month_summaries_response_data; +pub use self::month_summaries_response_data::MonthSummariesResponseData; +mod month_summary; +pub use self::month_summary::MonthSummary; +mod payee; +pub use self::payee::Payee; +mod payee_location; +pub use self::payee_location::PayeeLocation; +mod payee_location_response; +pub use self::payee_location_response::PayeeLocationResponse; +mod payee_location_response_data; +pub use self::payee_location_response_data::PayeeLocationResponseData; +mod payee_locations_response; +pub use self::payee_locations_response::PayeeLocationsResponse; +mod payee_locations_response_data; +pub use self::payee_locations_response_data::PayeeLocationsResponseData; +mod payee_response; +pub use self::payee_response::PayeeResponse; +mod payee_response_data; +pub use self::payee_response_data::PayeeResponseData; +mod payees_response; +pub use self::payees_response::PayeesResponse; +mod payees_response_data; +pub use self::payees_response_data::PayeesResponseData; +mod save_category_response; +pub use self::save_category_response::SaveCategoryResponse; +mod save_category_response_data; +pub use self::save_category_response_data::SaveCategoryResponseData; +mod save_month_category; +pub use self::save_month_category::SaveMonthCategory; +mod save_month_category_wrapper; +pub use self::save_month_category_wrapper::SaveMonthCategoryWrapper; +mod save_transaction; +pub use self::save_transaction::SaveTransaction; +mod save_transaction_wrapper; +pub use self::save_transaction_wrapper::SaveTransactionWrapper; +mod save_transactions_response; +pub use self::save_transactions_response::SaveTransactionsResponse; +mod save_transactions_response_data; +pub use self::save_transactions_response_data::SaveTransactionsResponseData; +mod save_transactions_wrapper; +pub use self::save_transactions_wrapper::SaveTransactionsWrapper; +mod scheduled_sub_transaction; +pub use self::scheduled_sub_transaction::ScheduledSubTransaction; +mod scheduled_transaction_detail; +pub use self::scheduled_transaction_detail::ScheduledTransactionDetail; +mod scheduled_transaction_detail_all_of; +pub use self::scheduled_transaction_detail_all_of::ScheduledTransactionDetailAllOf; +mod scheduled_transaction_response; +pub use self::scheduled_transaction_response::ScheduledTransactionResponse; +mod scheduled_transaction_response_data; +pub use self::scheduled_transaction_response_data::ScheduledTransactionResponseData; +mod scheduled_transaction_summary; +pub use self::scheduled_transaction_summary::ScheduledTransactionSummary; +mod scheduled_transactions_response; +pub use self::scheduled_transactions_response::ScheduledTransactionsResponse; +mod scheduled_transactions_response_data; +pub use self::scheduled_transactions_response_data::ScheduledTransactionsResponseData; +mod sub_transaction; +pub use self::sub_transaction::SubTransaction; +mod transaction_detail; +pub use self::transaction_detail::TransactionDetail; +mod transaction_detail_all_of; +pub use self::transaction_detail_all_of::TransactionDetailAllOf; +mod transaction_response; +pub use self::transaction_response::TransactionResponse; +mod transaction_response_data; +pub use self::transaction_response_data::TransactionResponseData; +mod transaction_summary; +pub use self::transaction_summary::TransactionSummary; +mod transactions_response; +pub use self::transactions_response::TransactionsResponse; +mod transactions_response_data; +pub use self::transactions_response_data::TransactionsResponseData; +mod user; +pub use self::user::User; +mod user_response; +pub use self::user_response::UserResponse; +mod user_response_data; +pub use self::user_response_data::UserResponseData; -- cgit v1.2.3-54-g00ecf