ynab 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/DEVELOPMENT.md +6 -2
- data/Gemfile.lock +1 -1
- data/README.md +4 -2
- data/docs/BulkTransactions.md +1 -1
- data/docs/CategoriesApi.md +22 -0
- data/docs/ExistingTransaction.md +18 -0
- data/docs/HybridTransaction.md +3 -2
- data/docs/NewTransaction.md +19 -0
- data/docs/PatchCategoryWrapper.md +8 -0
- data/docs/PatchPayeeWrapper.md +8 -0
- data/docs/PatchTransactionsWrapper.md +1 -1
- data/docs/PayeesApi.md +22 -0
- data/docs/PostTransactionsWrapper.md +2 -2
- data/docs/PutTransactionWrapper.md +1 -1
- data/docs/SaveCategory.md +10 -0
- data/docs/SavePayee.md +8 -0
- data/docs/SavePayeeResponse.md +8 -0
- data/docs/SavePayeeResponseData.md +9 -0
- data/docs/SaveTransactionWithIdOrImportId.md +20 -0
- data/docs/SaveTransactionWithOptionalFields.md +2 -3
- data/docs/ScheduledTransactionDetail.md +2 -1
- data/docs/ScheduledTransactionSummary.md +2 -1
- data/docs/TransactionClearedStatus.md +7 -0
- data/docs/TransactionDetail.md +3 -2
- data/docs/TransactionFlagColor.md +7 -0
- data/docs/TransactionSummary.md +3 -2
- data/docs/TransactionsApi.md +7 -7
- data/lib/ynab/api/accounts_api.rb +2 -2
- data/lib/ynab/api/budgets_api.rb +2 -2
- data/lib/ynab/api/categories_api.rb +82 -2
- data/lib/ynab/api/months_api.rb +2 -2
- data/lib/ynab/api/payee_locations_api.rb +2 -2
- data/lib/ynab/api/payees_api.rb +82 -2
- data/lib/ynab/api/scheduled_transactions_api.rb +2 -2
- data/lib/ynab/api/transactions_api.rb +12 -28
- data/lib/ynab/api/user_api.rb +2 -2
- data/lib/ynab/api_client.rb +2 -2
- data/lib/ynab/configuration.rb +14 -11
- data/lib/ynab/models/account.rb +13 -56
- data/lib/ynab/models/account_response.rb +13 -24
- data/lib/ynab/models/account_response_data.rb +13 -24
- data/lib/ynab/models/account_type.rb +2 -2
- data/lib/ynab/models/accounts_response.rb +13 -24
- data/lib/ynab/models/accounts_response_data.rb +13 -28
- data/lib/ynab/models/budget_detail.rb +13 -29
- data/lib/ynab/models/budget_detail_response.rb +13 -24
- data/lib/ynab/models/budget_detail_response_data.rb +13 -28
- data/lib/ynab/models/budget_settings.rb +13 -20
- data/lib/ynab/models/budget_settings_response.rb +13 -24
- data/lib/ynab/models/budget_settings_response_data.rb +13 -24
- data/lib/ynab/models/budget_summary.rb +13 -28
- data/lib/ynab/models/budget_summary_response.rb +13 -24
- data/lib/ynab/models/budget_summary_response_data.rb +13 -24
- data/lib/ynab/models/bulk_response.rb +13 -24
- data/lib/ynab/models/bulk_response_data.rb +13 -24
- data/lib/ynab/models/bulk_response_data_bulk.rb +13 -28
- data/lib/ynab/models/bulk_transactions.rb +14 -25
- data/lib/ynab/models/categories_response.rb +13 -24
- data/lib/ynab/models/categories_response_data.rb +13 -28
- data/lib/ynab/models/category.rb +13 -56
- data/lib/ynab/models/category_group.rb +13 -36
- data/lib/ynab/models/category_group_with_categories.rb +14 -42
- data/lib/ynab/models/category_group_with_categories_all_of.rb +0 -4
- data/lib/ynab/models/category_response.rb +13 -24
- data/lib/ynab/models/category_response_data.rb +13 -24
- data/lib/ynab/models/currency_format.rb +13 -52
- data/lib/ynab/models/date_format.rb +13 -24
- data/lib/ynab/models/error_detail.rb +13 -32
- data/lib/ynab/models/error_response.rb +13 -24
- data/lib/ynab/models/existing_transaction.rb +359 -0
- data/lib/ynab/models/hybrid_transaction.rb +28 -95
- data/lib/ynab/models/hybrid_transaction_all_of.rb +0 -12
- data/lib/ynab/models/hybrid_transactions_response.rb +13 -24
- data/lib/ynab/models/hybrid_transactions_response_data.rb +13 -24
- data/lib/ynab/models/month_detail.rb +13 -49
- data/lib/ynab/models/month_detail_all_of.rb +0 -4
- data/lib/ynab/models/month_detail_response.rb +13 -24
- data/lib/ynab/models/month_detail_response_data.rb +13 -24
- data/lib/ynab/models/month_summaries_response.rb +13 -24
- data/lib/ynab/models/month_summaries_response_data.rb +13 -28
- data/lib/ynab/models/month_summary.rb +13 -44
- data/lib/ynab/models/new_transaction.rb +377 -0
- data/lib/ynab/models/patch_category_wrapper.rb +213 -0
- data/lib/ynab/models/patch_month_category_wrapper.rb +13 -24
- data/lib/ynab/models/patch_payee_wrapper.rb +213 -0
- data/lib/ynab/models/patch_transactions_wrapper.rb +14 -25
- data/lib/ynab/models/payee.rb +13 -32
- data/lib/ynab/models/payee_location.rb +13 -40
- data/lib/ynab/models/payee_location_response.rb +13 -24
- data/lib/ynab/models/payee_location_response_data.rb +13 -24
- data/lib/ynab/models/payee_locations_response.rb +13 -24
- data/lib/ynab/models/payee_locations_response_data.rb +13 -24
- data/lib/ynab/models/payee_response.rb +13 -24
- data/lib/ynab/models/payee_response_data.rb +13 -24
- data/lib/ynab/models/payees_response.rb +13 -24
- data/lib/ynab/models/payees_response_data.rb +13 -28
- data/lib/ynab/models/post_account_wrapper.rb +13 -24
- data/lib/ynab/models/post_transactions_wrapper.rb +15 -22
- data/lib/ynab/models/put_transaction_wrapper.rb +14 -25
- data/lib/ynab/models/save_account.rb +13 -32
- data/lib/ynab/models/save_category.rb +232 -0
- data/lib/ynab/models/save_category_response.rb +13 -24
- data/lib/ynab/models/save_category_response_data.rb +13 -28
- data/lib/ynab/models/save_month_category.rb +13 -24
- data/lib/ynab/models/save_payee.rb +220 -0
- data/lib/ynab/models/save_payee_response.rb +213 -0
- data/lib/ynab/models/save_payee_response_data.rb +224 -0
- data/lib/ynab/models/save_sub_transaction.rb +13 -40
- data/lib/ynab/models/save_transaction.rb +0 -32
- data/lib/ynab/models/save_transaction_with_id.rb +0 -32
- data/lib/ynab/models/save_transaction_with_id_or_import_id.rb +388 -0
- data/lib/ynab/models/save_transaction_with_optional_fields.rb +17 -91
- data/lib/ynab/models/save_transactions_response.rb +13 -24
- data/lib/ynab/models/save_transactions_response_data.rb +13 -28
- data/lib/ynab/models/scheduled_sub_transaction.rb +13 -36
- data/lib/ynab/models/scheduled_transaction_detail.rb +26 -76
- data/lib/ynab/models/scheduled_transaction_detail_all_of.rb +0 -8
- data/lib/ynab/models/scheduled_transaction_response.rb +13 -24
- data/lib/ynab/models/scheduled_transaction_response_data.rb +13 -24
- data/lib/ynab/models/scheduled_transaction_summary.rb +26 -67
- data/lib/ynab/models/scheduled_transactions_response.rb +13 -24
- data/lib/ynab/models/scheduled_transactions_response_data.rb +13 -28
- data/lib/ynab/models/sub_transaction.rb +13 -36
- data/lib/ynab/models/transaction_cleared_status.rb +41 -0
- data/lib/ynab/models/transaction_detail.rb +28 -91
- data/lib/ynab/models/transaction_detail_all_of.rb +0 -8
- data/lib/ynab/models/transaction_flag_color.rb +45 -0
- data/lib/ynab/models/transaction_response.rb +13 -24
- data/lib/ynab/models/transaction_response_data.rb +13 -24
- data/lib/ynab/models/transaction_summary.rb +28 -82
- data/lib/ynab/models/transactions_import_response.rb +13 -24
- data/lib/ynab/models/transactions_import_response_data.rb +13 -24
- data/lib/ynab/models/transactions_response.rb +13 -24
- data/lib/ynab/models/transactions_response_data.rb +13 -28
- data/lib/ynab/models/user.rb +13 -24
- data/lib/ynab/models/user_response.rb +13 -24
- data/lib/ynab/models/user_response_data.rb +13 -24
- data/lib/ynab/version.rb +1 -1
- data/lib/ynab.rb +13 -12
- data/open_api_spec.yaml +455 -343
- data/templates/api.mustache +213 -0
- data/templates/partial_model_generic.mustache +305 -0
- data/ynab.gemspec +4 -3
- metadata +31 -7
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#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.ynab.com
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.69.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
|
|
9
|
+
Generator version: 7.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -123,38 +123,6 @@ module YNAB
|
|
|
123
123
|
# @return Array for valid properties with the reasons
|
|
124
124
|
def list_invalid_properties
|
|
125
125
|
invalid_properties = Array.new
|
|
126
|
-
if @iso_code.nil?
|
|
127
|
-
invalid_properties.push('invalid value for "iso_code", iso_code cannot be nil.')
|
|
128
|
-
end
|
|
129
|
-
|
|
130
|
-
if @example_format.nil?
|
|
131
|
-
invalid_properties.push('invalid value for "example_format", example_format cannot be nil.')
|
|
132
|
-
end
|
|
133
|
-
|
|
134
|
-
if @decimal_digits.nil?
|
|
135
|
-
invalid_properties.push('invalid value for "decimal_digits", decimal_digits cannot be nil.')
|
|
136
|
-
end
|
|
137
|
-
|
|
138
|
-
if @decimal_separator.nil?
|
|
139
|
-
invalid_properties.push('invalid value for "decimal_separator", decimal_separator cannot be nil.')
|
|
140
|
-
end
|
|
141
|
-
|
|
142
|
-
if @symbol_first.nil?
|
|
143
|
-
invalid_properties.push('invalid value for "symbol_first", symbol_first cannot be nil.')
|
|
144
|
-
end
|
|
145
|
-
|
|
146
|
-
if @group_separator.nil?
|
|
147
|
-
invalid_properties.push('invalid value for "group_separator", group_separator cannot be nil.')
|
|
148
|
-
end
|
|
149
|
-
|
|
150
|
-
if @currency_symbol.nil?
|
|
151
|
-
invalid_properties.push('invalid value for "currency_symbol", currency_symbol cannot be nil.')
|
|
152
|
-
end
|
|
153
|
-
|
|
154
|
-
if @display_symbol.nil?
|
|
155
|
-
invalid_properties.push('invalid value for "display_symbol", display_symbol cannot be nil.')
|
|
156
|
-
end
|
|
157
|
-
|
|
158
126
|
invalid_properties
|
|
159
127
|
end
|
|
160
128
|
|
|
@@ -203,37 +171,30 @@ module YNAB
|
|
|
203
171
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
204
172
|
# @return [Object] Returns the model itself
|
|
205
173
|
def self.build_from_hash(attributes)
|
|
206
|
-
new.build_from_hash(attributes)
|
|
207
|
-
end
|
|
208
|
-
|
|
209
|
-
# Builds the object from hash
|
|
210
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
211
|
-
# @return [Object] Returns the model itself
|
|
212
|
-
def build_from_hash(attributes)
|
|
213
174
|
return nil unless attributes.is_a?(Hash)
|
|
214
175
|
attributes = attributes.transform_keys(&:to_sym)
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
176
|
+
transformed_hash = {}
|
|
177
|
+
openapi_types.each_pair do |key, type|
|
|
178
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
179
|
+
transformed_hash["#{key}"] = nil
|
|
218
180
|
elsif type =~ /\AArray<(.*)>/i
|
|
219
181
|
# check to ensure the input is an array given that the attribute
|
|
220
182
|
# is documented as an array but the input is not
|
|
221
|
-
if attributes[
|
|
222
|
-
|
|
183
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
184
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
223
185
|
end
|
|
224
|
-
elsif !attributes[
|
|
225
|
-
|
|
186
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
187
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
226
188
|
end
|
|
227
189
|
end
|
|
228
|
-
|
|
229
|
-
self
|
|
190
|
+
new(transformed_hash)
|
|
230
191
|
end
|
|
231
192
|
|
|
232
193
|
# Deserializes the data based on type
|
|
233
194
|
# @param string type Data type
|
|
234
195
|
# @param string value Value to be deserialized
|
|
235
196
|
# @return [Object] Deserialized data
|
|
236
|
-
def _deserialize(type, value)
|
|
197
|
+
def self._deserialize(type, value)
|
|
237
198
|
case type.to_sym
|
|
238
199
|
when :Time
|
|
239
200
|
Time.parse(value)
|
|
@@ -268,7 +229,7 @@ module YNAB
|
|
|
268
229
|
else # model
|
|
269
230
|
# models (e.g. Pet) or oneOf
|
|
270
231
|
klass = YNAB.const_get(type)
|
|
271
|
-
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
232
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
272
233
|
end
|
|
273
234
|
end
|
|
274
235
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#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.ynab.com
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.69.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
|
|
9
|
+
Generator version: 7.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -67,10 +67,6 @@ module YNAB
|
|
|
67
67
|
# @return Array for valid properties with the reasons
|
|
68
68
|
def list_invalid_properties
|
|
69
69
|
invalid_properties = Array.new
|
|
70
|
-
if @format.nil?
|
|
71
|
-
invalid_properties.push('invalid value for "format", format cannot be nil.')
|
|
72
|
-
end
|
|
73
|
-
|
|
74
70
|
invalid_properties
|
|
75
71
|
end
|
|
76
72
|
|
|
@@ -105,37 +101,30 @@ module YNAB
|
|
|
105
101
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
106
102
|
# @return [Object] Returns the model itself
|
|
107
103
|
def self.build_from_hash(attributes)
|
|
108
|
-
new.build_from_hash(attributes)
|
|
109
|
-
end
|
|
110
|
-
|
|
111
|
-
# Builds the object from hash
|
|
112
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
113
|
-
# @return [Object] Returns the model itself
|
|
114
|
-
def build_from_hash(attributes)
|
|
115
104
|
return nil unless attributes.is_a?(Hash)
|
|
116
105
|
attributes = attributes.transform_keys(&:to_sym)
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
106
|
+
transformed_hash = {}
|
|
107
|
+
openapi_types.each_pair do |key, type|
|
|
108
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
109
|
+
transformed_hash["#{key}"] = nil
|
|
120
110
|
elsif type =~ /\AArray<(.*)>/i
|
|
121
111
|
# check to ensure the input is an array given that the attribute
|
|
122
112
|
# is documented as an array but the input is not
|
|
123
|
-
if attributes[
|
|
124
|
-
|
|
113
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
114
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
125
115
|
end
|
|
126
|
-
elsif !attributes[
|
|
127
|
-
|
|
116
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
117
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
128
118
|
end
|
|
129
119
|
end
|
|
130
|
-
|
|
131
|
-
self
|
|
120
|
+
new(transformed_hash)
|
|
132
121
|
end
|
|
133
122
|
|
|
134
123
|
# Deserializes the data based on type
|
|
135
124
|
# @param string type Data type
|
|
136
125
|
# @param string value Value to be deserialized
|
|
137
126
|
# @return [Object] Deserialized data
|
|
138
|
-
def _deserialize(type, value)
|
|
127
|
+
def self._deserialize(type, value)
|
|
139
128
|
case type.to_sym
|
|
140
129
|
when :Time
|
|
141
130
|
Time.parse(value)
|
|
@@ -170,7 +159,7 @@ module YNAB
|
|
|
170
159
|
else # model
|
|
171
160
|
# models (e.g. Pet) or oneOf
|
|
172
161
|
klass = YNAB.const_get(type)
|
|
173
|
-
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
162
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
174
163
|
end
|
|
175
164
|
end
|
|
176
165
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#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.ynab.com
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.69.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
|
|
9
|
+
Generator version: 7.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -82,18 +82,6 @@ module YNAB
|
|
|
82
82
|
# @return Array for valid properties with the reasons
|
|
83
83
|
def list_invalid_properties
|
|
84
84
|
invalid_properties = Array.new
|
|
85
|
-
if @id.nil?
|
|
86
|
-
invalid_properties.push('invalid value for "id", id cannot be nil.')
|
|
87
|
-
end
|
|
88
|
-
|
|
89
|
-
if @name.nil?
|
|
90
|
-
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
91
|
-
end
|
|
92
|
-
|
|
93
|
-
if @detail.nil?
|
|
94
|
-
invalid_properties.push('invalid value for "detail", detail cannot be nil.')
|
|
95
|
-
end
|
|
96
|
-
|
|
97
85
|
invalid_properties
|
|
98
86
|
end
|
|
99
87
|
|
|
@@ -132,37 +120,30 @@ module YNAB
|
|
|
132
120
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
133
121
|
# @return [Object] Returns the model itself
|
|
134
122
|
def self.build_from_hash(attributes)
|
|
135
|
-
new.build_from_hash(attributes)
|
|
136
|
-
end
|
|
137
|
-
|
|
138
|
-
# Builds the object from hash
|
|
139
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
140
|
-
# @return [Object] Returns the model itself
|
|
141
|
-
def build_from_hash(attributes)
|
|
142
123
|
return nil unless attributes.is_a?(Hash)
|
|
143
124
|
attributes = attributes.transform_keys(&:to_sym)
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
125
|
+
transformed_hash = {}
|
|
126
|
+
openapi_types.each_pair do |key, type|
|
|
127
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
128
|
+
transformed_hash["#{key}"] = nil
|
|
147
129
|
elsif type =~ /\AArray<(.*)>/i
|
|
148
130
|
# check to ensure the input is an array given that the attribute
|
|
149
131
|
# is documented as an array but the input is not
|
|
150
|
-
if attributes[
|
|
151
|
-
|
|
132
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
133
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
152
134
|
end
|
|
153
|
-
elsif !attributes[
|
|
154
|
-
|
|
135
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
136
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
155
137
|
end
|
|
156
138
|
end
|
|
157
|
-
|
|
158
|
-
self
|
|
139
|
+
new(transformed_hash)
|
|
159
140
|
end
|
|
160
141
|
|
|
161
142
|
# Deserializes the data based on type
|
|
162
143
|
# @param string type Data type
|
|
163
144
|
# @param string value Value to be deserialized
|
|
164
145
|
# @return [Object] Deserialized data
|
|
165
|
-
def _deserialize(type, value)
|
|
146
|
+
def self._deserialize(type, value)
|
|
166
147
|
case type.to_sym
|
|
167
148
|
when :Time
|
|
168
149
|
Time.parse(value)
|
|
@@ -197,7 +178,7 @@ module YNAB
|
|
|
197
178
|
else # model
|
|
198
179
|
# models (e.g. Pet) or oneOf
|
|
199
180
|
klass = YNAB.const_get(type)
|
|
200
|
-
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
181
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
201
182
|
end
|
|
202
183
|
end
|
|
203
184
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#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.ynab.com
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.69.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
|
|
9
|
+
Generator version: 7.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -66,10 +66,6 @@ module YNAB
|
|
|
66
66
|
# @return Array for valid properties with the reasons
|
|
67
67
|
def list_invalid_properties
|
|
68
68
|
invalid_properties = Array.new
|
|
69
|
-
if @error.nil?
|
|
70
|
-
invalid_properties.push('invalid value for "error", error cannot be nil.')
|
|
71
|
-
end
|
|
72
|
-
|
|
73
69
|
invalid_properties
|
|
74
70
|
end
|
|
75
71
|
|
|
@@ -104,37 +100,30 @@ module YNAB
|
|
|
104
100
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
105
101
|
# @return [Object] Returns the model itself
|
|
106
102
|
def self.build_from_hash(attributes)
|
|
107
|
-
new.build_from_hash(attributes)
|
|
108
|
-
end
|
|
109
|
-
|
|
110
|
-
# Builds the object from hash
|
|
111
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
112
|
-
# @return [Object] Returns the model itself
|
|
113
|
-
def build_from_hash(attributes)
|
|
114
103
|
return nil unless attributes.is_a?(Hash)
|
|
115
104
|
attributes = attributes.transform_keys(&:to_sym)
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
105
|
+
transformed_hash = {}
|
|
106
|
+
openapi_types.each_pair do |key, type|
|
|
107
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
108
|
+
transformed_hash["#{key}"] = nil
|
|
119
109
|
elsif type =~ /\AArray<(.*)>/i
|
|
120
110
|
# check to ensure the input is an array given that the attribute
|
|
121
111
|
# is documented as an array but the input is not
|
|
122
|
-
if attributes[
|
|
123
|
-
|
|
112
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
113
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
124
114
|
end
|
|
125
|
-
elsif !attributes[
|
|
126
|
-
|
|
115
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
116
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
127
117
|
end
|
|
128
118
|
end
|
|
129
|
-
|
|
130
|
-
self
|
|
119
|
+
new(transformed_hash)
|
|
131
120
|
end
|
|
132
121
|
|
|
133
122
|
# Deserializes the data based on type
|
|
134
123
|
# @param string type Data type
|
|
135
124
|
# @param string value Value to be deserialized
|
|
136
125
|
# @return [Object] Deserialized data
|
|
137
|
-
def _deserialize(type, value)
|
|
126
|
+
def self._deserialize(type, value)
|
|
138
127
|
case type.to_sym
|
|
139
128
|
when :Time
|
|
140
129
|
Time.parse(value)
|
|
@@ -169,7 +158,7 @@ module YNAB
|
|
|
169
158
|
else # model
|
|
170
159
|
# models (e.g. Pet) or oneOf
|
|
171
160
|
klass = YNAB.const_get(type)
|
|
172
|
-
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
161
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
173
162
|
end
|
|
174
163
|
end
|
|
175
164
|
|