Skip to content

Commit

Permalink
Merge pull request #227 from XeroAPI/xero-ruby-3.11.0
Browse files Browse the repository at this point in the history
generates xero-ruby 3.11.0 from OAS 2.24.0 using cli v5.4.0
  • Loading branch information
RettBehrens authored Aug 5, 2022
2 parents 5c79ca4 + 46e353d commit 0d80354
Show file tree
Hide file tree
Showing 22 changed files with 2,248 additions and 137 deletions.
339 changes: 339 additions & 0 deletions docs/accounting/AccountingApi.md

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions docs/accounting/BatchPaymentDelete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# XeroRuby::Accounting::BatchPaymentDelete

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**batch_payment_id** | **String** | The Xero generated unique identifier for the bank transaction (read-only) |
**status** | **String** | The status of the batch payment. | [default to 'DELETED']

## Code Sample

```ruby
require 'XeroRuby::Accounting'

instance = XeroRuby::Accounting::BatchPaymentDelete.new(batch_payment_id: null,
status: null)
```


17 changes: 17 additions & 0 deletions docs/accounting/BatchPaymentDeleteByUrlParam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# XeroRuby::Accounting::BatchPaymentDeleteByUrlParam

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **String** | The status of the batch payment. | [default to 'DELETED']

## Code Sample

```ruby
require 'XeroRuby::Accounting'

instance = XeroRuby::Accounting::BatchPaymentDeleteByUrlParam.new(status: null)
```


12 changes: 10 additions & 2 deletions docs/accounting/RepeatingInvoice.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ Name | Type | Description | Notes
**total** | **BigDecimal** | Total of Invoice tax inclusive (i.e. SubTotal + TotalTax) | [optional]
**repeating_invoice_id** | **String** | Xero generated unique identifier for repeating invoice template | [optional]
**id** | **String** | Xero generated unique identifier for repeating invoice template | [optional]
**has_attachments** | **Boolean** | boolean to indicate if an invoice has an attachment | [optional] [default to false]
**has_attachments** | **Boolean** | Boolean to indicate if an invoice has an attachment | [optional] [default to false]
**attachments** | [**Array<Attachment>**](Attachment.md) | Displays array of attachments from the API | [optional]
**approved_for_sending** | **Boolean** | Boolean to indicate whether the invoice has been approved for sending | [optional] [default to false]
**send_copy** | **Boolean** | Boolean to indicate whether a copy is sent to sender's email | [optional] [default to false]
**mark_as_sent** | **Boolean** | Boolean to indicate whether the invoice in the Xero app displays as \"sent\" | [optional] [default to false]
**include_pdf** | **Boolean** | Boolean to indicate whether to include PDF attachment | [optional] [default to false]

## Code Sample

Expand All @@ -41,7 +45,11 @@ instance = XeroRuby::Accounting::RepeatingInvoice.new(type: null,
repeating_invoice_id: null,
id: null,
has_attachments: false,
attachments: null)
attachments: null,
approved_for_sending: false,
send_copy: false,
mark_as_sent: false,
include_pdf: false)
```


Loading

0 comments on commit 0d80354

Please sign in to comment.