export interface TerminalPaymentPrepareRequest { user_currency: string; type: string; typeId: number; /** * Selected currency in which payment is made */ currency: string; /** * Payment amount */ amount?: number; /** * Wallet */ wallet?: string; /** * First name */ add_first_name?: string; /** * Surname */ add_last_name?: string; /** * Email */ add_email?: string; /** * Postal code */ add_zip?: string; /** * Phone number */ add_phone_number?: string; /** * Bank code */ add_bank_id?: string; /** * Document type */ add_document_type?: string; /** * Number of identity document, for example 20105631458 */ add_identify_number?: string; /** * Date of birth (YYYY-MM-DD) */ add_day_of_birth?: string; }