import RequestBody from '../requestBody'; interface CreatePaymentRequest extends RequestBody { subject: string; currency: string; amount: number; transaction_id?: string; custom?: string; body?: string; bank_id?: string; return_url?: string; cancel_url?: string; picture_url?: string; notify_url?: string; contract_url?: string; notify_api_version?: string; expires_date?: string; send_email?: boolean; payer_name?: string; payer_email?: string; send_reminders?: boolean; responsible_user_email?: string; fixed_payer_personal_identifier?: string; integrator_fee?: number; collect_account_uuid?: string; confirm_timeout_date?: string; mandatory_payment_method?: string; } export default CreatePaymentRequest; //# sourceMappingURL=request.d.ts.map