export interface TerminalPaymentPrepareResponse { /** * The payment wallet */ wallet?: string; /** * The amount without fee */ amount?: number; /** * The total amount */ total?: number; /** * Currency in which the payment will be calculated */ currency?: string; }