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
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# XeroRuby::Projects::ProjectCreateOrUpdate
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**contact_id** | **String** | Identifier of the contact this project was created for. | [optional]
|
|
8
|
+
**name** | **String** | Name of the project. |
|
|
9
|
+
**estimate_amount** | **Float** | | [optional]
|
|
10
|
+
**deadline_utc** | **DateTime** | Deadline for the project. UTC Date Time in ISO-8601 format. | [optional]
|
|
11
|
+
|
|
12
|
+
## Code Sample
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'XeroRuby::Projects'
|
|
16
|
+
|
|
17
|
+
instance = XeroRuby::Projects::ProjectCreateOrUpdate.new(contact_id: 01234567-89ab-cdef-0123-456789abcdef,
|
|
18
|
+
name: New Kitchen,
|
|
19
|
+
estimate_amount: 1.0,
|
|
20
|
+
deadline_utc: 2019-12-10T12:59:59Z)
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# XeroRuby::Projects::ProjectPatch
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**status** | [**ProjectStatus**](ProjectStatus.md) | |
|
|
8
|
+
|
|
9
|
+
## Code Sample
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'XeroRuby::Projects'
|
|
13
|
+
|
|
14
|
+
instance = XeroRuby::Projects::ProjectPatch.new(status: null)
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# XeroRuby::Projects::ProjectStatus
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
|
|
8
|
+
## Code Sample
|
|
9
|
+
|
|
10
|
+
```ruby
|
|
11
|
+
require 'XeroRuby::Projects'
|
|
12
|
+
|
|
13
|
+
instance = XeroRuby::Projects::ProjectStatus.new()
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# XeroRuby::Projects::ProjectUser
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**user_id** | **String** | Identifier of the user of the project. | [optional]
|
|
8
|
+
**name** | **String** | Full name of the user. | [optional]
|
|
9
|
+
**email** | **String** | Email address of the user. | [optional]
|
|
10
|
+
|
|
11
|
+
## Code Sample
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'XeroRuby::Projects'
|
|
15
|
+
|
|
16
|
+
instance = XeroRuby::Projects::ProjectUser.new(user_id: 254553fa-2be8-4991-bd5e-70a97ea12ef8,
|
|
17
|
+
name: Sidney Allen,
|
|
18
|
+
email: sidneyallen@xero.com)
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# XeroRuby::Projects::ProjectUsers
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**pagination** | [**Pagination**](Pagination.md) | | [optional]
|
|
8
|
+
**items** | [**Array<ProjectUser>**](ProjectUser.md) | | [optional]
|
|
9
|
+
|
|
10
|
+
## Code Sample
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'XeroRuby::Projects'
|
|
14
|
+
|
|
15
|
+
instance = XeroRuby::Projects::ProjectUsers.new(pagination: null,
|
|
16
|
+
items: null)
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# XeroRuby::Projects::Projects
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**pagination** | [**Pagination**](Pagination.md) | | [optional]
|
|
8
|
+
**items** | [**Array<Project>**](Project.md) | | [optional]
|
|
9
|
+
|
|
10
|
+
## Code Sample
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'XeroRuby::Projects'
|
|
14
|
+
|
|
15
|
+
instance = XeroRuby::Projects::Projects.new(pagination: null,
|
|
16
|
+
items: null)
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# XeroRuby::Projects::Task
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**task_id** | **String** | Identifier of the task. | [optional]
|
|
8
|
+
**name** | **String** | Name of the task. | [optional]
|
|
9
|
+
**rate** | [**Amount**](Amount.md) | | [optional]
|
|
10
|
+
**charge_type** | [**ChargeType**](ChargeType.md) | | [optional]
|
|
11
|
+
**estimate_minutes** | **Float** | An estimated time to perform the task | [optional]
|
|
12
|
+
**project_id** | **String** | Identifier of the project task belongs to. | [optional]
|
|
13
|
+
**total_minutes** | **Float** | Total minutes which have been logged against the task. Logged by assigning a time entry to a task | [optional]
|
|
14
|
+
**total_amount** | [**Amount**](Amount.md) | | [optional]
|
|
15
|
+
**minutes_invoiced** | **Float** | Minutes on this task which have been invoiced. | [optional]
|
|
16
|
+
**minutes_to_be_invoiced** | **Float** | Minutes on this task which have not been invoiced. | [optional]
|
|
17
|
+
**fixed_minutes** | **Float** | Minutes logged against this task if its charge type is `FIXED`. | [optional]
|
|
18
|
+
**non_chargeable_minutes** | **Float** | Minutes logged against this task if its charge type is `NON_CHARGEABLE`. | [optional]
|
|
19
|
+
**amount_to_be_invoiced** | [**Amount**](Amount.md) | | [optional]
|
|
20
|
+
**amount_invoiced** | [**Amount**](Amount.md) | | [optional]
|
|
21
|
+
**status** | **String** | Status of the task. When a task of ChargeType is `FIXED` and the rate amount is invoiced the status will be set to `INVOICED` and can't be modified. A task with ChargeType of `TIME` or `NON_CHARGEABLE` cannot have a status of `INVOICED`. A `LOCKED` state indicates that the task is currently changing state (for example being invoiced) and can't be modified. | [optional]
|
|
22
|
+
|
|
23
|
+
## Code Sample
|
|
24
|
+
|
|
25
|
+
```ruby
|
|
26
|
+
require 'XeroRuby::Projects'
|
|
27
|
+
|
|
28
|
+
instance = XeroRuby::Projects::Task.new(task_id: 00000000-0000-0000-0000-000000000000,
|
|
29
|
+
name: null,
|
|
30
|
+
rate: null,
|
|
31
|
+
charge_type: null,
|
|
32
|
+
estimate_minutes: null,
|
|
33
|
+
project_id: 00000000-0000-0000-0000-000000000000,
|
|
34
|
+
total_minutes: null,
|
|
35
|
+
total_amount: null,
|
|
36
|
+
minutes_invoiced: null,
|
|
37
|
+
minutes_to_be_invoiced: null,
|
|
38
|
+
fixed_minutes: null,
|
|
39
|
+
non_chargeable_minutes: null,
|
|
40
|
+
amount_to_be_invoiced: null,
|
|
41
|
+
amount_invoiced: null,
|
|
42
|
+
status: null)
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# XeroRuby::Projects::TaskCreateOrUpdate
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**name** | **String** | Name of the task. Max length 100 characters. |
|
|
8
|
+
**rate** | [**Amount**](Amount.md) | |
|
|
9
|
+
**charge_type** | [**ChargeType**](ChargeType.md) | |
|
|
10
|
+
**estimate_minutes** | **Integer** | Estimated time to perform the task. EstimateMinutes has to be greater than 0 if provided. | [optional]
|
|
11
|
+
|
|
12
|
+
## Code Sample
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'XeroRuby::Projects'
|
|
16
|
+
|
|
17
|
+
instance = XeroRuby::Projects::TaskCreateOrUpdate.new(name: null,
|
|
18
|
+
rate: null,
|
|
19
|
+
charge_type: null,
|
|
20
|
+
estimate_minutes: null)
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# XeroRuby::Projects::Tasks
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**pagination** | [**Pagination**](Pagination.md) | | [optional]
|
|
8
|
+
**items** | [**Array<Task>**](Task.md) | | [optional]
|
|
9
|
+
|
|
10
|
+
## Code Sample
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'XeroRuby::Projects'
|
|
14
|
+
|
|
15
|
+
instance = XeroRuby::Projects::Tasks.new(pagination: null,
|
|
16
|
+
items: null)
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# XeroRuby::Projects::TimeEntries
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**pagination** | [**Pagination**](Pagination.md) | | [optional]
|
|
8
|
+
**items** | [**Array<TimeEntry>**](TimeEntry.md) | | [optional]
|
|
9
|
+
|
|
10
|
+
## Code Sample
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'XeroRuby::Projects'
|
|
14
|
+
|
|
15
|
+
instance = XeroRuby::Projects::TimeEntries.new(pagination: null,
|
|
16
|
+
items: null)
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# XeroRuby::Projects::TimeEntry
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**time_entry_id** | **String** | Identifier of the time entry. | [optional]
|
|
8
|
+
**user_id** | **String** | The xero user identifier of the person who logged time. | [optional]
|
|
9
|
+
**project_id** | **String** | Identifier of the project, that the task (which the time entry is logged against) belongs to. | [optional]
|
|
10
|
+
**task_id** | **String** | Identifier of the task that time entry is logged against. | [optional]
|
|
11
|
+
**date_utc** | **DateTime** | The date time that time entry is logged on. UTC Date Time in ISO-8601 format. | [optional]
|
|
12
|
+
**date_entered_utc** | **DateTime** | The date time that time entry is created. UTC Date Time in ISO-8601 format. By default it is set to server time. | [optional]
|
|
13
|
+
**duration** | **Integer** | The duration of logged minutes. | [optional]
|
|
14
|
+
**description** | **String** | A description of the time entry. | [optional]
|
|
15
|
+
**status** | **String** | Status of the time entry. By default a time entry is created with status of `ACTIVE`. A `LOCKED` state indicates that the time entry is currently changing state (for example being invoiced). Updates are not allowed when in this state. It will have a status of INVOICED once it is invoiced. | [optional]
|
|
16
|
+
|
|
17
|
+
## Code Sample
|
|
18
|
+
|
|
19
|
+
```ruby
|
|
20
|
+
require 'XeroRuby::Projects'
|
|
21
|
+
|
|
22
|
+
instance = XeroRuby::Projects::TimeEntry.new(time_entry_id: 00000000-0000-0000-0000-000000000000,
|
|
23
|
+
user_id: 00000000-0000-0000-0000-000000000000,
|
|
24
|
+
project_id: 00000000-0000-0000-0000-000000000000,
|
|
25
|
+
task_id: 00000000-0000-0000-0000-000000000000,
|
|
26
|
+
date_utc: null,
|
|
27
|
+
date_entered_utc: null,
|
|
28
|
+
duration: null,
|
|
29
|
+
description: null,
|
|
30
|
+
status: null)
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# XeroRuby::Projects::TimeEntryCreateOrUpdate
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**user_id** | **String** | The xero user identifier of the person logging the time. |
|
|
8
|
+
**task_id** | **String** | Identifier of the task that time entry is logged against. |
|
|
9
|
+
**date_utc** | **DateTime** | Date time entry is logged on. UTC Date Time in ISO-8601 format. |
|
|
10
|
+
**duration** | **Integer** | Number of minutes to be logged. Duration is between 1 and 59940 inclusively. |
|
|
11
|
+
**description** | **String** | An optional description of the time entry, will be set to null if not provided during update. | [optional]
|
|
12
|
+
|
|
13
|
+
## Code Sample
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
require 'XeroRuby::Projects'
|
|
17
|
+
|
|
18
|
+
instance = XeroRuby::Projects::TimeEntryCreateOrUpdate.new(user_id: 00000000-0000-0000-0000-000000000000,
|
|
19
|
+
task_id: 00000000-0000-0000-0000-000000000000,
|
|
20
|
+
date_utc: null,
|
|
21
|
+
duration: null,
|
|
22
|
+
description: null)
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
|
data/lib/xero-ruby.rb
CHANGED
|
@@ -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
|
|
|
@@ -17,6 +17,24 @@ require 'xero-ruby/version'
|
|
|
17
17
|
require 'xero-ruby/configuration'
|
|
18
18
|
|
|
19
19
|
# Models
|
|
20
|
+
require 'xero-ruby/models/projects/amount'
|
|
21
|
+
require 'xero-ruby/models/projects/charge_type'
|
|
22
|
+
require 'xero-ruby/models/projects/currency_code'
|
|
23
|
+
require 'xero-ruby/models/projects/error'
|
|
24
|
+
require 'xero-ruby/models/projects/pagination'
|
|
25
|
+
require 'xero-ruby/models/projects/project'
|
|
26
|
+
require 'xero-ruby/models/projects/project_create_or_update'
|
|
27
|
+
require 'xero-ruby/models/projects/project_patch'
|
|
28
|
+
require 'xero-ruby/models/projects/project_status'
|
|
29
|
+
require 'xero-ruby/models/projects/project_user'
|
|
30
|
+
require 'xero-ruby/models/projects/project_users'
|
|
31
|
+
require 'xero-ruby/models/projects/projects'
|
|
32
|
+
require 'xero-ruby/models/projects/task'
|
|
33
|
+
require 'xero-ruby/models/projects/task_create_or_update'
|
|
34
|
+
require 'xero-ruby/models/projects/tasks'
|
|
35
|
+
require 'xero-ruby/models/projects/time_entries'
|
|
36
|
+
require 'xero-ruby/models/projects/time_entry'
|
|
37
|
+
require 'xero-ruby/models/projects/time_entry_create_or_update'
|
|
20
38
|
require 'xero-ruby/models/assets/asset'
|
|
21
39
|
require 'xero-ruby/models/assets/asset_status'
|
|
22
40
|
require 'xero-ruby/models/assets/asset_status_query_param'
|
|
@@ -134,7 +152,7 @@ require 'xero-ruby/models/accounting/tax_component'
|
|
|
134
152
|
require 'xero-ruby/models/accounting/tax_rate'
|
|
135
153
|
require 'xero-ruby/models/accounting/tax_rates'
|
|
136
154
|
require 'xero-ruby/models/accounting/tax_type'
|
|
137
|
-
require 'xero-ruby/models/accounting/
|
|
155
|
+
require 'xero-ruby/models/accounting/ten_ninety_nine_contact'
|
|
138
156
|
require 'xero-ruby/models/accounting/time_zone'
|
|
139
157
|
require 'xero-ruby/models/accounting/tracking_categories'
|
|
140
158
|
require 'xero-ruby/models/accounting/tracking_category'
|
|
@@ -145,6 +163,7 @@ require 'xero-ruby/models/accounting/users'
|
|
|
145
163
|
require 'xero-ruby/models/accounting/validation_error'
|
|
146
164
|
|
|
147
165
|
# APIs
|
|
166
|
+
require 'xero-ruby/api/project_api'
|
|
148
167
|
require 'xero-ruby/api/asset_api'
|
|
149
168
|
require 'xero-ruby/api/accounting_api'
|
|
150
169
|
|
|
@@ -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
|
|
|
@@ -16,7 +16,7 @@ module XeroRuby
|
|
|
16
16
|
class AccountingApi
|
|
17
17
|
attr_accessor :api_client
|
|
18
18
|
|
|
19
|
-
def initialize(api_client = ApiClient.
|
|
19
|
+
def initialize(api_client = ApiClient.new)
|
|
20
20
|
@api_client = api_client
|
|
21
21
|
end
|
|
22
22
|
# Allows you to create a new chart of accounts
|
|
@@ -169,7 +169,7 @@ module XeroRuby
|
|
|
169
169
|
return data, status_code, headers
|
|
170
170
|
end
|
|
171
171
|
|
|
172
|
-
# Allows you to
|
|
172
|
+
# Allows you to create an Attachment on BankTransaction by Filename
|
|
173
173
|
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
174
174
|
# @param bank_transaction_id [String] Xero generated unique identifier for a bank transaction
|
|
175
175
|
# @param file_name [String] The name of the file being attached
|
|
@@ -181,7 +181,7 @@ module XeroRuby
|
|
|
181
181
|
data
|
|
182
182
|
end
|
|
183
183
|
|
|
184
|
-
# Allows you to
|
|
184
|
+
# Allows you to create an Attachment on BankTransaction by Filename
|
|
185
185
|
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
186
186
|
# @param bank_transaction_id [String] Xero generated unique identifier for a bank transaction
|
|
187
187
|
# @param file_name [String] The name of the file being attached
|
|
@@ -1218,6 +1218,7 @@ module XeroRuby
|
|
|
1218
1218
|
# @param credit_note_id [String] Unique identifier for a Credit Note
|
|
1219
1219
|
# @param allocations [Allocations] Allocations with array of Allocation object in body of request.
|
|
1220
1220
|
# @param [Hash] opts the optional parameters
|
|
1221
|
+
# @option opts [Boolean] :summarize_errors If false return 200 OK and mix of successfully created obejcts and any with validation errors (default to false)
|
|
1221
1222
|
# @return [Allocations]
|
|
1222
1223
|
def create_credit_note_allocation(xero_tenant_id, credit_note_id, allocations, opts = {})
|
|
1223
1224
|
data, _status_code, _headers = create_credit_note_allocation_with_http_info(xero_tenant_id, credit_note_id, allocations, opts)
|
|
@@ -1229,6 +1230,7 @@ module XeroRuby
|
|
|
1229
1230
|
# @param credit_note_id [String] Unique identifier for a Credit Note
|
|
1230
1231
|
# @param allocations [Allocations] Allocations with array of Allocation object in body of request.
|
|
1231
1232
|
# @param [Hash] opts the optional parameters
|
|
1233
|
+
# @option opts [Boolean] :summarize_errors If false return 200 OK and mix of successfully created obejcts and any with validation errors
|
|
1232
1234
|
# @return [Array<(Allocations, Integer, Hash)>] Allocations data, response status code and response headers
|
|
1233
1235
|
def create_credit_note_allocation_with_http_info(xero_tenant_id, credit_note_id, allocations, opts = {})
|
|
1234
1236
|
if @api_client.config.debugging
|
|
@@ -1251,6 +1253,7 @@ module XeroRuby
|
|
|
1251
1253
|
|
|
1252
1254
|
# query parameters
|
|
1253
1255
|
query_params = opts[:query_params] || {}
|
|
1256
|
+
query_params[:'summarizeErrors'] = opts[:'summarize_errors'] if !opts[:'summarize_errors'].nil?
|
|
1254
1257
|
|
|
1255
1258
|
# header parameters
|
|
1256
1259
|
header_params = opts[:header_params] || {}
|
|
@@ -2781,6 +2784,7 @@ module XeroRuby
|
|
|
2781
2784
|
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
2782
2785
|
# @param payments [Payments] Payments array with Payment object in body of request
|
|
2783
2786
|
# @param [Hash] opts the optional parameters
|
|
2787
|
+
# @option opts [Boolean] :summarize_errors If false return 200 OK and mix of successfully created obejcts and any with validation errors (default to false)
|
|
2784
2788
|
# @return [Payments]
|
|
2785
2789
|
def create_payments(xero_tenant_id, payments, opts = {})
|
|
2786
2790
|
data, _status_code, _headers = create_payments_with_http_info(xero_tenant_id, payments, opts)
|
|
@@ -2791,6 +2795,7 @@ module XeroRuby
|
|
|
2791
2795
|
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
2792
2796
|
# @param payments [Payments] Payments array with Payment object in body of request
|
|
2793
2797
|
# @param [Hash] opts the optional parameters
|
|
2798
|
+
# @option opts [Boolean] :summarize_errors If false return 200 OK and mix of successfully created obejcts and any with validation errors
|
|
2794
2799
|
# @return [Array<(Payments, Integer, Hash)>] Payments data, response status code and response headers
|
|
2795
2800
|
def create_payments_with_http_info(xero_tenant_id, payments, opts = {})
|
|
2796
2801
|
if @api_client.config.debugging
|
|
@@ -2809,6 +2814,7 @@ module XeroRuby
|
|
|
2809
2814
|
|
|
2810
2815
|
# query parameters
|
|
2811
2816
|
query_params = opts[:query_params] || {}
|
|
2817
|
+
query_params[:'summarizeErrors'] = opts[:'summarize_errors'] if !opts[:'summarize_errors'].nil?
|
|
2812
2818
|
|
|
2813
2819
|
# header parameters
|
|
2814
2820
|
header_params = opts[:header_params] || {}
|
|
@@ -6167,7 +6173,7 @@ module XeroRuby
|
|
|
6167
6173
|
return data, status_code, headers
|
|
6168
6174
|
end
|
|
6169
6175
|
|
|
6170
|
-
# Allows you to retrieve
|
|
6176
|
+
# Allows you to retrieve a single contacts in a Xero organisation
|
|
6171
6177
|
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
6172
6178
|
# @param contact_id [String] Unique identifier for a Contact
|
|
6173
6179
|
# @param [Hash] opts the optional parameters
|
|
@@ -6177,7 +6183,7 @@ module XeroRuby
|
|
|
6177
6183
|
data
|
|
6178
6184
|
end
|
|
6179
6185
|
|
|
6180
|
-
# Allows you to retrieve
|
|
6186
|
+
# Allows you to retrieve a single contacts in a Xero organisation
|
|
6181
6187
|
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
6182
6188
|
# @param contact_id [String] Unique identifier for a Contact
|
|
6183
6189
|
# @param [Hash] opts the optional parameters
|
|
@@ -6461,6 +6467,73 @@ module XeroRuby
|
|
|
6461
6467
|
return data, status_code, headers
|
|
6462
6468
|
end
|
|
6463
6469
|
|
|
6470
|
+
# Allows you to retrieve a single contact by Contact Number in a Xero organisation
|
|
6471
|
+
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
6472
|
+
# @param contact_number [String] This field is read only on the Xero contact screen, used to identify contacts in external systems (max length = 50).
|
|
6473
|
+
# @param [Hash] opts the optional parameters
|
|
6474
|
+
# @return [Contacts]
|
|
6475
|
+
def get_contact_by_contact_number(xero_tenant_id, contact_number, opts = {})
|
|
6476
|
+
data, _status_code, _headers = get_contact_by_contact_number_with_http_info(xero_tenant_id, contact_number, opts)
|
|
6477
|
+
data
|
|
6478
|
+
end
|
|
6479
|
+
|
|
6480
|
+
# Allows you to retrieve a single contact by Contact Number in a Xero organisation
|
|
6481
|
+
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
6482
|
+
# @param contact_number [String] This field is read only on the Xero contact screen, used to identify contacts in external systems (max length = 50).
|
|
6483
|
+
# @param [Hash] opts the optional parameters
|
|
6484
|
+
# @return [Array<(Contacts, Integer, Hash)>] Contacts data, response status code and response headers
|
|
6485
|
+
def get_contact_by_contact_number_with_http_info(xero_tenant_id, contact_number, opts = {})
|
|
6486
|
+
if @api_client.config.debugging
|
|
6487
|
+
@api_client.config.logger.debug 'Calling API: AccountingApi.get_contact_by_contact_number ...'
|
|
6488
|
+
end
|
|
6489
|
+
# verify the required parameter 'xero_tenant_id' is set
|
|
6490
|
+
if @api_client.config.client_side_validation && xero_tenant_id.nil?
|
|
6491
|
+
fail ArgumentError, "Missing the required parameter 'xero_tenant_id' when calling AccountingApi.get_contact_by_contact_number"
|
|
6492
|
+
end
|
|
6493
|
+
# verify the required parameter 'contact_number' is set
|
|
6494
|
+
if @api_client.config.client_side_validation && contact_number.nil?
|
|
6495
|
+
fail ArgumentError, "Missing the required parameter 'contact_number' when calling AccountingApi.get_contact_by_contact_number"
|
|
6496
|
+
end
|
|
6497
|
+
# resource path
|
|
6498
|
+
local_var_path = '/Contacts/{ContactNumber}'.sub('{' + 'ContactNumber' + '}', contact_number.to_s)
|
|
6499
|
+
|
|
6500
|
+
# query parameters
|
|
6501
|
+
query_params = opts[:query_params] || {}
|
|
6502
|
+
|
|
6503
|
+
# header parameters
|
|
6504
|
+
header_params = opts[:header_params] || {}
|
|
6505
|
+
# HTTP header 'Accept' (if needed)
|
|
6506
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
|
6507
|
+
header_params[:'xero-tenant-id'] = xero_tenant_id
|
|
6508
|
+
|
|
6509
|
+
# form parameters
|
|
6510
|
+
form_params = opts[:form_params] || {}
|
|
6511
|
+
|
|
6512
|
+
# http body (model)
|
|
6513
|
+
post_body = opts[:body]
|
|
6514
|
+
|
|
6515
|
+
# return_type
|
|
6516
|
+
return_type = opts[:return_type] || 'Contacts'
|
|
6517
|
+
|
|
6518
|
+
# auth_names
|
|
6519
|
+
auth_names = opts[:auth_names] || ['OAuth2']
|
|
6520
|
+
|
|
6521
|
+
new_options = opts.merge(
|
|
6522
|
+
:header_params => header_params,
|
|
6523
|
+
:query_params => query_params,
|
|
6524
|
+
:form_params => form_params,
|
|
6525
|
+
:body => post_body,
|
|
6526
|
+
:auth_names => auth_names,
|
|
6527
|
+
:return_type => return_type
|
|
6528
|
+
)
|
|
6529
|
+
|
|
6530
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
|
6531
|
+
if @api_client.config.debugging
|
|
6532
|
+
@api_client.config.logger.debug "API called: AccountingApi#get_contact_by_contact_number\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
6533
|
+
end
|
|
6534
|
+
return data, status_code, headers
|
|
6535
|
+
end
|
|
6536
|
+
|
|
6464
6537
|
# Allows you to retrieve CISSettings for a contact in a Xero organisation
|
|
6465
6538
|
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
6466
6539
|
# @param contact_id [String] Unique identifier for a Contact
|
|
@@ -6729,7 +6802,7 @@ module XeroRuby
|
|
|
6729
6802
|
return data, status_code, headers
|
|
6730
6803
|
end
|
|
6731
6804
|
|
|
6732
|
-
# Allows you to retrieve
|
|
6805
|
+
# Allows you to retrieve all contacts in a Xero organisation
|
|
6733
6806
|
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
6734
6807
|
# @param [Hash] opts the optional parameters
|
|
6735
6808
|
# @option opts [DateTime] :if_modified_since Only records created or modified since this timestamp will be returned
|
|
@@ -6744,7 +6817,7 @@ module XeroRuby
|
|
|
6744
6817
|
data
|
|
6745
6818
|
end
|
|
6746
6819
|
|
|
6747
|
-
# Allows you to retrieve
|
|
6820
|
+
# Allows you to retrieve all contacts in a Xero organisation
|
|
6748
6821
|
# @param xero_tenant_id [String] Xero identifier for Tenant
|
|
6749
6822
|
# @param [Hash] opts the optional parameters
|
|
6750
6823
|
# @option opts [DateTime] :if_modified_since Only records created or modified since this timestamp will be returned
|
|
@@ -9775,6 +9848,7 @@ module XeroRuby
|
|
|
9775
9848
|
# @option opts [DateTime] :if_modified_since Only records created or modified since this timestamp will be returned
|
|
9776
9849
|
# @option opts [String] :where Filter by an any element
|
|
9777
9850
|
# @option opts [String] :order Order by an any element
|
|
9851
|
+
# @option opts [Integer] :page Up to 100 payments will be returned in a single API call
|
|
9778
9852
|
# @return [Payments]
|
|
9779
9853
|
def get_payments(xero_tenant_id, opts = {})
|
|
9780
9854
|
data, _status_code, _headers = get_payments_with_http_info(xero_tenant_id, opts)
|
|
@@ -9787,6 +9861,7 @@ module XeroRuby
|
|
|
9787
9861
|
# @option opts [DateTime] :if_modified_since Only records created or modified since this timestamp will be returned
|
|
9788
9862
|
# @option opts [String] :where Filter by an any element
|
|
9789
9863
|
# @option opts [String] :order Order by an any element
|
|
9864
|
+
# @option opts [Integer] :page Up to 100 payments will be returned in a single API call
|
|
9790
9865
|
# @return [Array<(Payments, Integer, Hash)>] Payments data, response status code and response headers
|
|
9791
9866
|
def get_payments_with_http_info(xero_tenant_id, opts = {})
|
|
9792
9867
|
if @api_client.config.debugging
|
|
@@ -9803,6 +9878,7 @@ module XeroRuby
|
|
|
9803
9878
|
query_params = opts[:query_params] || {}
|
|
9804
9879
|
query_params[:'where'] = opts[:'where'] if !opts[:'where'].nil?
|
|
9805
9880
|
query_params[:'order'] = opts[:'order'] if !opts[:'order'].nil?
|
|
9881
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
|
9806
9882
|
|
|
9807
9883
|
# header parameters
|
|
9808
9884
|
header_params = opts[:header_params] || {}
|