xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
32 lines (31 loc) • 756 B
TypeScript
import { DeductionTypeCalculationType } from '././deductionTypeCalculationType';
export declare class DeductionLine {
/**
* Xero deduction type identifier
*/
'deductionTypeID': string;
'calculationType'?: DeductionTypeCalculationType;
/**
* Deduction type amount
*/
'amount'?: number;
/**
* The Percentage of the Deduction
*/
'percentage'?: number;
/**
* Deduction number of units
*/
'numberOfUnits'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}