aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/update_transaction_wrapper.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-09-14 14:19:01 -0400
committerJesse Luehrs <doy@tozt.net>2019-09-14 14:39:29 -0400
commit4c94e5f9101c14bfc5c6989d11ea6c855c809f0b (patch)
tree4e4e7ba93d41eda4c8a4c5346c3e02fc88d8789d /src/models/update_transaction_wrapper.rs
parenta43423c5f36f8ff6642c9f6ad85800ab38758395 (diff)
downloadynab-api-4c94e5f9101c14bfc5c6989d11ea6c855c809f0b.tar.gz
ynab-api-4c94e5f9101c14bfc5c6989d11ea6c855c809f0b.zip
update openapi spec2.0.0
Diffstat (limited to 'src/models/update_transaction_wrapper.rs')
-rw-r--r--src/models/update_transaction_wrapper.rs30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/models/update_transaction_wrapper.rs b/src/models/update_transaction_wrapper.rs
deleted file mode 100644
index 5c34fbb..0000000
--- a/src/models/update_transaction_wrapper.rs
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * YNAB API Endpoints
- *
- * Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com
- *
- * The version of the OpenAPI document: 1.0.0
- *
- * Generated by: https://openapi-generator.tech
- */
-
-
-#[allow(unused_imports)]
-use serde_json::Value;
-
-
-#[derive(Debug, Serialize, Deserialize)]
-pub struct UpdateTransactionWrapper {
- #[serde(rename = "transaction")]
- pub transaction: ::models::UpdateTransaction,
-}
-
-impl UpdateTransactionWrapper {
- pub fn new(transaction: ::models::UpdateTransaction) -> UpdateTransactionWrapper {
- UpdateTransactionWrapper {
- transaction: transaction,
- }
- }
-}
-
-