Pay Line Loan
PayLineLoan [Schema]
This type is readonly.
Name | Type | Description |
---|---|---|
Identifier | xsd:string ( max: 35) | The alpah-numeric loan identifier; used to group pay lines. |
Interits from: PayLine[Schema]
Name | Type | Description |
---|---|---|
PayLine | PayLine | |
Description | xsd:string ( max: 100) | The description of the pay line displayed in the payslip report. |
Calculator | xsd:string ( max: 300) | The name of a Calculator responsible for generating the pay line. |
Generated | xsd:dateTime | The date and time the pay line was generated. |
PayCode | xsd:string ( max: 35) | A loose linkage to the type of pay line and it's calculator treatment. |
PayCodeType | SystemCodeType | The category of pay line. |
Value | Money | The monetary value of the pay line; used in the net pay sum. Typically positive for payments and negative for deductions. |
PaymentDate | xsd:date | The date the employees were paid in the pay run. Not applicable for year to date generated lines. |
TaxYear | xsd:integer | The tax year the pay run was in. |
TaxPeriod | xsd:integer | The tax period the pay run was in. |
PayRunSequence | xsd:integer | The sequence number of the owning pay run. |
Example
<?xml version="1.0"?>
<PayLineLoan xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Description>string</Description>
<Calculator>string</Calculator>
<Generated>2021-02-26T00:00:00+00:00</Generated>
<PayCode>string</PayCode>
<PayCodeType>NotSet</PayCodeType>
<Value>123.99</Value>
<PaymentDate>2021-02-26</PaymentDate>
<TaxYear>123</TaxYear>
<TaxPeriod>123</TaxPeriod>
<PayRunSequence>123</PayRunSequence>
<Identifier>string</Identifier>
</PayLineLoan>
{
"PayLineLoan": {
"Description": "string",
"Calculator": "string",
"Generated": "2021-02-26T00:00:00+00:00",
"PayCode": "string",
"PayCodeType": "NotSet",
"Value": "123.99",
"PaymentDate": "2021-02-26",
"TaxYear": "123",
"TaxPeriod": "123",
"PayRunSequence": "123",
"Identifier": "string"
}
}