-
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.
- Loading branch information
1 parent
84aa2c6
commit 46e353d
Showing
531 changed files
with
3,092 additions
and
1,120 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
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
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
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
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,23 @@ | ||
# XeroRuby::Files::UploadObject | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**body** | **String** | | | ||
**name** | **String** | exact name of the file you are uploading | | ||
**filename** | **String** | | | ||
**mime_type** | **String** | | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'XeroRuby::Files' | ||
|
||
instance = XeroRuby::Files::UploadObject.new(body: null, | ||
name: null, | ||
filename: null, | ||
mime_type: 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.