xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
32 lines (31 loc) • 795 B
TypeScript
import { StatutoryDeductionCategory } from '././statutoryDeductionCategory';
export declare class StatutoryDeduction {
/**
* The Xero identifier for earnings order
*/
'id'?: string;
/**
* Name of the earnings order
*/
'name'?: string;
'statutoryDeductionCategory'?: StatutoryDeductionCategory;
/**
* Xero identifier for Liability Account
*/
'liabilityAccountId'?: string;
/**
* Identifier of a record is active or not.
*/
'currentRecord'?: boolean;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}