-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Showing
22 changed files
with
2,248 additions
and
137 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.