Details about the movement of money in the financial transaction. Breakdowns are further categorized into breakdown types, breakdown amounts, and further breakdowns.

Breakdown

interface Breakdown {
    breakdownAmount?: Currency;
    breakdowns?: Breakdown[];
    breakdownType?: string;
}

Properties

breakdownAmount?: Currency

Breakdown

breakdowns?: Breakdown[]

A list of breakdowns that provide details on how the total amount is calculated for the transaction.

Breakdown

breakdownType?: string

The type of charge.

Breakdown