Skip to content

Commit 0d80354

Browse files
authored
Merge pull request #227 from XeroAPI/xero-ruby-3.11.0
generates xero-ruby 3.11.0 from OAS 2.24.0 using cli v5.4.0
2 parents 5c79ca4 + 46e353d commit 0d80354

File tree

22 files changed

+2248
-137
lines changed

22 files changed

+2248
-137
lines changed

docs/accounting/AccountingApi.md

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# XeroRuby::Accounting::BatchPaymentDelete
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**batch_payment_id** | **String** | The Xero generated unique identifier for the bank transaction (read-only) |
8+
**status** | **String** | The status of the batch payment. | [default to 'DELETED']
9+
10+
## Code Sample
11+
12+
```ruby
13+
require 'XeroRuby::Accounting'
14+
15+
instance = XeroRuby::Accounting::BatchPaymentDelete.new(batch_payment_id: null,
16+
status: null)
17+
```
18+
19+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# XeroRuby::Accounting::BatchPaymentDeleteByUrlParam
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**status** | **String** | The status of the batch payment. | [default to 'DELETED']
8+
9+
## Code Sample
10+
11+
```ruby
12+
require 'XeroRuby::Accounting'
13+
14+
instance = XeroRuby::Accounting::BatchPaymentDeleteByUrlParam.new(status: null)
15+
```
16+
17+

docs/accounting/RepeatingInvoice.md

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

2428
## Code Sample
2529

@@ -41,7 +45,11 @@ instance = XeroRuby::Accounting::RepeatingInvoice.new(type: null,
4145
repeating_invoice_id: null,
4246
id: null,
4347
has_attachments: false,
44-
attachments: null)
48+
attachments: null,
49+
approved_for_sending: false,
50+
send_copy: false,
51+
mark_as_sent: false,
52+
include_pdf: false)
4553
```
4654

4755

0 commit comments

Comments
 (0)