-
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 #249 from XeroAPI/xero-ruby-4.1.0
generates xero-ruby 4.1.0 from OAS 2.36.0
- Loading branch information
Showing
23 changed files
with
739 additions
and
26 deletions.
There are no files selected for viewing
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
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,25 @@ | ||
# XeroRuby::PayrollAu::PaidLeaveEarningsLine | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**leave_type_id** | **String** | Xero leave type identifier | | ||
**amount** | **BigDecimal** | Paid leave amount | | ||
**sgc_applied_leave_loading_amount** | **BigDecimal** | The amount of leave loading applied for the leave type that is subject to Superannuation Guarantee Contributions. *Only applicable for Leave Types with Annual Leave Categories | [optional] | ||
**sgc_exempted_leave_loading_amount** | **BigDecimal** | The amount of leave loading applied for the leave type that is exempt from Superannuation Guarantee Contributions. *Only applicable for Leave Types with Annual Leave Categories | [optional] | ||
**reset_stp_categorisation** | **Boolean** | Reset the STP categorisations for the leave type. *Only applicable for Leave Types with Annual Leave Categories | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'XeroRuby::PayrollAu' | ||
|
||
instance = XeroRuby::PayrollAu::PaidLeaveEarningsLine.new(leave_type_id: 742998cb-7584-4ecf-aa88-d694f59c50f9, | ||
amount: 500.0, | ||
sgc_applied_leave_loading_amount: 50.0, | ||
sgc_exempted_leave_loading_amount: 60.0, | ||
reset_stp_categorisation: true) | ||
``` | ||
|
||
|
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,16 @@ | ||
# XeroRuby::PayrollAu::PayOutType | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'XeroRuby::PayrollAu' | ||
|
||
instance = XeroRuby::PayrollAu::PayOutType.new() | ||
``` | ||
|
||
|
Oops, something went wrong.