xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
46 lines (45 loc) • 1.02 kB
TypeScript
export declare class Deduction {
/**
* The Xero identifier for Deduction
*/
'deductionId'?: string;
/**
* Name of the deduction
*/
'deductionName': string;
/**
* Deduction Category type
*/
'deductionCategory': Deduction.DeductionCategoryEnum;
/**
* Xero identifier for Liability Account
*/
'liabilityAccountId': string;
/**
* Identifier of a record is active or not.
*/
'currentRecord'?: boolean;
/**
* Standard amount of the deduction.
*/
'standardAmount'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace Deduction {
enum DeductionCategoryEnum {
PayrollGiving,
KiwiSaverVoluntaryContributions,
Superannuation,
NzOther
}
}