/** @description  This represents an amount charged */
export interface Charge {
    /** @description  The amount of the currency */
    amount: number;
    /** @description  A description for display purposes only */
    description: string;
}
