import { AdditionalCurrenciesChargeInfo } from './additional-currencies-charge-info'; export interface ChargeInfo { /** indicates whether or not the feature is available and activated by the guest */ available: boolean; /** array with possible amounts in cent */ amounts: number[]; currency: string; additionalCurrencies: AdditionalCurrenciesChargeInfo[]; /** amount of auto charge, if any */ autoCharged: number; }