xero-ruby 3.4.0 → 3.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/xero-ruby/api/finance_api.rb +866 -0
- data/lib/xero-ruby/api_client.rb +11 -0
- data/lib/xero-ruby/configuration.rb +2 -0
- data/lib/xero-ruby/models/accounting/contact.rb +86 -1
- data/lib/xero-ruby/models/finance/account_usage.rb +342 -0
- data/lib/xero-ruby/models/finance/account_usage_response.rb +254 -0
- data/lib/xero-ruby/models/finance/balance_sheet_account_detail.rb +262 -0
- data/lib/xero-ruby/models/finance/balance_sheet_account_group.rb +234 -0
- data/lib/xero-ruby/models/finance/balance_sheet_account_type.rb +244 -0
- data/lib/xero-ruby/models/finance/balance_sheet_response.rb +252 -0
- data/lib/xero-ruby/models/finance/bank_statement_response.rb +232 -0
- data/lib/xero-ruby/models/finance/cash_account_response.rb +262 -0
- data/lib/xero-ruby/models/finance/cash_balance.rb +242 -0
- data/lib/xero-ruby/models/finance/cash_validation_response.rb +262 -0
- data/lib/xero-ruby/models/finance/cashflow_account.rb +282 -0
- data/lib/xero-ruby/models/finance/cashflow_activity.rb +244 -0
- data/lib/xero-ruby/models/finance/cashflow_response.rb +254 -0
- data/lib/xero-ruby/models/finance/cashflow_type.rb +244 -0
- data/lib/xero-ruby/models/finance/contact_detail.rb +274 -0
- data/lib/xero-ruby/models/finance/contact_total_detail.rb +242 -0
- data/lib/xero-ruby/models/finance/contact_total_other.rb +252 -0
- data/lib/xero-ruby/models/finance/current_statement_response.rb +272 -0
- data/lib/xero-ruby/models/finance/data_source_response.rb +362 -0
- data/lib/xero-ruby/models/finance/history_record_response.rb +262 -0
- data/lib/xero-ruby/models/finance/income_by_contact_response.rb +284 -0
- data/lib/xero-ruby/models/finance/lock_history_model.rb +242 -0
- data/lib/xero-ruby/models/finance/lock_history_response.rb +244 -0
- data/lib/xero-ruby/models/finance/manual_journal_total.rb +222 -0
- data/lib/xero-ruby/models/finance/pnl_account.rb +272 -0
- data/lib/xero-ruby/models/finance/pnl_account_class.rb +234 -0
- data/lib/xero-ruby/models/finance/pnl_account_type.rb +244 -0
- data/lib/xero-ruby/models/finance/practice_response.rb +262 -0
- data/lib/xero-ruby/models/finance/problem.rb +252 -0
- data/lib/xero-ruby/models/finance/problem_type.rb +39 -0
- data/lib/xero-ruby/models/finance/profit_and_loss_response.rb +262 -0
- data/lib/xero-ruby/models/finance/report_history_model.rb +242 -0
- data/lib/xero-ruby/models/finance/report_history_response.rb +244 -0
- data/lib/xero-ruby/models/finance/statement_balance_response.rb +232 -0
- data/lib/xero-ruby/models/finance/statement_lines_response.rb +382 -0
- data/lib/xero-ruby/models/finance/total_detail.rb +242 -0
- data/lib/xero-ruby/models/finance/total_other.rb +242 -0
- data/lib/xero-ruby/models/finance/trial_balance_account.rb +312 -0
- data/lib/xero-ruby/models/finance/trial_balance_entry.rb +232 -0
- data/lib/xero-ruby/models/finance/trial_balance_movement.rb +252 -0
- data/lib/xero-ruby/models/finance/trial_balance_response.rb +244 -0
- data/lib/xero-ruby/models/finance/user_activities_response.rb +244 -0
- data/lib/xero-ruby/models/finance/user_response.rb +336 -0
- data/lib/xero-ruby/version.rb +6 -6
- data/lib/xero-ruby.rb +44 -0
- data/spec/api_client_spec.rb +3 -0
- data/spec/app_store/api/app_store_api_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -0
- data/spec/finance/api/finance_api_spec.rb +156 -0
- data/spec/finance/models/account_usage_response_spec.rb +58 -0
- data/spec/finance/models/account_usage_spec.rb +112 -0
- data/spec/finance/models/balance_sheet_account_detail_spec.rb +64 -0
- data/spec/finance/models/balance_sheet_account_group_spec.rb +46 -0
- data/spec/finance/models/balance_sheet_account_type_spec.rb +52 -0
- data/spec/finance/models/balance_sheet_response_spec.rb +58 -0
- data/spec/finance/models/bank_statement_response_spec.rb +46 -0
- data/spec/finance/models/cash_account_response_spec.rb +64 -0
- data/spec/finance/models/cash_balance_spec.rb +52 -0
- data/spec/finance/models/cash_validation_response_spec.rb +64 -0
- data/spec/finance/models/cashflow_account_spec.rb +76 -0
- data/spec/finance/models/cashflow_activity_spec.rb +52 -0
- data/spec/finance/models/cashflow_response_spec.rb +58 -0
- data/spec/finance/models/cashflow_type_spec.rb +52 -0
- data/spec/finance/models/current_statement_response_spec.rb +70 -0
- data/spec/finance/models/data_source_response_spec.rb +124 -0
- data/spec/finance/models/history_record_response_spec.rb +64 -0
- data/spec/finance/models/lock_history_model_spec.rb +52 -0
- data/spec/finance/models/lock_history_response_spec.rb +52 -0
- data/spec/finance/models/pnl_account_class_spec.rb +46 -0
- data/spec/finance/models/pnl_account_spec.rb +70 -0
- data/spec/finance/models/pnl_account_type_spec.rb +52 -0
- data/spec/finance/models/practice_response_spec.rb +64 -0
- data/spec/finance/models/problem_spec.rb +58 -0
- data/spec/finance/models/problem_type_spec.rb +34 -0
- data/spec/finance/models/profit_and_loss_response_spec.rb +64 -0
- data/spec/finance/models/report_history_model_spec.rb +52 -0
- data/spec/finance/models/report_history_response_spec.rb +52 -0
- data/spec/finance/models/statement_balance_response_spec.rb +46 -0
- data/spec/finance/models/statement_lines_response_spec.rb +136 -0
- data/spec/finance/models/trial_balance_account_spec.rb +94 -0
- data/spec/finance/models/trial_balance_entry_spec.rb +46 -0
- data/spec/finance/models/trial_balance_movement_spec.rb +58 -0
- data/spec/finance/models/trial_balance_response_spec.rb +52 -0
- data/spec/finance/models/user_activities_response_spec.rb +52 -0
- data/spec/finance/models/user_response_spec.rb +106 -0
- metadata +120 -2
data/lib/xero-ruby/api_client.rb
CHANGED
@@ -110,6 +110,11 @@ module XeroRuby
|
|
110
110
|
XeroRuby::AppStoreApi.new(self)
|
111
111
|
end
|
112
112
|
|
113
|
+
def finance_api
|
114
|
+
@config.base_url = @config.finance_url
|
115
|
+
XeroRuby::FinanceApi.new(self)
|
116
|
+
end
|
117
|
+
|
113
118
|
# Token Helpers
|
114
119
|
def token_set
|
115
120
|
@config.token_set
|
@@ -284,6 +289,10 @@ module XeroRuby
|
|
284
289
|
method_base_url = @config.payroll_uk_url
|
285
290
|
when "ProjectApi"
|
286
291
|
method_base_url = @config.project_url
|
292
|
+
when "AppStoreApi"
|
293
|
+
method_base_url = @config.app_store_url
|
294
|
+
when "FinanceApi"
|
295
|
+
method_base_url = @config.finance_url
|
287
296
|
else
|
288
297
|
method_base_url = @config.accounting_url
|
289
298
|
end
|
@@ -508,6 +517,8 @@ module XeroRuby
|
|
508
517
|
XeroRuby::PayrollUk.const_get(return_type).build_from_hash(data)
|
509
518
|
when 'AppStoreApi'
|
510
519
|
XeroRuby::AppStore.const_get(return_type).build_from_hash(data)
|
520
|
+
when 'FinanceApi'
|
521
|
+
XeroRuby::Finance.const_get(return_type).build_from_hash(data)
|
511
522
|
else
|
512
523
|
XeroRuby::Accounting.const_get(return_type).build_from_hash(data)
|
513
524
|
end
|
@@ -34,6 +34,7 @@ module XeroRuby
|
|
34
34
|
attr_accessor :payroll_nz_url
|
35
35
|
attr_accessor :payroll_uk_url
|
36
36
|
attr_accessor :app_store_url
|
37
|
+
attr_accessor :finance_url
|
37
38
|
|
38
39
|
# Defines API keys used with API Key authentications.
|
39
40
|
#
|
@@ -151,6 +152,7 @@ module XeroRuby
|
|
151
152
|
@payroll_nz_url = 'https://api.xero.com/payroll.xro/2.0/'
|
152
153
|
@payroll_uk_url = 'https://api.xero.com/payroll.xro/2.0/'
|
153
154
|
@app_store_url = 'https://api.xero.com/appstore/2.0/'
|
155
|
+
@finance_url = 'https://api.xero.com/finance.xro/1.0/'
|
154
156
|
@access_token = nil
|
155
157
|
@id_token = nil
|
156
158
|
@api_key = {}
|
@@ -19,6 +19,9 @@ module XeroRuby::Accounting
|
|
19
19
|
# Xero identifier
|
20
20
|
attr_accessor :contact_id
|
21
21
|
|
22
|
+
# ID for the destination of a merged contact. Only returned when using paging or when fetching a contact by ContactId or ContactNumber.
|
23
|
+
attr_accessor :merged_to_contact_id
|
24
|
+
|
22
25
|
# This can be updated via the API only i.e. This field is read only on the Xero contact screen, used to identify contacts in external systems (max length = 50). If the Contact Number is used, this is displayed as Contact Code in the Contacts UI in Xero.
|
23
26
|
attr_accessor :contact_number
|
24
27
|
|
@@ -40,6 +43,9 @@ module XeroRuby::Accounting
|
|
40
43
|
# Last name of contact person (max length = 255)
|
41
44
|
attr_accessor :last_name
|
42
45
|
|
46
|
+
# Company registration number (max length = 50)
|
47
|
+
attr_accessor :company_number
|
48
|
+
|
43
49
|
# Email address of contact person (umlauts not supported) (max length = 255)
|
44
50
|
attr_accessor :email_address
|
45
51
|
|
@@ -73,6 +79,18 @@ module XeroRuby::Accounting
|
|
73
79
|
# true or false – Boolean that describes if a contact has any AR invoices entered against them. Cannot be set via PUT or POST – it is automatically set when an accounts receivable invoice is generated against this contact.
|
74
80
|
attr_accessor :is_customer
|
75
81
|
|
82
|
+
# The default sales line amount type for a contact. Only available when summaryOnly parameter or paging is used, or when fetch by ContactId or ContactNumber.
|
83
|
+
attr_accessor :sales_default_line_amount_type
|
84
|
+
INCLUSIVE = "INCLUSIVE".freeze
|
85
|
+
EXCLUSIVE = "EXCLUSIVE".freeze
|
86
|
+
# NONE = "NONE".freeze
|
87
|
+
|
88
|
+
# The default purchases line amount type for a contact Only available when summaryOnly parameter or paging is used, or when fetch by ContactId or ContactNumber.
|
89
|
+
attr_accessor :purchases_default_line_amount_type
|
90
|
+
# INCLUSIVE = "INCLUSIVE".freeze
|
91
|
+
# EXCLUSIVE = "EXCLUSIVE".freeze
|
92
|
+
# NONE = "NONE".freeze
|
93
|
+
|
76
94
|
|
77
95
|
attr_accessor :default_currency
|
78
96
|
|
@@ -162,12 +180,14 @@ module XeroRuby::Accounting
|
|
162
180
|
def self.attribute_map
|
163
181
|
{
|
164
182
|
:'contact_id' => :'ContactID',
|
183
|
+
:'merged_to_contact_id' => :'MergedToContactID',
|
165
184
|
:'contact_number' => :'ContactNumber',
|
166
185
|
:'account_number' => :'AccountNumber',
|
167
186
|
:'contact_status' => :'ContactStatus',
|
168
187
|
:'name' => :'Name',
|
169
188
|
:'first_name' => :'FirstName',
|
170
189
|
:'last_name' => :'LastName',
|
190
|
+
:'company_number' => :'CompanyNumber',
|
171
191
|
:'email_address' => :'EmailAddress',
|
172
192
|
:'skype_user_name' => :'SkypeUserName',
|
173
193
|
:'contact_persons' => :'ContactPersons',
|
@@ -179,6 +199,8 @@ module XeroRuby::Accounting
|
|
179
199
|
:'phones' => :'Phones',
|
180
200
|
:'is_supplier' => :'IsSupplier',
|
181
201
|
:'is_customer' => :'IsCustomer',
|
202
|
+
:'sales_default_line_amount_type' => :'SalesDefaultLineAmountType',
|
203
|
+
:'purchases_default_line_amount_type' => :'PurchasesDefaultLineAmountType',
|
182
204
|
:'default_currency' => :'DefaultCurrency',
|
183
205
|
:'xero_network_key' => :'XeroNetworkKey',
|
184
206
|
:'sales_default_account_code' => :'SalesDefaultAccountCode',
|
@@ -207,12 +229,14 @@ module XeroRuby::Accounting
|
|
207
229
|
def self.openapi_types
|
208
230
|
{
|
209
231
|
:'contact_id' => :'String',
|
232
|
+
:'merged_to_contact_id' => :'String',
|
210
233
|
:'contact_number' => :'String',
|
211
234
|
:'account_number' => :'String',
|
212
235
|
:'contact_status' => :'String',
|
213
236
|
:'name' => :'String',
|
214
237
|
:'first_name' => :'String',
|
215
238
|
:'last_name' => :'String',
|
239
|
+
:'company_number' => :'String',
|
216
240
|
:'email_address' => :'String',
|
217
241
|
:'skype_user_name' => :'String',
|
218
242
|
:'contact_persons' => :'Array<ContactPerson>',
|
@@ -224,6 +248,8 @@ module XeroRuby::Accounting
|
|
224
248
|
:'phones' => :'Array<Phone>',
|
225
249
|
:'is_supplier' => :'Boolean',
|
226
250
|
:'is_customer' => :'Boolean',
|
251
|
+
:'sales_default_line_amount_type' => :'String',
|
252
|
+
:'purchases_default_line_amount_type' => :'String',
|
227
253
|
:'default_currency' => :'CurrencyCode',
|
228
254
|
:'xero_network_key' => :'String',
|
229
255
|
:'sales_default_account_code' => :'String',
|
@@ -267,6 +293,10 @@ module XeroRuby::Accounting
|
|
267
293
|
self.contact_id = attributes[:'contact_id']
|
268
294
|
end
|
269
295
|
|
296
|
+
if attributes.key?(:'merged_to_contact_id')
|
297
|
+
self.merged_to_contact_id = attributes[:'merged_to_contact_id']
|
298
|
+
end
|
299
|
+
|
270
300
|
if attributes.key?(:'contact_number')
|
271
301
|
self.contact_number = attributes[:'contact_number']
|
272
302
|
end
|
@@ -291,6 +321,10 @@ module XeroRuby::Accounting
|
|
291
321
|
self.last_name = attributes[:'last_name']
|
292
322
|
end
|
293
323
|
|
324
|
+
if attributes.key?(:'company_number')
|
325
|
+
self.company_number = attributes[:'company_number']
|
326
|
+
end
|
327
|
+
|
294
328
|
if attributes.key?(:'email_address')
|
295
329
|
self.email_address = attributes[:'email_address']
|
296
330
|
end
|
@@ -341,6 +375,14 @@ module XeroRuby::Accounting
|
|
341
375
|
self.is_customer = attributes[:'is_customer']
|
342
376
|
end
|
343
377
|
|
378
|
+
if attributes.key?(:'sales_default_line_amount_type')
|
379
|
+
self.sales_default_line_amount_type = attributes[:'sales_default_line_amount_type']
|
380
|
+
end
|
381
|
+
|
382
|
+
if attributes.key?(:'purchases_default_line_amount_type')
|
383
|
+
self.purchases_default_line_amount_type = attributes[:'purchases_default_line_amount_type']
|
384
|
+
end
|
385
|
+
|
344
386
|
if attributes.key?(:'default_currency')
|
345
387
|
self.default_currency = attributes[:'default_currency']
|
346
388
|
end
|
@@ -464,6 +506,10 @@ module XeroRuby::Accounting
|
|
464
506
|
invalid_properties.push('invalid value for "last_name", the character length must be smaller than or equal to 255.')
|
465
507
|
end
|
466
508
|
|
509
|
+
if !@company_number.nil? && @company_number.to_s.length > 50
|
510
|
+
invalid_properties.push('invalid value for "company_number", the character length must be smaller than or equal to 50.')
|
511
|
+
end
|
512
|
+
|
467
513
|
if !@email_address.nil? && @email_address.to_s.length > 255
|
468
514
|
invalid_properties.push('invalid value for "email_address", the character length must be smaller than or equal to 255.')
|
469
515
|
end
|
@@ -485,8 +531,13 @@ module XeroRuby::Accounting
|
|
485
531
|
return false if !@name.nil? && @name.to_s.length > 255
|
486
532
|
return false if !@first_name.nil? && @first_name.to_s.length > 255
|
487
533
|
return false if !@last_name.nil? && @last_name.to_s.length > 255
|
534
|
+
return false if !@company_number.nil? && @company_number.to_s.length > 50
|
488
535
|
return false if !@email_address.nil? && @email_address.to_s.length > 255
|
489
536
|
return false if !@tax_number.nil? && @tax_number.to_s.length > 50
|
537
|
+
sales_default_line_amount_type_validator = EnumAttributeValidator.new('String', ["INCLUSIVE", "EXCLUSIVE", "NONE"])
|
538
|
+
return false unless sales_default_line_amount_type_validator.valid?(@sales_default_line_amount_type)
|
539
|
+
purchases_default_line_amount_type_validator = EnumAttributeValidator.new('String', ["INCLUSIVE", "EXCLUSIVE", "NONE"])
|
540
|
+
return false unless purchases_default_line_amount_type_validator.valid?(@purchases_default_line_amount_type)
|
490
541
|
true
|
491
542
|
end
|
492
543
|
|
@@ -550,6 +601,16 @@ module XeroRuby::Accounting
|
|
550
601
|
@last_name = last_name
|
551
602
|
end
|
552
603
|
|
604
|
+
# Custom attribute writer method with validation
|
605
|
+
# @param [Object] company_number Value to be assigned
|
606
|
+
def company_number=(company_number)
|
607
|
+
if !company_number.nil? && company_number.to_s.length > 50
|
608
|
+
fail ArgumentError, 'invalid value for "company_number", the character length must be smaller than or equal to 50.'
|
609
|
+
end
|
610
|
+
|
611
|
+
@company_number = company_number
|
612
|
+
end
|
613
|
+
|
553
614
|
# Custom attribute writer method with validation
|
554
615
|
# @param [Object] email_address Value to be assigned
|
555
616
|
def email_address=(email_address)
|
@@ -570,18 +631,40 @@ module XeroRuby::Accounting
|
|
570
631
|
@tax_number = tax_number
|
571
632
|
end
|
572
633
|
|
634
|
+
# Custom attribute writer method checking allowed values (enum).
|
635
|
+
# @param [Object] sales_default_line_amount_type Object to be assigned
|
636
|
+
def sales_default_line_amount_type=(sales_default_line_amount_type)
|
637
|
+
validator = EnumAttributeValidator.new('String', ["INCLUSIVE", "EXCLUSIVE", "NONE"])
|
638
|
+
unless validator.valid?(sales_default_line_amount_type)
|
639
|
+
fail ArgumentError, "invalid value for \"sales_default_line_amount_type\", must be one of #{validator.allowable_values}."
|
640
|
+
end
|
641
|
+
@sales_default_line_amount_type = sales_default_line_amount_type
|
642
|
+
end
|
643
|
+
|
644
|
+
# Custom attribute writer method checking allowed values (enum).
|
645
|
+
# @param [Object] purchases_default_line_amount_type Object to be assigned
|
646
|
+
def purchases_default_line_amount_type=(purchases_default_line_amount_type)
|
647
|
+
validator = EnumAttributeValidator.new('String', ["INCLUSIVE", "EXCLUSIVE", "NONE"])
|
648
|
+
unless validator.valid?(purchases_default_line_amount_type)
|
649
|
+
fail ArgumentError, "invalid value for \"purchases_default_line_amount_type\", must be one of #{validator.allowable_values}."
|
650
|
+
end
|
651
|
+
@purchases_default_line_amount_type = purchases_default_line_amount_type
|
652
|
+
end
|
653
|
+
|
573
654
|
# Checks equality by comparing each attribute.
|
574
655
|
# @param [Object] Object to be compared
|
575
656
|
def ==(o)
|
576
657
|
return true if self.equal?(o)
|
577
658
|
self.class == o.class &&
|
578
659
|
contact_id == o.contact_id &&
|
660
|
+
merged_to_contact_id == o.merged_to_contact_id &&
|
579
661
|
contact_number == o.contact_number &&
|
580
662
|
account_number == o.account_number &&
|
581
663
|
contact_status == o.contact_status &&
|
582
664
|
name == o.name &&
|
583
665
|
first_name == o.first_name &&
|
584
666
|
last_name == o.last_name &&
|
667
|
+
company_number == o.company_number &&
|
585
668
|
email_address == o.email_address &&
|
586
669
|
skype_user_name == o.skype_user_name &&
|
587
670
|
contact_persons == o.contact_persons &&
|
@@ -593,6 +676,8 @@ module XeroRuby::Accounting
|
|
593
676
|
phones == o.phones &&
|
594
677
|
is_supplier == o.is_supplier &&
|
595
678
|
is_customer == o.is_customer &&
|
679
|
+
sales_default_line_amount_type == o.sales_default_line_amount_type &&
|
680
|
+
purchases_default_line_amount_type == o.purchases_default_line_amount_type &&
|
596
681
|
default_currency == o.default_currency &&
|
597
682
|
xero_network_key == o.xero_network_key &&
|
598
683
|
sales_default_account_code == o.sales_default_account_code &&
|
@@ -625,7 +710,7 @@ module XeroRuby::Accounting
|
|
625
710
|
# Calculates hash code according to all attributes.
|
626
711
|
# @return [Integer] Hash code
|
627
712
|
def hash
|
628
|
-
[contact_id, contact_number, account_number, contact_status, name, first_name, last_name, email_address, skype_user_name, contact_persons, bank_account_details, tax_number, accounts_receivable_tax_type, accounts_payable_tax_type, addresses, phones, is_supplier, is_customer, default_currency, xero_network_key, sales_default_account_code, purchases_default_account_code, sales_tracking_categories, purchases_tracking_categories, tracking_category_name, tracking_category_option, payment_terms, updated_date_utc, contact_groups, website, branding_theme, batch_payments, discount, balances, attachments, has_attachments, validation_errors, has_validation_errors, status_attribute_string].hash
|
713
|
+
[contact_id, merged_to_contact_id, contact_number, account_number, contact_status, name, first_name, last_name, company_number, email_address, skype_user_name, contact_persons, bank_account_details, tax_number, accounts_receivable_tax_type, accounts_payable_tax_type, addresses, phones, is_supplier, is_customer, sales_default_line_amount_type, purchases_default_line_amount_type, default_currency, xero_network_key, sales_default_account_code, purchases_default_account_code, sales_tracking_categories, purchases_tracking_categories, tracking_category_name, tracking_category_option, payment_terms, updated_date_utc, contact_groups, website, branding_theme, batch_payments, discount, balances, attachments, has_attachments, validation_errors, has_validation_errors, status_attribute_string].hash
|
629
714
|
end
|
630
715
|
|
631
716
|
# Builds the object from hash
|
@@ -0,0 +1,342 @@
|
|
1
|
+
=begin
|
2
|
+
#Xero Finance API
|
3
|
+
|
4
|
+
#The Finance API is a collection of endpoints which customers can use in the course of a loan application, which may assist lenders to gain the confidence they need to provide capital.
|
5
|
+
|
6
|
+
Contact: api@xero.com
|
7
|
+
Generated by: https://openapi-generator.tech
|
8
|
+
OpenAPI Generator version: 4.3.1
|
9
|
+
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'time'
|
13
|
+
require 'date'
|
14
|
+
|
15
|
+
module XeroRuby::Finance
|
16
|
+
require 'bigdecimal'
|
17
|
+
|
18
|
+
class AccountUsage
|
19
|
+
# The month this usage item contains data for
|
20
|
+
attr_accessor :month
|
21
|
+
|
22
|
+
# The account this usage item contains data for
|
23
|
+
attr_accessor :account_id
|
24
|
+
|
25
|
+
# The currency code this usage item contains data for
|
26
|
+
attr_accessor :currency_code
|
27
|
+
|
28
|
+
# Total received
|
29
|
+
attr_accessor :total_received
|
30
|
+
|
31
|
+
# Count of received
|
32
|
+
attr_accessor :count_received
|
33
|
+
|
34
|
+
# Total paid
|
35
|
+
attr_accessor :total_paid
|
36
|
+
|
37
|
+
# Count of paid
|
38
|
+
attr_accessor :count_paid
|
39
|
+
|
40
|
+
# Total value of manual journals
|
41
|
+
attr_accessor :total_manual_journal
|
42
|
+
|
43
|
+
# Count of manual journals
|
44
|
+
attr_accessor :count_manual_journal
|
45
|
+
|
46
|
+
# The name of the account
|
47
|
+
attr_accessor :account_name
|
48
|
+
|
49
|
+
# Shown if set
|
50
|
+
attr_accessor :reporting_code
|
51
|
+
|
52
|
+
# Shown if set
|
53
|
+
attr_accessor :reporting_code_name
|
54
|
+
|
55
|
+
# Last modified date UTC format
|
56
|
+
attr_accessor :report_code_updated_date_utc
|
57
|
+
|
58
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
59
|
+
def self.attribute_map
|
60
|
+
{
|
61
|
+
:'month' => :'month',
|
62
|
+
:'account_id' => :'accountId',
|
63
|
+
:'currency_code' => :'currencyCode',
|
64
|
+
:'total_received' => :'totalReceived',
|
65
|
+
:'count_received' => :'countReceived',
|
66
|
+
:'total_paid' => :'totalPaid',
|
67
|
+
:'count_paid' => :'countPaid',
|
68
|
+
:'total_manual_journal' => :'totalManualJournal',
|
69
|
+
:'count_manual_journal' => :'countManualJournal',
|
70
|
+
:'account_name' => :'accountName',
|
71
|
+
:'reporting_code' => :'reportingCode',
|
72
|
+
:'reporting_code_name' => :'reportingCodeName',
|
73
|
+
:'report_code_updated_date_utc' => :'reportCodeUpdatedDateUtc'
|
74
|
+
}
|
75
|
+
end
|
76
|
+
|
77
|
+
# Attribute type mapping.
|
78
|
+
def self.openapi_types
|
79
|
+
{
|
80
|
+
:'month' => :'String',
|
81
|
+
:'account_id' => :'String',
|
82
|
+
:'currency_code' => :'String',
|
83
|
+
:'total_received' => :'BigDecimal',
|
84
|
+
:'count_received' => :'Integer',
|
85
|
+
:'total_paid' => :'BigDecimal',
|
86
|
+
:'count_paid' => :'Integer',
|
87
|
+
:'total_manual_journal' => :'BigDecimal',
|
88
|
+
:'count_manual_journal' => :'Integer',
|
89
|
+
:'account_name' => :'String',
|
90
|
+
:'reporting_code' => :'String',
|
91
|
+
:'reporting_code_name' => :'String',
|
92
|
+
:'report_code_updated_date_utc' => :'DateTime'
|
93
|
+
}
|
94
|
+
end
|
95
|
+
|
96
|
+
# Initializes the object
|
97
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
98
|
+
def initialize(attributes = {})
|
99
|
+
if (!attributes.is_a?(Hash))
|
100
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `XeroRuby::Finance::AccountUsage` initialize method"
|
101
|
+
end
|
102
|
+
|
103
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
104
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
105
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
106
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `XeroRuby::Finance::AccountUsage`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
107
|
+
end
|
108
|
+
h[k.to_sym] = v
|
109
|
+
}
|
110
|
+
|
111
|
+
if attributes.key?(:'month')
|
112
|
+
self.month = attributes[:'month']
|
113
|
+
end
|
114
|
+
|
115
|
+
if attributes.key?(:'account_id')
|
116
|
+
self.account_id = attributes[:'account_id']
|
117
|
+
end
|
118
|
+
|
119
|
+
if attributes.key?(:'currency_code')
|
120
|
+
self.currency_code = attributes[:'currency_code']
|
121
|
+
end
|
122
|
+
|
123
|
+
if attributes.key?(:'total_received')
|
124
|
+
self.total_received = attributes[:'total_received']
|
125
|
+
end
|
126
|
+
|
127
|
+
if attributes.key?(:'count_received')
|
128
|
+
self.count_received = attributes[:'count_received']
|
129
|
+
end
|
130
|
+
|
131
|
+
if attributes.key?(:'total_paid')
|
132
|
+
self.total_paid = attributes[:'total_paid']
|
133
|
+
end
|
134
|
+
|
135
|
+
if attributes.key?(:'count_paid')
|
136
|
+
self.count_paid = attributes[:'count_paid']
|
137
|
+
end
|
138
|
+
|
139
|
+
if attributes.key?(:'total_manual_journal')
|
140
|
+
self.total_manual_journal = attributes[:'total_manual_journal']
|
141
|
+
end
|
142
|
+
|
143
|
+
if attributes.key?(:'count_manual_journal')
|
144
|
+
self.count_manual_journal = attributes[:'count_manual_journal']
|
145
|
+
end
|
146
|
+
|
147
|
+
if attributes.key?(:'account_name')
|
148
|
+
self.account_name = attributes[:'account_name']
|
149
|
+
end
|
150
|
+
|
151
|
+
if attributes.key?(:'reporting_code')
|
152
|
+
self.reporting_code = attributes[:'reporting_code']
|
153
|
+
end
|
154
|
+
|
155
|
+
if attributes.key?(:'reporting_code_name')
|
156
|
+
self.reporting_code_name = attributes[:'reporting_code_name']
|
157
|
+
end
|
158
|
+
|
159
|
+
if attributes.key?(:'report_code_updated_date_utc')
|
160
|
+
self.report_code_updated_date_utc = attributes[:'report_code_updated_date_utc']
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
165
|
+
# @return Array for valid properties with the reasons
|
166
|
+
def list_invalid_properties
|
167
|
+
invalid_properties = Array.new
|
168
|
+
invalid_properties
|
169
|
+
end
|
170
|
+
|
171
|
+
# Check to see if the all the properties in the model are valid
|
172
|
+
# @return true if the model is valid
|
173
|
+
def valid?
|
174
|
+
true
|
175
|
+
end
|
176
|
+
|
177
|
+
# Checks equality by comparing each attribute.
|
178
|
+
# @param [Object] Object to be compared
|
179
|
+
def ==(o)
|
180
|
+
return true if self.equal?(o)
|
181
|
+
self.class == o.class &&
|
182
|
+
month == o.month &&
|
183
|
+
account_id == o.account_id &&
|
184
|
+
currency_code == o.currency_code &&
|
185
|
+
total_received == o.total_received &&
|
186
|
+
count_received == o.count_received &&
|
187
|
+
total_paid == o.total_paid &&
|
188
|
+
count_paid == o.count_paid &&
|
189
|
+
total_manual_journal == o.total_manual_journal &&
|
190
|
+
count_manual_journal == o.count_manual_journal &&
|
191
|
+
account_name == o.account_name &&
|
192
|
+
reporting_code == o.reporting_code &&
|
193
|
+
reporting_code_name == o.reporting_code_name &&
|
194
|
+
report_code_updated_date_utc == o.report_code_updated_date_utc
|
195
|
+
end
|
196
|
+
|
197
|
+
# @see the `==` method
|
198
|
+
# @param [Object] Object to be compared
|
199
|
+
def eql?(o)
|
200
|
+
self == o
|
201
|
+
end
|
202
|
+
|
203
|
+
# Calculates hash code according to all attributes.
|
204
|
+
# @return [Integer] Hash code
|
205
|
+
def hash
|
206
|
+
[month, account_id, currency_code, total_received, count_received, total_paid, count_paid, total_manual_journal, count_manual_journal, account_name, reporting_code, reporting_code_name, report_code_updated_date_utc].hash
|
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 self.build_from_hash(attributes)
|
213
|
+
new.build_from_hash(attributes)
|
214
|
+
end
|
215
|
+
|
216
|
+
# Builds the object from hash
|
217
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
218
|
+
# @return [Object] Returns the model itself
|
219
|
+
def build_from_hash(attributes)
|
220
|
+
return nil unless attributes.is_a?(Hash)
|
221
|
+
self.class.openapi_types.each_pair do |key, type|
|
222
|
+
if type =~ /\AArray<(.*)>/i
|
223
|
+
# check to ensure the input is an array given that the attribute
|
224
|
+
# is documented as an array but the input is not
|
225
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
226
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
227
|
+
end
|
228
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
229
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
230
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
231
|
+
end
|
232
|
+
|
233
|
+
self
|
234
|
+
end
|
235
|
+
|
236
|
+
# Deserializes the data based on type
|
237
|
+
# @param string type Data type
|
238
|
+
# @param string value Value to be deserialized
|
239
|
+
# @return [Object] Deserialized data
|
240
|
+
def _deserialize(type, value)
|
241
|
+
case type.to_sym
|
242
|
+
when :DateTime
|
243
|
+
DateTime.parse(parse_date(value))
|
244
|
+
when :Date
|
245
|
+
Date.parse(parse_date(value))
|
246
|
+
when :String
|
247
|
+
value.to_s
|
248
|
+
when :Integer
|
249
|
+
value.to_i
|
250
|
+
when :Float
|
251
|
+
value.to_f
|
252
|
+
when :BigDecimal
|
253
|
+
BigDecimal(value.to_s)
|
254
|
+
when :Boolean
|
255
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
256
|
+
true
|
257
|
+
else
|
258
|
+
false
|
259
|
+
end
|
260
|
+
when :Object
|
261
|
+
# generic object (usually a Hash), return directly
|
262
|
+
value
|
263
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
264
|
+
inner_type = Regexp.last_match[:inner_type]
|
265
|
+
value.map { |v| _deserialize(inner_type, v) }
|
266
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
267
|
+
k_type = Regexp.last_match[:k_type]
|
268
|
+
v_type = Regexp.last_match[:v_type]
|
269
|
+
{}.tap do |hash|
|
270
|
+
value.each do |k, v|
|
271
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
272
|
+
end
|
273
|
+
end
|
274
|
+
else # model
|
275
|
+
XeroRuby::Finance.const_get(type).build_from_hash(value)
|
276
|
+
end
|
277
|
+
end
|
278
|
+
|
279
|
+
# Returns the string representation of the object
|
280
|
+
# @return [String] String presentation of the object
|
281
|
+
def to_s
|
282
|
+
to_hash.to_s
|
283
|
+
end
|
284
|
+
|
285
|
+
# to_body is an alias to to_hash (backward compatibility)
|
286
|
+
# @return [Hash] Returns the object in the form of hash
|
287
|
+
def to_body
|
288
|
+
to_hash
|
289
|
+
end
|
290
|
+
|
291
|
+
# Returns the object in the form of hash
|
292
|
+
# @return [Hash] Returns the object in the form of hash
|
293
|
+
def to_hash(downcase: false)
|
294
|
+
hash = {}
|
295
|
+
self.class.attribute_map.each_pair do |attr, param|
|
296
|
+
value = self.send(attr)
|
297
|
+
next if value.nil?
|
298
|
+
key = downcase ? attr : param
|
299
|
+
hash[key] = _to_hash(value, downcase: downcase)
|
300
|
+
end
|
301
|
+
hash
|
302
|
+
end
|
303
|
+
|
304
|
+
# Returns the object in the form of hash with snake_case
|
305
|
+
def to_attributes
|
306
|
+
to_hash(downcase: true)
|
307
|
+
end
|
308
|
+
|
309
|
+
# Outputs non-array value in the form of hash
|
310
|
+
# For object, use to_hash. Otherwise, just return the value
|
311
|
+
# @param [Object] value Any valid value
|
312
|
+
# @return [Hash] Returns the value in the form of hash
|
313
|
+
def _to_hash(value, downcase: false)
|
314
|
+
if value.is_a?(Array)
|
315
|
+
value.map do |v|
|
316
|
+
v.to_hash(downcase: downcase)
|
317
|
+
end
|
318
|
+
elsif value.is_a?(Hash)
|
319
|
+
{}.tap do |hash|
|
320
|
+
value.map { |k, v| hash[k] = _to_hash(v, downcase: downcase) }
|
321
|
+
end
|
322
|
+
elsif value.respond_to? :to_hash
|
323
|
+
value.to_hash(downcase: downcase)
|
324
|
+
else
|
325
|
+
value
|
326
|
+
end
|
327
|
+
end
|
328
|
+
|
329
|
+
def parse_date(datestring)
|
330
|
+
if datestring.include?('Date')
|
331
|
+
date_pattern = /\/Date\((-?\d+)(\+\d+)?\)\//
|
332
|
+
original, date, timezone = *date_pattern.match(datestring)
|
333
|
+
date = (date.to_i / 1000)
|
334
|
+
Time.at(date).utc.strftime('%Y-%m-%dT%H:%M:%S%z').to_s
|
335
|
+
elsif /(\d\d\d\d)-(\d\d)/.match(datestring) # handles dates w/out Days: YYYY-MM*-DD
|
336
|
+
Time.parse(datestring + '-01').strftime('%Y-%m-%dT%H:%M:%S').to_s
|
337
|
+
else # handle date 'types' for small subset of payroll API's
|
338
|
+
Time.parse(datestring).strftime('%Y-%m-%dT%H:%M:%S').to_s
|
339
|
+
end
|
340
|
+
end
|
341
|
+
end
|
342
|
+
end
|