xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
44 lines (43 loc) • 1.49 kB
TypeScript
import { EmploymentTerminationPaymentType } from '././employmentTerminationPaymentType';
import { EntitlementFinalPayPayoutType } from '././entitlementFinalPayPayoutType';
import { LeaveLineCalculationType } from '././leaveLineCalculationType';
export declare class LeaveLine {
/**
* Xero leave type identifier
*/
'leaveTypeID'?: string;
'calculationType'?: LeaveLineCalculationType;
'entitlementFinalPayPayoutType'?: EntitlementFinalPayPayoutType;
'employmentTerminationPaymentType'?: EmploymentTerminationPaymentType;
/**
* amount of leave line
*/
'includeSuperannuationGuaranteeContribution'?: boolean;
/**
* Optional Boolean to determine if the earnings rate is considered as qualifying earnings for superannuation guarantee calculations. When not specified value is calculated based on superannuation settings
*/
'isQualifyingEarnings'?: boolean;
/**
* Number of units for leave line.
*/
'numberOfUnits'?: number;
/**
* Hours of leave accrued each year
*/
'annualNumberOfUnits'?: number;
/**
* Normal ordinary earnings number of units for leave line.
*/
'fullTimeNumberOfUnitsPerPeriod'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}