interface CancellationDetails {
    feeAmount?: number;
    forfeitedAmount?: number;
    reason: string;
    refundAmount: number;
    refundMethodDescription: string;
    tripCreditAmount: number;
    voucher?: CancellationVoucher;
}

Properties

feeAmount?: number
forfeitedAmount?: number
reason: string
refundAmount: number
refundMethodDescription: string
tripCreditAmount: number