Monetary and tax details of the charge.

Export

ChargeDetails

interface ChargeDetails {
    chargeAmount: Money;
    description?: string;
    taxDetails?: TaxDetails[];
    type: ChargeDetailsTypeEnum;
}

Properties

chargeAmount: Money

Memberof

ChargeDetails

description?: string

Description of the charge.

Memberof

ChargeDetails

taxDetails?: TaxDetails[]

Tax amount details applied on this charge.

Memberof

ChargeDetails

Type of the charge applied.

Memberof

ChargeDetails