xero-ruby 1.0 → 2.0.3
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/README.md +43 -3
- data/build_notes.md +21 -0
- data/docs/accounting/AccountingApi.md +1514 -722
- data/docs/accounting/Allocation.md +11 -1
- data/docs/accounting/BankTransfer.md +1 -1
- data/docs/accounting/BatchPayment.md +1 -1
- data/docs/accounting/Contact.md +2 -2
- data/docs/accounting/CreditNote.md +2 -2
- data/docs/accounting/Invoice.md +2 -2
- data/docs/accounting/Journal.md +1 -1
- data/docs/accounting/ManualJournalLine.md +2 -0
- data/docs/accounting/Organisation.md +3 -1
- data/docs/accounting/Payment.md +6 -4
- data/docs/accounting/Quote.md +5 -1
- data/docs/accounting/Report.md +1 -1
- data/docs/accounting/{TenNinteyNineContact.md → TenNinetyNineContact.md} +2 -2
- data/docs/assets/AssetApi.md +40 -16
- data/docs/assets/AssetType.md +1 -1
- data/docs/projects/Amount.md +19 -0
- data/docs/projects/ChargeType.md +16 -0
- data/docs/projects/CurrencyCode.md +16 -0
- data/docs/projects/Error.md +19 -0
- data/docs/projects/Pagination.md +23 -0
- data/docs/projects/Project.md +59 -0
- data/docs/projects/ProjectApi.md +979 -0
- data/docs/projects/ProjectCreateOrUpdate.md +23 -0
- data/docs/projects/ProjectPatch.md +17 -0
- data/docs/projects/ProjectStatus.md +16 -0
- data/docs/projects/ProjectUser.md +21 -0
- data/docs/projects/ProjectUsers.md +19 -0
- data/docs/projects/Projects.md +19 -0
- data/docs/projects/Task.md +45 -0
- data/docs/projects/TaskCreateOrUpdate.md +23 -0
- data/docs/projects/Tasks.md +19 -0
- data/docs/projects/TimeEntries.md +19 -0
- data/docs/projects/TimeEntry.md +33 -0
- data/docs/projects/TimeEntryCreateOrUpdate.md +25 -0
- data/lib/xero-ruby.rb +22 -3
- data/lib/xero-ruby/api/accounting_api.rb +85 -9
- data/lib/xero-ruby/api/asset_api.rb +3 -3
- data/lib/xero-ruby/api/project_api.rb +1035 -0
- data/lib/xero-ruby/api_client.rb +103 -37
- data/lib/xero-ruby/api_error.rb +2 -2
- data/lib/xero-ruby/configuration.rb +4 -5
- data/lib/xero-ruby/models/accounting/account.rb +61 -20
- data/lib/xero-ruby/models/accounting/account_type.rb +2 -2
- data/lib/xero-ruby/models/accounting/accounts.rb +8 -3
- data/lib/xero-ruby/models/accounting/accounts_payable.rb +11 -5
- data/lib/xero-ruby/models/accounting/accounts_receivable.rb +11 -5
- data/lib/xero-ruby/models/accounting/address.rb +19 -12
- data/lib/xero-ruby/models/accounting/allocation.rb +66 -9
- data/lib/xero-ruby/models/accounting/allocations.rb +8 -3
- data/lib/xero-ruby/models/accounting/attachment.rb +12 -8
- data/lib/xero-ruby/models/accounting/attachments.rb +8 -3
- data/lib/xero-ruby/models/accounting/balances.rb +9 -3
- data/lib/xero-ruby/models/accounting/bank_transaction.rb +43 -24
- data/lib/xero-ruby/models/accounting/bank_transactions.rb +8 -3
- data/lib/xero-ruby/models/accounting/bank_transfer.rb +20 -14
- data/lib/xero-ruby/models/accounting/bank_transfers.rb +8 -3
- data/lib/xero-ruby/models/accounting/batch_payment.rb +29 -19
- data/lib/xero-ruby/models/accounting/batch_payment_details.rb +11 -7
- data/lib/xero-ruby/models/accounting/batch_payments.rb +8 -3
- data/lib/xero-ruby/models/accounting/bill.rb +8 -3
- data/lib/xero-ruby/models/accounting/branding_theme.rb +13 -8
- data/lib/xero-ruby/models/accounting/branding_themes.rb +8 -3
- data/lib/xero-ruby/models/accounting/cis_org_setting.rb +9 -5
- data/lib/xero-ruby/models/accounting/cis_setting.rb +8 -4
- data/lib/xero-ruby/models/accounting/cis_settings.rb +8 -3
- data/lib/xero-ruby/models/accounting/contact.rb +51 -37
- data/lib/xero-ruby/models/accounting/contact_group.rb +12 -6
- data/lib/xero-ruby/models/accounting/contact_groups.rb +8 -3
- data/lib/xero-ruby/models/accounting/contact_person.rb +10 -6
- data/lib/xero-ruby/models/accounting/contacts.rb +8 -3
- data/lib/xero-ruby/models/accounting/country_code.rb +2 -2
- data/lib/xero-ruby/models/accounting/credit_note.rb +47 -30
- data/lib/xero-ruby/models/accounting/credit_notes.rb +8 -3
- data/lib/xero-ruby/models/accounting/currencies.rb +8 -3
- data/lib/xero-ruby/models/accounting/currency.rb +9 -4
- data/lib/xero-ruby/models/accounting/currency_code.rb +4 -4
- data/lib/xero-ruby/models/accounting/element.rb +14 -4
- data/lib/xero-ruby/models/accounting/employee.rb +17 -8
- data/lib/xero-ruby/models/accounting/employees.rb +8 -3
- data/lib/xero-ruby/models/accounting/error.rb +10 -6
- data/lib/xero-ruby/models/accounting/expense_claim.rb +26 -15
- data/lib/xero-ruby/models/accounting/expense_claims.rb +8 -3
- data/lib/xero-ruby/models/accounting/external_link.rb +14 -4
- data/lib/xero-ruby/models/accounting/history_record.rb +10 -6
- data/lib/xero-ruby/models/accounting/history_records.rb +8 -3
- data/lib/xero-ruby/models/accounting/invoice.rb +69 -46
- data/lib/xero-ruby/models/accounting/invoice_reminder.rb +7 -3
- data/lib/xero-ruby/models/accounting/invoice_reminders.rb +8 -3
- data/lib/xero-ruby/models/accounting/invoices.rb +8 -3
- data/lib/xero-ruby/models/accounting/item.rb +24 -18
- data/lib/xero-ruby/models/accounting/items.rb +8 -3
- data/lib/xero-ruby/models/accounting/journal.rb +40 -11
- data/lib/xero-ruby/models/accounting/journal_line.rb +21 -16
- data/lib/xero-ruby/models/accounting/journals.rb +8 -3
- data/lib/xero-ruby/models/accounting/line_amount_types.rb +2 -2
- data/lib/xero-ruby/models/accounting/line_item.rb +25 -21
- data/lib/xero-ruby/models/accounting/line_item_tracking.rb +10 -6
- data/lib/xero-ruby/models/accounting/linked_transaction.rb +25 -13
- data/lib/xero-ruby/models/accounting/linked_transactions.rb +8 -3
- data/lib/xero-ruby/models/accounting/manual_journal.rb +25 -15
- data/lib/xero-ruby/models/accounting/manual_journal_line.rb +26 -12
- data/lib/xero-ruby/models/accounting/manual_journals.rb +8 -3
- data/lib/xero-ruby/models/accounting/online_invoice.rb +7 -3
- data/lib/xero-ruby/models/accounting/online_invoices.rb +8 -3
- data/lib/xero-ruby/models/accounting/organisation.rb +122 -32
- data/lib/xero-ruby/models/accounting/organisations.rb +8 -3
- data/lib/xero-ruby/models/accounting/overpayment.rb +36 -23
- data/lib/xero-ruby/models/accounting/overpayments.rb +8 -3
- data/lib/xero-ruby/models/accounting/payment.rb +57 -24
- data/lib/xero-ruby/models/accounting/payment_delete.rb +7 -3
- data/lib/xero-ruby/models/accounting/payment_service.rb +12 -8
- data/lib/xero-ruby/models/accounting/payment_services.rb +8 -3
- data/lib/xero-ruby/models/accounting/payment_term.rb +9 -3
- data/lib/xero-ruby/models/accounting/payment_term_type.rb +2 -2
- data/lib/xero-ruby/models/accounting/payments.rb +8 -3
- data/lib/xero-ruby/models/accounting/phone.rb +16 -6
- data/lib/xero-ruby/models/accounting/prepayment.rb +37 -23
- data/lib/xero-ruby/models/accounting/prepayments.rb +8 -3
- data/lib/xero-ruby/models/accounting/purchase.rb +11 -7
- data/lib/xero-ruby/models/accounting/purchase_order.rb +45 -33
- data/lib/xero-ruby/models/accounting/purchase_orders.rb +8 -3
- data/lib/xero-ruby/models/accounting/quote.rb +58 -28
- data/lib/xero-ruby/models/accounting/quote_line_amount_types.rb +2 -2
- data/lib/xero-ruby/models/accounting/quote_status_codes.rb +3 -2
- data/lib/xero-ruby/models/accounting/quotes.rb +8 -3
- data/lib/xero-ruby/models/accounting/receipt.rb +32 -19
- data/lib/xero-ruby/models/accounting/receipts.rb +8 -3
- data/lib/xero-ruby/models/accounting/repeating_invoice.rb +30 -17
- data/lib/xero-ruby/models/accounting/repeating_invoices.rb +8 -3
- data/lib/xero-ruby/models/accounting/report.rb +15 -9
- data/lib/xero-ruby/models/accounting/report_attribute.rb +9 -3
- data/lib/xero-ruby/models/accounting/report_cell.rb +9 -3
- data/lib/xero-ruby/models/accounting/report_fields.rb +10 -3
- data/lib/xero-ruby/models/accounting/report_row.rb +10 -3
- data/lib/xero-ruby/models/accounting/report_rows.rb +11 -3
- data/lib/xero-ruby/models/accounting/report_with_row.rb +15 -9
- data/lib/xero-ruby/models/accounting/report_with_rows.rb +8 -3
- data/lib/xero-ruby/models/accounting/reports.rb +8 -3
- data/lib/xero-ruby/models/accounting/request_empty.rb +7 -3
- data/lib/xero-ruby/models/accounting/row_type.rb +2 -2
- data/lib/xero-ruby/models/accounting/sales_tracking_category.rb +8 -4
- data/lib/xero-ruby/models/accounting/schedule.rb +23 -11
- data/lib/xero-ruby/models/accounting/tax_component.rb +11 -7
- data/lib/xero-ruby/models/accounting/tax_rate.rb +100 -18
- data/lib/xero-ruby/models/accounting/tax_rates.rb +8 -3
- data/lib/xero-ruby/models/accounting/tax_type.rb +6 -2
- data/lib/xero-ruby/models/accounting/{ten_nintey_nine_contact.rb → ten_ninety_nine_contact.rb} +44 -40
- data/lib/xero-ruby/models/accounting/time_zone.rb +2 -2
- data/lib/xero-ruby/models/accounting/tracking_categories.rb +8 -3
- data/lib/xero-ruby/models/accounting/tracking_category.rb +15 -8
- data/lib/xero-ruby/models/accounting/tracking_option.rb +13 -6
- data/lib/xero-ruby/models/accounting/tracking_options.rb +8 -3
- data/lib/xero-ruby/models/accounting/user.rb +20 -9
- data/lib/xero-ruby/models/accounting/users.rb +8 -3
- data/lib/xero-ruby/models/accounting/validation_error.rb +7 -3
- data/lib/xero-ruby/models/assets/asset.rb +24 -17
- data/lib/xero-ruby/models/assets/asset_status.rb +2 -2
- data/lib/xero-ruby/models/assets/asset_status_query_param.rb +2 -2
- data/lib/xero-ruby/models/assets/asset_type.rb +13 -13
- data/lib/xero-ruby/models/assets/assets.rb +9 -3
- data/lib/xero-ruby/models/assets/book_depreciation_detail.rb +19 -15
- data/lib/xero-ruby/models/assets/book_depreciation_setting.rb +26 -11
- data/lib/xero-ruby/models/assets/error.rb +11 -7
- data/lib/xero-ruby/models/assets/field_validation_errors_element.rb +12 -8
- data/lib/xero-ruby/models/assets/pagination.rb +11 -3
- data/lib/xero-ruby/models/assets/resource_validation_errors_element.rb +11 -7
- data/lib/xero-ruby/models/assets/setting.rb +14 -10
- data/lib/xero-ruby/models/projects/amount.rb +218 -0
- data/lib/xero-ruby/models/projects/charge_type.rb +38 -0
- data/lib/xero-ruby/models/projects/currency_code.rb +199 -0
- data/lib/xero-ruby/models/projects/error.rb +218 -0
- data/lib/xero-ruby/models/projects/pagination.rb +238 -0
- data/lib/xero-ruby/models/projects/project.rb +423 -0
- data/lib/xero-ruby/models/projects/project_create_or_update.rb +243 -0
- data/lib/xero-ruby/models/projects/project_patch.rb +213 -0
- data/lib/xero-ruby/models/projects/project_status.rb +37 -0
- data/lib/xero-ruby/models/projects/project_user.rb +228 -0
- data/lib/xero-ruby/models/projects/project_users.rb +220 -0
- data/lib/xero-ruby/models/projects/projects.rb +220 -0
- data/lib/xero-ruby/models/projects/task.rb +385 -0
- data/lib/xero-ruby/models/projects/task_create_or_update.rb +253 -0
- data/lib/xero-ruby/models/projects/tasks.rb +220 -0
- data/lib/xero-ruby/models/projects/time_entries.rb +220 -0
- data/lib/xero-ruby/models/projects/time_entry.rb +324 -0
- data/lib/xero-ruby/models/projects/time_entry_create_or_update.rb +268 -0
- data/lib/xero-ruby/version.rb +3 -3
- data/spec/accounting/api/accounting_api_spec.rb +19 -6
- data/spec/accounting/models/account_spec.rb +1 -1
- data/spec/accounting/models/account_type_spec.rb +1 -1
- data/spec/accounting/models/accounts_payable_spec.rb +1 -1
- data/spec/accounting/models/accounts_receivable_spec.rb +1 -1
- data/spec/accounting/models/accounts_spec.rb +1 -1
- data/spec/accounting/models/address_spec.rb +1 -1
- data/spec/accounting/models/allocation_spec.rb +1 -1
- data/spec/accounting/models/allocations_spec.rb +1 -1
- data/spec/accounting/models/attachment_spec.rb +1 -1
- data/spec/accounting/models/attachments_spec.rb +1 -1
- data/spec/accounting/models/balances_spec.rb +1 -1
- data/spec/accounting/models/bank_transaction_spec.rb +1 -1
- data/spec/accounting/models/bank_transactions_spec.rb +1 -1
- data/spec/accounting/models/bank_transfer_spec.rb +1 -1
- data/spec/accounting/models/bank_transfers_spec.rb +1 -1
- data/spec/accounting/models/batch_payment_details_spec.rb +1 -1
- data/spec/accounting/models/batch_payment_spec.rb +1 -1
- data/spec/accounting/models/batch_payments_spec.rb +1 -1
- data/spec/accounting/models/bill_spec.rb +1 -1
- data/spec/accounting/models/branding_theme_spec.rb +1 -1
- data/spec/accounting/models/branding_themes_spec.rb +1 -1
- data/spec/accounting/models/cis_org_setting_spec.rb +1 -1
- data/spec/accounting/models/cis_setting_spec.rb +1 -1
- data/spec/accounting/models/cis_settings_spec.rb +1 -1
- data/spec/accounting/models/contact_group_spec.rb +1 -1
- data/spec/accounting/models/contact_groups_spec.rb +1 -1
- data/spec/accounting/models/contact_person_spec.rb +1 -1
- data/spec/accounting/models/contact_spec.rb +1 -1
- data/spec/accounting/models/contacts_spec.rb +1 -1
- data/spec/accounting/models/country_code_spec.rb +1 -1
- data/spec/accounting/models/credit_note_spec.rb +1 -1
- data/spec/accounting/models/credit_notes_spec.rb +1 -1
- data/spec/accounting/models/currencies_spec.rb +1 -1
- data/spec/accounting/models/currency_code_spec.rb +1 -1
- data/spec/accounting/models/currency_spec.rb +1 -1
- data/spec/accounting/models/element_spec.rb +1 -1
- data/spec/accounting/models/employee_spec.rb +1 -1
- data/spec/accounting/models/employees_spec.rb +1 -1
- data/spec/accounting/models/error_spec.rb +1 -1
- data/spec/accounting/models/expense_claim_spec.rb +1 -1
- data/spec/accounting/models/expense_claims_spec.rb +1 -1
- data/spec/accounting/models/external_link_spec.rb +1 -1
- data/spec/accounting/models/history_record_spec.rb +1 -1
- data/spec/accounting/models/history_records_spec.rb +1 -1
- data/spec/accounting/models/invoice_reminder_spec.rb +1 -1
- data/spec/accounting/models/invoice_reminders_spec.rb +1 -1
- data/spec/accounting/models/invoice_spec.rb +1 -1
- data/spec/accounting/models/invoices_spec.rb +1 -1
- data/spec/accounting/models/item_spec.rb +1 -1
- data/spec/accounting/models/items_spec.rb +1 -1
- data/spec/accounting/models/journal_line_spec.rb +1 -1
- data/spec/accounting/models/journal_spec.rb +1 -1
- data/spec/accounting/models/journals_spec.rb +1 -1
- data/spec/accounting/models/line_amount_types_spec.rb +1 -1
- data/spec/accounting/models/line_item_spec.rb +1 -1
- data/spec/accounting/models/line_item_tracking_spec.rb +1 -1
- data/spec/accounting/models/linked_transaction_spec.rb +1 -1
- data/spec/accounting/models/linked_transactions_spec.rb +1 -1
- data/spec/accounting/models/manual_journal_line_spec.rb +1 -1
- data/spec/accounting/models/manual_journal_spec.rb +1 -1
- data/spec/accounting/models/manual_journals_spec.rb +1 -1
- data/spec/accounting/models/online_invoice_spec.rb +1 -1
- data/spec/accounting/models/online_invoices_spec.rb +1 -1
- data/spec/accounting/models/organisation_spec.rb +1 -1
- data/spec/accounting/models/organisations_spec.rb +1 -1
- data/spec/accounting/models/overpayment_spec.rb +1 -1
- data/spec/accounting/models/overpayments_spec.rb +1 -1
- data/spec/accounting/models/payment_delete_spec.rb +1 -1
- data/spec/accounting/models/payment_service_spec.rb +1 -1
- data/spec/accounting/models/payment_services_spec.rb +1 -1
- data/spec/accounting/models/payment_spec.rb +7 -1
- data/spec/accounting/models/payment_term_spec.rb +1 -1
- data/spec/accounting/models/payment_term_type_spec.rb +1 -1
- data/spec/accounting/models/payments_spec.rb +1 -1
- data/spec/accounting/models/phone_spec.rb +1 -1
- data/spec/accounting/models/prepayment_spec.rb +1 -1
- data/spec/accounting/models/prepayments_spec.rb +1 -1
- data/spec/accounting/models/purchase_order_spec.rb +1 -1
- data/spec/accounting/models/purchase_orders_spec.rb +1 -1
- data/spec/accounting/models/purchase_spec.rb +1 -1
- data/spec/accounting/models/quote_line_amount_types_spec.rb +1 -1
- data/spec/accounting/models/quote_spec.rb +1 -1
- data/spec/accounting/models/quote_status_codes_spec.rb +1 -1
- data/spec/accounting/models/quotes_spec.rb +1 -1
- data/spec/accounting/models/receipt_spec.rb +1 -1
- data/spec/accounting/models/receipts_spec.rb +1 -1
- data/spec/accounting/models/repeating_invoice_spec.rb +1 -1
- data/spec/accounting/models/repeating_invoices_spec.rb +1 -1
- data/spec/accounting/models/report_attribute_spec.rb +1 -1
- data/spec/accounting/models/report_cell_spec.rb +1 -1
- data/spec/accounting/models/report_fields_spec.rb +1 -1
- data/spec/accounting/models/report_row_spec.rb +1 -1
- data/spec/accounting/models/report_rows_spec.rb +1 -1
- data/spec/accounting/models/report_spec.rb +1 -1
- data/spec/accounting/models/report_with_row_spec.rb +1 -1
- data/spec/accounting/models/report_with_rows_spec.rb +1 -1
- data/spec/accounting/models/reports_spec.rb +1 -1
- data/spec/accounting/models/request_empty_spec.rb +1 -1
- data/spec/accounting/models/row_type_spec.rb +1 -1
- data/spec/accounting/models/sales_tracking_category_spec.rb +1 -1
- data/spec/accounting/models/schedule_spec.rb +1 -1
- data/spec/accounting/models/tax_component_spec.rb +1 -1
- data/spec/accounting/models/tax_rate_spec.rb +2 -2
- data/spec/accounting/models/tax_rates_spec.rb +1 -1
- data/spec/accounting/models/tax_type_spec.rb +1 -1
- data/spec/accounting/models/ten_nintey_nine_contact_spec.rb +7 -7
- data/spec/accounting/models/time_zone_spec.rb +1 -1
- data/spec/accounting/models/tracking_categories_spec.rb +1 -1
- data/spec/accounting/models/tracking_category_spec.rb +1 -1
- data/spec/accounting/models/tracking_option_spec.rb +1 -1
- data/spec/accounting/models/tracking_options_spec.rb +1 -1
- data/spec/accounting/models/user_spec.rb +1 -1
- data/spec/accounting/models/users_spec.rb +1 -1
- data/spec/accounting/models/validation_error_spec.rb +1 -1
- data/spec/api_client_spec.rb +120 -33
- data/spec/assets/api/asset_api_spec.rb +4 -4
- data/spec/assets/models/asset_spec.rb +1 -1
- data/spec/assets/models/asset_status_query_param_spec.rb +1 -1
- data/spec/assets/models/asset_status_spec.rb +1 -1
- data/spec/assets/models/asset_type_spec.rb +1 -1
- data/spec/assets/models/assets_spec.rb +1 -1
- data/spec/assets/models/book_depreciation_detail_spec.rb +1 -1
- data/spec/assets/models/book_depreciation_setting_spec.rb +1 -1
- data/spec/assets/models/error_spec.rb +1 -1
- data/spec/assets/models/field_validation_errors_element_spec.rb +1 -1
- data/spec/assets/models/pagination_spec.rb +1 -1
- data/spec/assets/models/resource_validation_errors_element_spec.rb +1 -1
- data/spec/assets/models/setting_spec.rb +1 -1
- data/spec/configuration_spec.rb +8 -24
- data/spec/projects/api/project_api_spec.rb +229 -0
- data/spec/projects/models/amount_spec.rb +47 -0
- data/spec/projects/models/charge_type_spec.rb +35 -0
- data/spec/projects/models/currency_code_spec.rb +35 -0
- data/spec/projects/models/error_spec.rb +47 -0
- data/spec/projects/models/pagination_spec.rb +59 -0
- data/spec/projects/models/project_create_or_update_spec.rb +59 -0
- data/spec/projects/models/project_patch_spec.rb +41 -0
- data/spec/projects/models/project_spec.rb +167 -0
- data/spec/projects/models/project_status_spec.rb +35 -0
- data/spec/projects/models/project_user_spec.rb +53 -0
- data/spec/projects/models/project_users_spec.rb +47 -0
- data/spec/projects/models/projects_spec.rb +47 -0
- data/spec/projects/models/task_create_or_update_spec.rb +59 -0
- data/spec/projects/models/task_spec.rb +129 -0
- data/spec/projects/models/tasks_spec.rb +47 -0
- data/spec/projects/models/time_entries_spec.rb +47 -0
- data/spec/projects/models/time_entry_create_or_update_spec.rb +65 -0
- data/spec/projects/models/time_entry_spec.rb +93 -0
- data/spec/spec_helper.rb +1 -1
- data/xero-ruby.gemspec +3 -4
- metadata +85 -9
- data/xero-ruby.gem +0 -0
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.
|
|
6
|
+
The version of the OpenAPI document: 2.2.11
|
|
7
7
|
Contact: api@xero.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.3.
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -14,9 +14,12 @@ require 'time'
|
|
|
14
14
|
require 'date'
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
|
+
require 'bigdecimal'
|
|
18
|
+
|
|
17
19
|
class PurchaseOrders
|
|
18
|
-
attr_accessor :purchase_orders
|
|
19
20
|
|
|
21
|
+
attr_accessor :purchase_orders
|
|
22
|
+
|
|
20
23
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
21
24
|
def self.attribute_map
|
|
22
25
|
{
|
|
@@ -129,6 +132,8 @@ module XeroRuby::Accounting
|
|
|
129
132
|
value.to_i
|
|
130
133
|
when :Float
|
|
131
134
|
value.to_f
|
|
135
|
+
when :BigDecimal
|
|
136
|
+
BigDecimal(value.to_s)
|
|
132
137
|
when :Boolean
|
|
133
138
|
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
134
139
|
true
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.
|
|
6
|
+
The version of the OpenAPI document: 2.2.11
|
|
7
7
|
Contact: api@xero.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.3.
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -14,69 +14,81 @@ require 'time'
|
|
|
14
14
|
require 'date'
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
|
+
require 'bigdecimal'
|
|
18
|
+
|
|
17
19
|
class Quote
|
|
18
20
|
# QuoteID GUID is automatically generated and is returned after create or GET.
|
|
19
21
|
attr_accessor :quote_id
|
|
20
|
-
|
|
22
|
+
|
|
21
23
|
# Unique alpha numeric code identifying a quote (Max Length = 255)
|
|
22
24
|
attr_accessor :quote_number
|
|
23
|
-
|
|
25
|
+
|
|
24
26
|
# Additional reference number
|
|
25
27
|
attr_accessor :reference
|
|
26
|
-
|
|
28
|
+
|
|
27
29
|
# Terms of the quote
|
|
28
30
|
attr_accessor :terms
|
|
31
|
+
|
|
29
32
|
|
|
30
33
|
attr_accessor :contact
|
|
31
|
-
|
|
34
|
+
|
|
32
35
|
# See LineItems
|
|
33
36
|
attr_accessor :line_items
|
|
34
|
-
|
|
37
|
+
|
|
35
38
|
# Date quote was issued – YYYY-MM-DD. If the Date element is not specified it will default to the current date based on the timezone setting of the organisation
|
|
36
39
|
attr_accessor :date
|
|
37
|
-
|
|
40
|
+
|
|
38
41
|
# Date the quote was issued (YYYY-MM-DD)
|
|
39
42
|
attr_accessor :date_string
|
|
40
|
-
|
|
43
|
+
|
|
41
44
|
# Date the quote expires – YYYY-MM-DD.
|
|
42
45
|
attr_accessor :expiry_date
|
|
43
|
-
|
|
46
|
+
|
|
44
47
|
# Date the quote expires – YYYY-MM-DD.
|
|
45
48
|
attr_accessor :expiry_date_string
|
|
49
|
+
|
|
46
50
|
|
|
47
51
|
attr_accessor :status
|
|
52
|
+
|
|
48
53
|
|
|
49
54
|
attr_accessor :currency_code
|
|
50
|
-
|
|
55
|
+
|
|
51
56
|
# The currency rate for a multicurrency quote
|
|
52
57
|
attr_accessor :currency_rate
|
|
53
|
-
|
|
58
|
+
|
|
54
59
|
# Total of quote excluding taxes.
|
|
55
60
|
attr_accessor :sub_total
|
|
56
|
-
|
|
61
|
+
|
|
57
62
|
# Total tax on quote
|
|
58
63
|
attr_accessor :total_tax
|
|
59
|
-
|
|
64
|
+
|
|
60
65
|
# Total of Quote tax inclusive (i.e. SubTotal + TotalTax). This will be ignored if it doesn’t equal the sum of the LineAmounts
|
|
61
66
|
attr_accessor :total
|
|
62
|
-
|
|
67
|
+
|
|
63
68
|
# Total of discounts applied on the quote line items
|
|
64
69
|
attr_accessor :total_discount
|
|
65
|
-
|
|
70
|
+
|
|
66
71
|
# Title text for the quote
|
|
67
72
|
attr_accessor :title
|
|
68
|
-
|
|
73
|
+
|
|
69
74
|
# Summary text for the quote
|
|
70
75
|
attr_accessor :summary
|
|
71
|
-
|
|
76
|
+
|
|
72
77
|
# See BrandingThemes
|
|
73
78
|
attr_accessor :branding_theme_id
|
|
74
|
-
|
|
79
|
+
|
|
75
80
|
# Last modified date UTC format
|
|
76
81
|
attr_accessor :updated_date_utc
|
|
82
|
+
|
|
77
83
|
|
|
78
84
|
attr_accessor :line_amount_types
|
|
79
|
-
|
|
85
|
+
|
|
86
|
+
# A string to indicate if a invoice status
|
|
87
|
+
attr_accessor :status_attribute_string
|
|
88
|
+
|
|
89
|
+
# Displays array of validation error messages from the API
|
|
90
|
+
attr_accessor :validation_errors
|
|
91
|
+
|
|
80
92
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
81
93
|
def self.attribute_map
|
|
82
94
|
{
|
|
@@ -101,7 +113,9 @@ module XeroRuby::Accounting
|
|
|
101
113
|
:'summary' => :'Summary',
|
|
102
114
|
:'branding_theme_id' => :'BrandingThemeID',
|
|
103
115
|
:'updated_date_utc' => :'UpdatedDateUTC',
|
|
104
|
-
:'line_amount_types' => :'LineAmountTypes'
|
|
116
|
+
:'line_amount_types' => :'LineAmountTypes',
|
|
117
|
+
:'status_attribute_string' => :'StatusAttributeString',
|
|
118
|
+
:'validation_errors' => :'ValidationErrors'
|
|
105
119
|
}
|
|
106
120
|
end
|
|
107
121
|
|
|
@@ -121,15 +135,17 @@ module XeroRuby::Accounting
|
|
|
121
135
|
:'status' => :'QuoteStatusCodes',
|
|
122
136
|
:'currency_code' => :'CurrencyCode',
|
|
123
137
|
:'currency_rate' => :'Float',
|
|
124
|
-
:'sub_total' => :'
|
|
125
|
-
:'total_tax' => :'
|
|
126
|
-
:'total' => :'
|
|
127
|
-
:'total_discount' => :'
|
|
138
|
+
:'sub_total' => :'BigDecimal',
|
|
139
|
+
:'total_tax' => :'BigDecimal',
|
|
140
|
+
:'total' => :'BigDecimal',
|
|
141
|
+
:'total_discount' => :'BigDecimal',
|
|
128
142
|
:'title' => :'String',
|
|
129
143
|
:'summary' => :'String',
|
|
130
144
|
:'branding_theme_id' => :'String',
|
|
131
145
|
:'updated_date_utc' => :'DateTime',
|
|
132
|
-
:'line_amount_types' => :'QuoteLineAmountTypes'
|
|
146
|
+
:'line_amount_types' => :'QuoteLineAmountTypes',
|
|
147
|
+
:'status_attribute_string' => :'String',
|
|
148
|
+
:'validation_errors' => :'Array<ValidationError>'
|
|
133
149
|
}
|
|
134
150
|
end
|
|
135
151
|
|
|
@@ -237,6 +253,16 @@ module XeroRuby::Accounting
|
|
|
237
253
|
if attributes.key?(:'line_amount_types')
|
|
238
254
|
self.line_amount_types = attributes[:'line_amount_types']
|
|
239
255
|
end
|
|
256
|
+
|
|
257
|
+
if attributes.key?(:'status_attribute_string')
|
|
258
|
+
self.status_attribute_string = attributes[:'status_attribute_string']
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
if attributes.key?(:'validation_errors')
|
|
262
|
+
if (value = attributes[:'validation_errors']).is_a?(Array)
|
|
263
|
+
self.validation_errors = value
|
|
264
|
+
end
|
|
265
|
+
end
|
|
240
266
|
end
|
|
241
267
|
|
|
242
268
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -353,7 +379,9 @@ module XeroRuby::Accounting
|
|
|
353
379
|
summary == o.summary &&
|
|
354
380
|
branding_theme_id == o.branding_theme_id &&
|
|
355
381
|
updated_date_utc == o.updated_date_utc &&
|
|
356
|
-
line_amount_types == o.line_amount_types
|
|
382
|
+
line_amount_types == o.line_amount_types &&
|
|
383
|
+
status_attribute_string == o.status_attribute_string &&
|
|
384
|
+
validation_errors == o.validation_errors
|
|
357
385
|
end
|
|
358
386
|
|
|
359
387
|
# @see the `==` method
|
|
@@ -365,7 +393,7 @@ module XeroRuby::Accounting
|
|
|
365
393
|
# Calculates hash code according to all attributes.
|
|
366
394
|
# @return [Integer] Hash code
|
|
367
395
|
def hash
|
|
368
|
-
[quote_id, quote_number, reference, terms, contact, line_items, date, date_string, expiry_date, expiry_date_string, status, currency_code, currency_rate, sub_total, total_tax, total, total_discount, title, summary, branding_theme_id, updated_date_utc, line_amount_types].hash
|
|
396
|
+
[quote_id, quote_number, reference, terms, contact, line_items, date, date_string, expiry_date, expiry_date_string, status, currency_code, currency_rate, sub_total, total_tax, total, total_discount, title, summary, branding_theme_id, updated_date_utc, line_amount_types, status_attribute_string, validation_errors].hash
|
|
369
397
|
end
|
|
370
398
|
|
|
371
399
|
# Builds the object from hash
|
|
@@ -411,6 +439,8 @@ module XeroRuby::Accounting
|
|
|
411
439
|
value.to_i
|
|
412
440
|
when :Float
|
|
413
441
|
value.to_f
|
|
442
|
+
when :BigDecimal
|
|
443
|
+
BigDecimal(value.to_s)
|
|
414
444
|
when :Boolean
|
|
415
445
|
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
416
446
|
true
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.
|
|
6
|
+
The version of the OpenAPI document: 2.2.11
|
|
7
7
|
Contact: api@xero.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.3.
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.
|
|
6
|
+
The version of the OpenAPI document: 2.2.11
|
|
7
7
|
Contact: api@xero.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.3.
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -20,6 +20,7 @@ module XeroRuby::Accounting
|
|
|
20
20
|
DECLINED = "DECLINED".freeze
|
|
21
21
|
ACCEPTED = "ACCEPTED".freeze
|
|
22
22
|
INVOICED = "INVOICED".freeze
|
|
23
|
+
DELETED = "DELETED".freeze
|
|
23
24
|
|
|
24
25
|
# Builds the enum from string
|
|
25
26
|
# @param [String] The enum value in the form of the string
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.
|
|
6
|
+
The version of the OpenAPI document: 2.2.11
|
|
7
7
|
Contact: api@xero.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.3.
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -14,9 +14,12 @@ require 'time'
|
|
|
14
14
|
require 'date'
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
|
+
require 'bigdecimal'
|
|
18
|
+
|
|
17
19
|
class Quotes
|
|
18
|
-
attr_accessor :quotes
|
|
19
20
|
|
|
21
|
+
attr_accessor :quotes
|
|
22
|
+
|
|
20
23
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
21
24
|
def self.attribute_map
|
|
22
25
|
{
|
|
@@ -129,6 +132,8 @@ module XeroRuby::Accounting
|
|
|
129
132
|
value.to_i
|
|
130
133
|
when :Float
|
|
131
134
|
value.to_f
|
|
135
|
+
when :BigDecimal
|
|
136
|
+
BigDecimal(value.to_s)
|
|
132
137
|
when :Boolean
|
|
133
138
|
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
134
139
|
true
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.
|
|
6
|
+
The version of the OpenAPI document: 2.2.11
|
|
7
7
|
Contact: api@xero.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.3.
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -14,57 +14,68 @@ require 'time'
|
|
|
14
14
|
require 'date'
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
|
+
require 'bigdecimal'
|
|
18
|
+
|
|
17
19
|
class Receipt
|
|
18
20
|
# Date of receipt – YYYY-MM-DD
|
|
19
21
|
attr_accessor :date
|
|
22
|
+
|
|
20
23
|
|
|
21
24
|
attr_accessor :contact
|
|
25
|
+
|
|
22
26
|
|
|
23
27
|
attr_accessor :line_items
|
|
28
|
+
|
|
24
29
|
|
|
25
30
|
attr_accessor :user
|
|
26
|
-
|
|
31
|
+
|
|
27
32
|
# Additional reference number
|
|
28
33
|
attr_accessor :reference
|
|
34
|
+
|
|
29
35
|
|
|
30
36
|
attr_accessor :line_amount_types
|
|
31
|
-
|
|
37
|
+
|
|
32
38
|
# Total of receipt excluding taxes
|
|
33
39
|
attr_accessor :sub_total
|
|
34
|
-
|
|
40
|
+
|
|
35
41
|
# Total tax on receipt
|
|
36
42
|
attr_accessor :total_tax
|
|
37
|
-
|
|
43
|
+
|
|
38
44
|
# Total of receipt tax inclusive (i.e. SubTotal + TotalTax)
|
|
39
45
|
attr_accessor :total
|
|
40
|
-
|
|
46
|
+
|
|
41
47
|
# Xero generated unique identifier for receipt
|
|
42
48
|
attr_accessor :receipt_id
|
|
43
|
-
|
|
49
|
+
|
|
44
50
|
# Current status of receipt – see status types
|
|
45
51
|
attr_accessor :status
|
|
46
|
-
|
|
52
|
+
DRAFT = "DRAFT".freeze
|
|
53
|
+
SUBMITTED = "SUBMITTED".freeze
|
|
54
|
+
AUTHORISED = "AUTHORISED".freeze
|
|
55
|
+
DECLINED = "DECLINED".freeze
|
|
56
|
+
VOIDED = "VOIDED".freeze
|
|
57
|
+
|
|
47
58
|
# Xero generated sequence number for receipt in current claim for a given user
|
|
48
59
|
attr_accessor :receipt_number
|
|
49
|
-
|
|
60
|
+
|
|
50
61
|
# Last modified date UTC format
|
|
51
62
|
attr_accessor :updated_date_utc
|
|
52
|
-
|
|
63
|
+
|
|
53
64
|
# boolean to indicate if a receipt has an attachment
|
|
54
65
|
attr_accessor :has_attachments
|
|
55
|
-
|
|
66
|
+
|
|
56
67
|
# URL link to a source document – shown as “Go to [appName]” in the Xero app
|
|
57
68
|
attr_accessor :url
|
|
58
|
-
|
|
69
|
+
|
|
59
70
|
# Displays array of validation error messages from the API
|
|
60
71
|
attr_accessor :validation_errors
|
|
61
|
-
|
|
72
|
+
|
|
62
73
|
# Displays array of warning messages from the API
|
|
63
74
|
attr_accessor :warnings
|
|
64
|
-
|
|
75
|
+
|
|
65
76
|
# Displays array of attachments from the API
|
|
66
77
|
attr_accessor :attachments
|
|
67
|
-
|
|
78
|
+
|
|
68
79
|
class EnumAttributeValidator
|
|
69
80
|
attr_reader :datatype
|
|
70
81
|
attr_reader :allowable_values
|
|
@@ -120,9 +131,9 @@ module XeroRuby::Accounting
|
|
|
120
131
|
:'user' => :'User',
|
|
121
132
|
:'reference' => :'String',
|
|
122
133
|
:'line_amount_types' => :'LineAmountTypes',
|
|
123
|
-
:'sub_total' => :'
|
|
124
|
-
:'total_tax' => :'
|
|
125
|
-
:'total' => :'
|
|
134
|
+
:'sub_total' => :'BigDecimal',
|
|
135
|
+
:'total_tax' => :'BigDecimal',
|
|
136
|
+
:'total' => :'BigDecimal',
|
|
126
137
|
:'receipt_id' => :'String',
|
|
127
138
|
:'status' => :'String',
|
|
128
139
|
:'receipt_number' => :'String',
|
|
@@ -338,6 +349,8 @@ module XeroRuby::Accounting
|
|
|
338
349
|
value.to_i
|
|
339
350
|
when :Float
|
|
340
351
|
value.to_f
|
|
352
|
+
when :BigDecimal
|
|
353
|
+
BigDecimal(value.to_s)
|
|
341
354
|
when :Boolean
|
|
342
355
|
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
343
356
|
true
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.
|
|
6
|
+
The version of the OpenAPI document: 2.2.11
|
|
7
7
|
Contact: api@xero.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.3.
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -14,9 +14,12 @@ require 'time'
|
|
|
14
14
|
require 'date'
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
|
+
require 'bigdecimal'
|
|
18
|
+
|
|
17
19
|
class Receipts
|
|
18
|
-
attr_accessor :receipts
|
|
19
20
|
|
|
21
|
+
attr_accessor :receipts
|
|
22
|
+
|
|
20
23
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
21
24
|
def self.attribute_map
|
|
22
25
|
{
|
|
@@ -129,6 +132,8 @@ module XeroRuby::Accounting
|
|
|
129
132
|
value.to_i
|
|
130
133
|
when :Float
|
|
131
134
|
value.to_f
|
|
135
|
+
when :BigDecimal
|
|
136
|
+
BigDecimal(value.to_s)
|
|
132
137
|
when :Boolean
|
|
133
138
|
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
134
139
|
true
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.
|
|
6
|
+
The version of the OpenAPI document: 2.2.11
|
|
7
7
|
Contact: api@xero.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 4.3.
|
|
9
|
+
OpenAPI Generator version: 4.3.1
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -14,51 +14,62 @@ require 'time'
|
|
|
14
14
|
require 'date'
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
|
+
require 'bigdecimal'
|
|
18
|
+
|
|
17
19
|
class RepeatingInvoice
|
|
18
20
|
# See Invoice Types
|
|
19
21
|
attr_accessor :type
|
|
22
|
+
ACCPAY = "ACCPAY".freeze
|
|
23
|
+
ACCREC = "ACCREC".freeze
|
|
24
|
+
|
|
20
25
|
|
|
21
26
|
attr_accessor :contact
|
|
27
|
+
|
|
22
28
|
|
|
23
29
|
attr_accessor :schedule
|
|
24
|
-
|
|
30
|
+
|
|
25
31
|
# See LineItems
|
|
26
32
|
attr_accessor :line_items
|
|
33
|
+
|
|
27
34
|
|
|
28
35
|
attr_accessor :line_amount_types
|
|
29
|
-
|
|
36
|
+
|
|
30
37
|
# ACCREC only – additional reference number
|
|
31
38
|
attr_accessor :reference
|
|
32
|
-
|
|
39
|
+
|
|
33
40
|
# See BrandingThemes
|
|
34
41
|
attr_accessor :branding_theme_id
|
|
42
|
+
|
|
35
43
|
|
|
36
44
|
attr_accessor :currency_code
|
|
37
|
-
|
|
45
|
+
|
|
38
46
|
# One of the following - DRAFT or AUTHORISED – See Invoice Status Codes
|
|
39
47
|
attr_accessor :status
|
|
40
|
-
|
|
48
|
+
DRAFT = "DRAFT".freeze
|
|
49
|
+
AUTHORISED = "AUTHORISED".freeze
|
|
50
|
+
DELETED = "DELETED".freeze
|
|
51
|
+
|
|
41
52
|
# Total of invoice excluding taxes
|
|
42
53
|
attr_accessor :sub_total
|
|
43
|
-
|
|
54
|
+
|
|
44
55
|
# Total tax on invoice
|
|
45
56
|
attr_accessor :total_tax
|
|
46
|
-
|
|
57
|
+
|
|
47
58
|
# Total of Invoice tax inclusive (i.e. SubTotal + TotalTax)
|
|
48
59
|
attr_accessor :total
|
|
49
|
-
|
|
60
|
+
|
|
50
61
|
# Xero generated unique identifier for repeating invoice template
|
|
51
62
|
attr_accessor :repeating_invoice_id
|
|
52
|
-
|
|
63
|
+
|
|
53
64
|
# Xero generated unique identifier for repeating invoice template
|
|
54
65
|
attr_accessor :id
|
|
55
|
-
|
|
66
|
+
|
|
56
67
|
# boolean to indicate if an invoice has an attachment
|
|
57
68
|
attr_accessor :has_attachments
|
|
58
|
-
|
|
69
|
+
|
|
59
70
|
# Displays array of attachments from the API
|
|
60
71
|
attr_accessor :attachments
|
|
61
|
-
|
|
72
|
+
|
|
62
73
|
class EnumAttributeValidator
|
|
63
74
|
attr_reader :datatype
|
|
64
75
|
attr_reader :allowable_values
|
|
@@ -115,9 +126,9 @@ module XeroRuby::Accounting
|
|
|
115
126
|
:'branding_theme_id' => :'String',
|
|
116
127
|
:'currency_code' => :'CurrencyCode',
|
|
117
128
|
:'status' => :'String',
|
|
118
|
-
:'sub_total' => :'
|
|
119
|
-
:'total_tax' => :'
|
|
120
|
-
:'total' => :'
|
|
129
|
+
:'sub_total' => :'BigDecimal',
|
|
130
|
+
:'total_tax' => :'BigDecimal',
|
|
131
|
+
:'total' => :'BigDecimal',
|
|
121
132
|
:'repeating_invoice_id' => :'String',
|
|
122
133
|
:'id' => :'String',
|
|
123
134
|
:'has_attachments' => :'Boolean',
|
|
@@ -326,6 +337,8 @@ module XeroRuby::Accounting
|
|
|
326
337
|
value.to_i
|
|
327
338
|
when :Float
|
|
328
339
|
value.to_f
|
|
340
|
+
when :BigDecimal
|
|
341
|
+
BigDecimal(value.to_s)
|
|
329
342
|
when :Boolean
|
|
330
343
|
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
331
344
|
true
|