Monetary and tax details of the allowance.

Export

AllowanceDetails

interface AllowanceDetails {
    allowanceAmount: Money;
    description?: string;
    taxDetails?: TaxDetails[];
    type: AllowanceDetailsTypeEnum;
}

Properties

allowanceAmount: Money

Memberof

AllowanceDetails

description?: string

Description of the allowance.

Memberof

AllowanceDetails

taxDetails?: TaxDetails[]

Tax amount details applied on this allowance.

Memberof

AllowanceDetails

Type of the allowance applied.

Memberof

AllowanceDetails