import type { Frequency } from './frequency'; import type { currencyCode } from './currency'; import type { PaymentMethodName } from './enums/paymentMethods'; export interface GatewayResponse { name: PaymentMethodName; request: { amount: string; currency: currencyCode; hash: string; reference: { transaction: string; invoice: string; }; merchant: { id: string; }; application: { id: string; }; configuration: { show_result: string; hide_mobile_qr: string; frequency: Frequency; }; }; }