Monetary and tax details of the charge.

ChargeDetails

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

Properties

chargeAmount: Money

ChargeDetails

description?: string

Description of the charge.

ChargeDetails

taxDetails?: TaxDetails[]

Tax amount details applied on this charge.

ChargeDetails

Type of the charge applied.

ChargeDetails