xero-ruby 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +68 -0
- data/docs/accounting/AccountingApi.md +1497 -785
- 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/Organisation.md +2 -0
- data/docs/accounting/Payment.md +4 -4
- data/docs/accounting/Quote.md +5 -1
- 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 +21 -2
- data/lib/xero-ruby/api/accounting_api.rb +77 -85
- 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 +33 -7
- data/lib/xero-ruby/api_error.rb +2 -2
- data/lib/xero-ruby/configuration.rb +4 -2
- data/lib/xero-ruby/models/accounting/account.rb +56 -20
- data/lib/xero-ruby/models/accounting/account_type.rb +2 -2
- data/lib/xero-ruby/models/accounting/accounts.rb +4 -3
- data/lib/xero-ruby/models/accounting/accounts_payable.rb +5 -3
- data/lib/xero-ruby/models/accounting/accounts_receivable.rb +5 -3
- data/lib/xero-ruby/models/accounting/address.rb +15 -12
- data/lib/xero-ruby/models/accounting/allocation.rb +61 -8
- data/lib/xero-ruby/models/accounting/allocations.rb +4 -3
- data/lib/xero-ruby/models/accounting/attachment.rb +8 -8
- data/lib/xero-ruby/models/accounting/attachments.rb +4 -3
- data/lib/xero-ruby/models/accounting/balances.rb +5 -3
- data/lib/xero-ruby/models/accounting/bank_transaction.rb +35 -20
- data/lib/xero-ruby/models/accounting/bank_transactions.rb +4 -3
- data/lib/xero-ruby/models/accounting/bank_transfer.rb +15 -13
- data/lib/xero-ruby/models/accounting/bank_transfers.rb +4 -3
- data/lib/xero-ruby/models/accounting/batch_payment.rb +24 -18
- data/lib/xero-ruby/models/accounting/batch_payment_details.rb +7 -7
- data/lib/xero-ruby/models/accounting/batch_payments.rb +4 -3
- data/lib/xero-ruby/models/accounting/bill.rb +4 -3
- data/lib/xero-ruby/models/accounting/branding_theme.rb +9 -8
- data/lib/xero-ruby/models/accounting/branding_themes.rb +4 -3
- data/lib/xero-ruby/models/accounting/cis_org_setting.rb +5 -5
- data/lib/xero-ruby/models/accounting/cis_setting.rb +4 -4
- data/lib/xero-ruby/models/accounting/cis_settings.rb +4 -3
- data/lib/xero-ruby/models/accounting/contact.rb +46 -36
- data/lib/xero-ruby/models/accounting/contact_group.rb +8 -6
- data/lib/xero-ruby/models/accounting/contact_groups.rb +4 -3
- data/lib/xero-ruby/models/accounting/contact_person.rb +6 -6
- data/lib/xero-ruby/models/accounting/contacts.rb +4 -3
- data/lib/xero-ruby/models/accounting/country_code.rb +2 -2
- data/lib/xero-ruby/models/accounting/credit_note.rb +38 -25
- data/lib/xero-ruby/models/accounting/credit_notes.rb +4 -3
- data/lib/xero-ruby/models/accounting/currencies.rb +4 -3
- data/lib/xero-ruby/models/accounting/currency.rb +5 -4
- data/lib/xero-ruby/models/accounting/currency_code.rb +2 -2
- data/lib/xero-ruby/models/accounting/element.rb +10 -4
- data/lib/xero-ruby/models/accounting/employee.rb +13 -8
- data/lib/xero-ruby/models/accounting/employees.rb +4 -3
- data/lib/xero-ruby/models/accounting/error.rb +6 -6
- data/lib/xero-ruby/models/accounting/expense_claim.rb +19 -12
- data/lib/xero-ruby/models/accounting/expense_claims.rb +4 -3
- data/lib/xero-ruby/models/accounting/external_link.rb +10 -4
- data/lib/xero-ruby/models/accounting/history_record.rb +6 -6
- data/lib/xero-ruby/models/accounting/history_records.rb +4 -3
- data/lib/xero-ruby/models/accounting/invoice.rb +56 -37
- data/lib/xero-ruby/models/accounting/invoice_reminder.rb +3 -3
- data/lib/xero-ruby/models/accounting/invoice_reminders.rb +4 -3
- data/lib/xero-ruby/models/accounting/invoices.rb +4 -3
- data/lib/xero-ruby/models/accounting/item.rb +18 -16
- data/lib/xero-ruby/models/accounting/items.rb +4 -3
- data/lib/xero-ruby/models/accounting/journal.rb +35 -10
- data/lib/xero-ruby/models/accounting/journal_line.rb +14 -13
- data/lib/xero-ruby/models/accounting/journals.rb +4 -3
- data/lib/xero-ruby/models/accounting/line_amount_types.rb +2 -2
- data/lib/xero-ruby/models/accounting/line_item.rb +15 -15
- data/lib/xero-ruby/models/accounting/line_item_tracking.rb +6 -6
- data/lib/xero-ruby/models/accounting/linked_transaction.rb +21 -13
- data/lib/xero-ruby/models/accounting/linked_transactions.rb +4 -3
- data/lib/xero-ruby/models/accounting/manual_journal.rb +21 -15
- data/lib/xero-ruby/models/accounting/manual_journal_line.rb +9 -9
- data/lib/xero-ruby/models/accounting/manual_journals.rb +4 -3
- data/lib/xero-ruby/models/accounting/online_invoice.rb +3 -3
- data/lib/xero-ruby/models/accounting/online_invoices.rb +4 -3
- data/lib/xero-ruby/models/accounting/organisation.rb +103 -43
- data/lib/xero-ruby/models/accounting/organisations.rb +4 -3
- data/lib/xero-ruby/models/accounting/overpayment.rb +27 -18
- data/lib/xero-ruby/models/accounting/overpayments.rb +4 -3
- data/lib/xero-ruby/models/accounting/payment.rb +41 -22
- data/lib/xero-ruby/models/accounting/payment_delete.rb +3 -3
- data/lib/xero-ruby/models/accounting/payment_service.rb +8 -8
- data/lib/xero-ruby/models/accounting/payment_services.rb +4 -3
- data/lib/xero-ruby/models/accounting/payment_term.rb +5 -3
- data/lib/xero-ruby/models/accounting/payment_term_type.rb +2 -2
- data/lib/xero-ruby/models/accounting/payments.rb +4 -3
- data/lib/xero-ruby/models/accounting/phone.rb +12 -6
- data/lib/xero-ruby/models/accounting/prepayment.rb +28 -18
- data/lib/xero-ruby/models/accounting/prepayments.rb +4 -3
- data/lib/xero-ruby/models/accounting/purchase.rb +6 -6
- data/lib/xero-ruby/models/accounting/purchase_order.rb +36 -28
- data/lib/xero-ruby/models/accounting/purchase_orders.rb +4 -3
- data/lib/xero-ruby/models/accounting/quote.rb +50 -24
- data/lib/xero-ruby/models/accounting/quote_line_amount_types.rb +2 -2
- data/lib/xero-ruby/models/accounting/quote_status_codes.rb +2 -2
- data/lib/xero-ruby/models/accounting/quotes.rb +4 -3
- data/lib/xero-ruby/models/accounting/receipt.rb +25 -16
- data/lib/xero-ruby/models/accounting/receipts.rb +4 -3
- data/lib/xero-ruby/models/accounting/repeating_invoice.rb +23 -14
- data/lib/xero-ruby/models/accounting/repeating_invoices.rb +4 -3
- data/lib/xero-ruby/models/accounting/report.rb +10 -8
- data/lib/xero-ruby/models/accounting/report_attribute.rb +5 -3
- data/lib/xero-ruby/models/accounting/report_cell.rb +5 -3
- data/lib/xero-ruby/models/accounting/report_fields.rb +6 -3
- data/lib/xero-ruby/models/accounting/report_row.rb +6 -3
- data/lib/xero-ruby/models/accounting/report_rows.rb +7 -3
- data/lib/xero-ruby/models/accounting/report_with_row.rb +11 -9
- data/lib/xero-ruby/models/accounting/report_with_rows.rb +4 -3
- data/lib/xero-ruby/models/accounting/reports.rb +4 -3
- data/lib/xero-ruby/models/accounting/request_empty.rb +3 -3
- data/lib/xero-ruby/models/accounting/row_type.rb +2 -2
- data/lib/xero-ruby/models/accounting/sales_tracking_category.rb +4 -4
- data/lib/xero-ruby/models/accounting/schedule.rb +19 -11
- data/lib/xero-ruby/models/accounting/tax_component.rb +6 -6
- data/lib/xero-ruby/models/accounting/tax_rate.rb +94 -16
- data/lib/xero-ruby/models/accounting/tax_rates.rb +4 -3
- data/lib/xero-ruby/models/accounting/tax_type.rb +2 -2
- data/lib/xero-ruby/models/accounting/ten_nintey_nine_contact.rb +24 -24
- data/lib/xero-ruby/models/accounting/time_zone.rb +2 -2
- data/lib/xero-ruby/models/accounting/tracking_categories.rb +4 -3
- data/lib/xero-ruby/models/accounting/tracking_category.rb +11 -8
- data/lib/xero-ruby/models/accounting/tracking_option.rb +9 -6
- data/lib/xero-ruby/models/accounting/tracking_options.rb +4 -3
- data/lib/xero-ruby/models/accounting/user.rb +16 -9
- data/lib/xero-ruby/models/accounting/users.rb +4 -3
- data/lib/xero-ruby/models/accounting/validation_error.rb +3 -3
- data/lib/xero-ruby/models/assets/asset.rb +17 -14
- 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 +9 -13
- data/lib/xero-ruby/models/assets/assets.rb +5 -3
- data/lib/xero-ruby/models/assets/book_depreciation_detail.rb +9 -9
- data/lib/xero-ruby/models/assets/book_depreciation_setting.rb +21 -10
- data/lib/xero-ruby/models/assets/error.rb +7 -7
- data/lib/xero-ruby/models/assets/field_validation_errors_element.rb +8 -8
- data/lib/xero-ruby/models/assets/pagination.rb +7 -3
- data/lib/xero-ruby/models/assets/resource_validation_errors_element.rb +7 -7
- data/lib/xero-ruby/models/assets/setting.rb +10 -10
- data/lib/xero-ruby/models/projects/amount.rb +214 -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 +214 -0
- data/lib/xero-ruby/models/projects/pagination.rb +234 -0
- data/lib/xero-ruby/models/projects/project.rb +419 -0
- data/lib/xero-ruby/models/projects/project_create_or_update.rb +239 -0
- data/lib/xero-ruby/models/projects/project_patch.rb +209 -0
- data/lib/xero-ruby/models/projects/project_status.rb +37 -0
- data/lib/xero-ruby/models/projects/project_user.rb +224 -0
- data/lib/xero-ruby/models/projects/project_users.rb +216 -0
- data/lib/xero-ruby/models/projects/projects.rb +216 -0
- data/lib/xero-ruby/models/projects/task.rb +381 -0
- data/lib/xero-ruby/models/projects/task_create_or_update.rb +249 -0
- data/lib/xero-ruby/models/projects/tasks.rb +216 -0
- data/lib/xero-ruby/models/projects/time_entries.rb +216 -0
- data/lib/xero-ruby/models/projects/time_entry.rb +320 -0
- data/lib/xero-ruby/models/projects/time_entry_create_or_update.rb +264 -0
- data/lib/xero-ruby/version.rb +3 -3
- data/spec/accounting/api/accounting_api_spec.rb +3 -3
- data/spec/api_client_spec.rb +23 -23
- data/spec/assets/api/asset_api_spec.rb +3 -3
- data/spec/configuration_spec.rb +7 -23
- 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/xero-ruby.gem +0 -0
- data/xero-ruby.gemspec +3 -3
- metadata +83 -7
- data/xero-ruby-1.0.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.2
|
|
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
|
|
|
@@ -15,8 +15,9 @@ require 'date'
|
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
17
|
class Contacts
|
|
18
|
-
attr_accessor :contacts
|
|
19
18
|
|
|
19
|
+
attr_accessor :contacts
|
|
20
|
+
|
|
20
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
21
22
|
def self.attribute_map
|
|
22
23
|
{
|
|
@@ -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.2
|
|
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.2
|
|
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,79 +17,90 @@ module XeroRuby::Accounting
|
|
|
17
17
|
class CreditNote
|
|
18
18
|
# See Credit Note Types
|
|
19
19
|
attr_accessor :type
|
|
20
|
+
ACCPAYCREDIT = "ACCPAYCREDIT".freeze
|
|
21
|
+
ACCRECCREDIT = "ACCRECCREDIT".freeze
|
|
22
|
+
|
|
20
23
|
|
|
21
24
|
attr_accessor :contact
|
|
22
|
-
|
|
25
|
+
|
|
23
26
|
# The date the credit note is issued YYYY-MM-DD. If the Date element is not specified then it will default to the current date based on the timezone setting of the organisation
|
|
24
27
|
attr_accessor :date
|
|
25
|
-
|
|
28
|
+
|
|
26
29
|
# See Credit Note Status Codes
|
|
27
30
|
attr_accessor :status
|
|
31
|
+
DRAFT = "DRAFT".freeze
|
|
32
|
+
SUBMITTED = "SUBMITTED".freeze
|
|
33
|
+
DELETED = "DELETED".freeze
|
|
34
|
+
AUTHORISED = "AUTHORISED".freeze
|
|
35
|
+
PAID = "PAID".freeze
|
|
36
|
+
VOIDED = "VOIDED".freeze
|
|
37
|
+
|
|
28
38
|
|
|
29
39
|
attr_accessor :line_amount_types
|
|
30
|
-
|
|
40
|
+
|
|
31
41
|
# See Invoice Line Items
|
|
32
42
|
attr_accessor :line_items
|
|
33
|
-
|
|
43
|
+
|
|
34
44
|
# The subtotal of the credit note excluding taxes
|
|
35
45
|
attr_accessor :sub_total
|
|
36
|
-
|
|
46
|
+
|
|
37
47
|
# The total tax on the credit note
|
|
38
48
|
attr_accessor :total_tax
|
|
39
|
-
|
|
49
|
+
|
|
40
50
|
# The total of the Credit Note(subtotal + total tax)
|
|
41
51
|
attr_accessor :total
|
|
42
|
-
|
|
52
|
+
|
|
43
53
|
# UTC timestamp of last update to the credit note
|
|
44
54
|
attr_accessor :updated_date_utc
|
|
55
|
+
|
|
45
56
|
|
|
46
57
|
attr_accessor :currency_code
|
|
47
|
-
|
|
58
|
+
|
|
48
59
|
# Date when credit note was fully paid(UTC format)
|
|
49
60
|
attr_accessor :fully_paid_on_date
|
|
50
|
-
|
|
61
|
+
|
|
51
62
|
# Xero generated unique identifier
|
|
52
63
|
attr_accessor :credit_note_id
|
|
53
|
-
|
|
64
|
+
|
|
54
65
|
# ACCRECCREDIT – Unique alpha numeric code identifying credit note (when missing will auto-generate from your Organisation Invoice Settings)
|
|
55
66
|
attr_accessor :credit_note_number
|
|
56
|
-
|
|
67
|
+
|
|
57
68
|
# ACCRECCREDIT only – additional reference number
|
|
58
69
|
attr_accessor :reference
|
|
59
|
-
|
|
70
|
+
|
|
60
71
|
# boolean to indicate if a credit note has been sent to a contact via the Xero app (currently read only)
|
|
61
72
|
attr_accessor :sent_to_contact
|
|
62
|
-
|
|
73
|
+
|
|
63
74
|
# The currency rate for a multicurrency invoice. If no rate is specified, the XE.com day rate is used
|
|
64
75
|
attr_accessor :currency_rate
|
|
65
|
-
|
|
76
|
+
|
|
66
77
|
# The remaining credit balance on the Credit Note
|
|
67
78
|
attr_accessor :remaining_credit
|
|
68
|
-
|
|
79
|
+
|
|
69
80
|
# See Allocations
|
|
70
81
|
attr_accessor :allocations
|
|
71
|
-
|
|
82
|
+
|
|
72
83
|
# The amount of applied to an invoice
|
|
73
84
|
attr_accessor :applied_amount
|
|
74
|
-
|
|
85
|
+
|
|
75
86
|
# See Payments
|
|
76
87
|
attr_accessor :payments
|
|
77
|
-
|
|
88
|
+
|
|
78
89
|
# See BrandingThemes
|
|
79
90
|
attr_accessor :branding_theme_id
|
|
80
|
-
|
|
91
|
+
|
|
81
92
|
# A string to indicate if a invoice status
|
|
82
93
|
attr_accessor :status_attribute_string
|
|
83
|
-
|
|
94
|
+
|
|
84
95
|
# boolean to indicate if a credit note has an attachment
|
|
85
96
|
attr_accessor :has_attachments
|
|
86
|
-
|
|
97
|
+
|
|
87
98
|
# A boolean to indicate if a credit note has an validation errors
|
|
88
99
|
attr_accessor :has_errors
|
|
89
|
-
|
|
100
|
+
|
|
90
101
|
# Displays array of validation error messages from the API
|
|
91
102
|
attr_accessor :validation_errors
|
|
92
|
-
|
|
103
|
+
|
|
93
104
|
class EnumAttributeValidator
|
|
94
105
|
attr_reader :datatype
|
|
95
106
|
attr_reader :allowable_values
|
|
@@ -297,6 +308,8 @@ module XeroRuby::Accounting
|
|
|
297
308
|
|
|
298
309
|
if attributes.key?(:'has_errors')
|
|
299
310
|
self.has_errors = attributes[:'has_errors']
|
|
311
|
+
else
|
|
312
|
+
self.has_errors = false
|
|
300
313
|
end
|
|
301
314
|
|
|
302
315
|
if attributes.key?(:'validation_errors')
|
|
@@ -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.2
|
|
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
|
|
|
@@ -15,8 +15,9 @@ require 'date'
|
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
17
|
class CreditNotes
|
|
18
|
-
attr_accessor :credit_notes
|
|
19
18
|
|
|
19
|
+
attr_accessor :credit_notes
|
|
20
|
+
|
|
20
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
21
22
|
def self.attribute_map
|
|
22
23
|
{
|
|
@@ -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.2
|
|
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
|
|
|
@@ -15,8 +15,9 @@ require 'date'
|
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
17
|
class Currencies
|
|
18
|
-
attr_accessor :currencies
|
|
19
18
|
|
|
19
|
+
attr_accessor :currencies
|
|
20
|
+
|
|
20
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
21
22
|
def self.attribute_map
|
|
22
23
|
{
|
|
@@ -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.2
|
|
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
|
|
|
@@ -15,11 +15,12 @@ require 'date'
|
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
17
|
class Currency
|
|
18
|
-
attr_accessor :code
|
|
19
18
|
|
|
19
|
+
attr_accessor :code
|
|
20
|
+
|
|
20
21
|
# Name of Currency
|
|
21
22
|
attr_accessor :description
|
|
22
|
-
|
|
23
|
+
|
|
23
24
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
24
25
|
def self.attribute_map
|
|
25
26
|
{
|
|
@@ -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.2
|
|
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.2
|
|
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,22 +17,28 @@ module XeroRuby::Accounting
|
|
|
17
17
|
class Element
|
|
18
18
|
# Array of Validation Error message
|
|
19
19
|
attr_accessor :validation_errors
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
# Unique ID for batch payment object with validation error
|
|
22
22
|
attr_accessor :batch_payment_id
|
|
23
|
+
|
|
23
24
|
|
|
24
25
|
attr_accessor :bank_transaction_id
|
|
26
|
+
|
|
25
27
|
|
|
26
28
|
attr_accessor :credit_note_id
|
|
29
|
+
|
|
27
30
|
|
|
28
31
|
attr_accessor :contact_id
|
|
32
|
+
|
|
29
33
|
|
|
30
34
|
attr_accessor :invoice_id
|
|
35
|
+
|
|
31
36
|
|
|
32
37
|
attr_accessor :item_id
|
|
38
|
+
|
|
33
39
|
|
|
34
40
|
attr_accessor :purchase_order_id
|
|
35
|
-
|
|
41
|
+
|
|
36
42
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
37
43
|
def self.attribute_map
|
|
38
44
|
{
|
|
@@ -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.2
|
|
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,26 +17,31 @@ module XeroRuby::Accounting
|
|
|
17
17
|
class Employee
|
|
18
18
|
# The Xero identifier for an employee e.g. 297c2dc5-cc47-4afd-8ec8-74990b8761e9
|
|
19
19
|
attr_accessor :employee_id
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
# Current status of an employee – see contact status types
|
|
22
22
|
attr_accessor :status
|
|
23
|
-
|
|
23
|
+
ACTIVE = "ACTIVE".freeze
|
|
24
|
+
ARCHIVED = "ARCHIVED".freeze
|
|
25
|
+
GDPRREQUEST = "GDPRREQUEST".freeze
|
|
26
|
+
|
|
24
27
|
# First name of an employee (max length = 255)
|
|
25
28
|
attr_accessor :first_name
|
|
26
|
-
|
|
29
|
+
|
|
27
30
|
# Last name of an employee (max length = 255)
|
|
28
31
|
attr_accessor :last_name
|
|
32
|
+
|
|
29
33
|
|
|
30
34
|
attr_accessor :external_link
|
|
35
|
+
|
|
31
36
|
|
|
32
37
|
attr_accessor :updated_date_utc
|
|
33
|
-
|
|
38
|
+
|
|
34
39
|
# A string to indicate if a invoice status
|
|
35
40
|
attr_accessor :status_attribute_string
|
|
36
|
-
|
|
41
|
+
|
|
37
42
|
# Displays array of validation error messages from the API
|
|
38
43
|
attr_accessor :validation_errors
|
|
39
|
-
|
|
44
|
+
|
|
40
45
|
class EnumAttributeValidator
|
|
41
46
|
attr_reader :datatype
|
|
42
47
|
attr_reader :allowable_values
|
|
@@ -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.2
|
|
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
|
|
|
@@ -15,8 +15,9 @@ require 'date'
|
|
|
15
15
|
|
|
16
16
|
module XeroRuby::Accounting
|
|
17
17
|
class Employees
|
|
18
|
-
attr_accessor :employees
|
|
19
18
|
|
|
19
|
+
attr_accessor :employees
|
|
20
|
+
|
|
20
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
21
22
|
def self.attribute_map
|
|
22
23
|
{
|
|
@@ -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.2
|
|
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,16 +17,16 @@ module XeroRuby::Accounting
|
|
|
17
17
|
class Error
|
|
18
18
|
# Exception number
|
|
19
19
|
attr_accessor :error_number
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
# Exception type
|
|
22
22
|
attr_accessor :type
|
|
23
|
-
|
|
23
|
+
|
|
24
24
|
# Exception message
|
|
25
25
|
attr_accessor :message
|
|
26
|
-
|
|
26
|
+
|
|
27
27
|
# Array of Elements of validation Errors
|
|
28
28
|
attr_accessor :elements
|
|
29
|
-
|
|
29
|
+
|
|
30
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
31
31
|
def self.attribute_map
|
|
32
32
|
{
|
|
@@ -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.2
|
|
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,38 +17,45 @@ module XeroRuby::Accounting
|
|
|
17
17
|
class ExpenseClaim
|
|
18
18
|
# Xero generated unique identifier for an expense claim
|
|
19
19
|
attr_accessor :expense_claim_id
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
# Current status of an expense claim – see status types
|
|
22
22
|
attr_accessor :status
|
|
23
|
-
|
|
23
|
+
SUBMITTED = "SUBMITTED".freeze
|
|
24
|
+
AUTHORISED = "AUTHORISED".freeze
|
|
25
|
+
PAID = "PAID".freeze
|
|
26
|
+
VOIDED = "VOIDED".freeze
|
|
27
|
+
DELETED = "DELETED".freeze
|
|
28
|
+
|
|
24
29
|
# See Payments
|
|
25
30
|
attr_accessor :payments
|
|
31
|
+
|
|
26
32
|
|
|
27
33
|
attr_accessor :user
|
|
34
|
+
|
|
28
35
|
|
|
29
36
|
attr_accessor :receipts
|
|
30
|
-
|
|
37
|
+
|
|
31
38
|
# Last modified date UTC format
|
|
32
39
|
attr_accessor :updated_date_utc
|
|
33
|
-
|
|
40
|
+
|
|
34
41
|
# The total of an expense claim being paid
|
|
35
42
|
attr_accessor :total
|
|
36
|
-
|
|
43
|
+
|
|
37
44
|
# The amount due to be paid for an expense claim
|
|
38
45
|
attr_accessor :amount_due
|
|
39
|
-
|
|
46
|
+
|
|
40
47
|
# The amount still to pay for an expense claim
|
|
41
48
|
attr_accessor :amount_paid
|
|
42
|
-
|
|
49
|
+
|
|
43
50
|
# The date when the expense claim is due to be paid YYYY-MM-DD
|
|
44
51
|
attr_accessor :payment_due_date
|
|
45
|
-
|
|
52
|
+
|
|
46
53
|
# The date the expense claim will be reported in Xero YYYY-MM-DD
|
|
47
54
|
attr_accessor :reporting_date
|
|
48
|
-
|
|
55
|
+
|
|
49
56
|
# The Xero identifier for the Receipt e.g. e59a2c7f-1306-4078-a0f3-73537afcbba9
|
|
50
57
|
attr_accessor :receipt_id
|
|
51
|
-
|
|
58
|
+
|
|
52
59
|
class EnumAttributeValidator
|
|
53
60
|
attr_reader :datatype
|
|
54
61
|
attr_reader :allowable_values
|