xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
30 lines (29 loc) • 654 B
TypeScript
export declare class DeductionLine {
/**
* Xero identifier for payroll deduction
*/
'deductionTypeID'?: string;
/**
* The amount of the deduction line
*/
'amount'?: number;
/**
* Identifies if the deduction is subject to tax
*/
'subjectToTax'?: boolean;
/**
* Deduction rate percentage
*/
'percentage'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}