adyen-apimatic-sdk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +28 -0
- data/README.md +288 -0
- data/bin/console +15 -0
- data/lib/adyen_ap_is/api_helper.rb +10 -0
- data/lib/adyen_ap_is/apis/account_company_level_api.rb +147 -0
- data/lib/adyen_ap_is/apis/account_merchant_level_api.rb +186 -0
- data/lib/adyen_ap_is/apis/account_store_level_api.rb +421 -0
- data/lib/adyen_ap_is/apis/allowed_origins_company_level_api.rb +223 -0
- data/lib/adyen_ap_is/apis/allowed_origins_merchant_level_api.rb +223 -0
- data/lib/adyen_ap_is/apis/android_files_company_level_api.rb +338 -0
- data/lib/adyen_ap_is/apis/api_credentials_company_level_api.rb +232 -0
- data/lib/adyen_ap_is/apis/api_credentials_merchant_level_api.rb +231 -0
- data/lib/adyen_ap_is/apis/api_key_company_level_api.rb +58 -0
- data/lib/adyen_ap_is/apis/api_key_merchant_level_api.rb +58 -0
- data/lib/adyen_ap_is/apis/base_api.rb +67 -0
- data/lib/adyen_ap_is/apis/client_key_company_level_api.rb +60 -0
- data/lib/adyen_ap_is/apis/client_key_merchant_level_api.rb +60 -0
- data/lib/adyen_ap_is/apis/donations_api.rb +96 -0
- data/lib/adyen_ap_is/apis/modifications_api.rb +394 -0
- data/lib/adyen_ap_is/apis/my_api_credential_api.rb +245 -0
- data/lib/adyen_ap_is/apis/orders_api.rb +138 -0
- data/lib/adyen_ap_is/apis/payment_links_api.rb +139 -0
- data/lib/adyen_ap_is/apis/payment_methods_merchant_level_api.rb +346 -0
- data/lib/adyen_ap_is/apis/payments_api.rb +277 -0
- data/lib/adyen_ap_is/apis/payout_settings_merchant_level_api.rb +261 -0
- data/lib/adyen_ap_is/apis/recurring_api.rb +126 -0
- data/lib/adyen_ap_is/apis/split_configuration_merchant_level_api.rb +492 -0
- data/lib/adyen_ap_is/apis/terminal_actions_company_level_api.rb +130 -0
- data/lib/adyen_ap_is/apis/terminal_actions_terminal_level_api.rb +66 -0
- data/lib/adyen_ap_is/apis/terminal_orders_company_level_api.rb +575 -0
- data/lib/adyen_ap_is/apis/terminal_orders_merchant_level_api.rb +573 -0
- data/lib/adyen_ap_is/apis/terminal_settings_company_level_api.rb +248 -0
- data/lib/adyen_ap_is/apis/terminal_settings_merchant_level_api.rb +249 -0
- data/lib/adyen_ap_is/apis/terminal_settings_store_level_api.rb +503 -0
- data/lib/adyen_ap_is/apis/terminal_settings_terminal_level_api.rb +222 -0
- data/lib/adyen_ap_is/apis/terminals_terminal_level_api.rb +137 -0
- data/lib/adyen_ap_is/apis/users_company_level_api.rb +212 -0
- data/lib/adyen_ap_is/apis/users_merchant_level_api.rb +213 -0
- data/lib/adyen_ap_is/apis/utility_api.rb +168 -0
- data/lib/adyen_ap_is/apis/webhooks_company_level_api.rb +382 -0
- data/lib/adyen_ap_is/apis/webhooks_merchant_level_api.rb +375 -0
- data/lib/adyen_ap_is/client.rb +285 -0
- data/lib/adyen_ap_is/configuration.rb +180 -0
- data/lib/adyen_ap_is/exceptions/api_exception.rb +21 -0
- data/lib/adyen_ap_is/exceptions/default_error_response_entity_exception.rb +97 -0
- data/lib/adyen_ap_is/exceptions/rest_service_error_exception.rb +102 -0
- data/lib/adyen_ap_is/exceptions/service_error_exception.rb +78 -0
- data/lib/adyen_ap_is/http/api_response.rb +19 -0
- data/lib/adyen_ap_is/http/auth/api_key_auth.rb +52 -0
- data/lib/adyen_ap_is/http/auth/basic_auth.rb +62 -0
- data/lib/adyen_ap_is/http/http_call_back.rb +10 -0
- data/lib/adyen_ap_is/http/http_method_enum.rb +10 -0
- data/lib/adyen_ap_is/http/http_request.rb +10 -0
- data/lib/adyen_ap_is/http/http_response.rb +10 -0
- data/lib/adyen_ap_is/http/proxy_settings.rb +22 -0
- data/lib/adyen_ap_is/logging/configuration/api_logging_configuration.rb +186 -0
- data/lib/adyen_ap_is/logging/sdk_logger.rb +17 -0
- data/lib/adyen_ap_is/models/accel_info.rb +85 -0
- data/lib/adyen_ap_is/models/accel_info1.rb +85 -0
- data/lib/adyen_ap_is/models/account_age_indicator.rb +50 -0
- data/lib/adyen_ap_is/models/account_change_indicator.rb +46 -0
- data/lib/adyen_ap_is/models/account_holder_type.rb +36 -0
- data/lib/adyen_ap_is/models/account_info.rb +363 -0
- data/lib/adyen_ap_is/models/account_info1.rb +375 -0
- data/lib/adyen_ap_is/models/account_type.rb +41 -0
- data/lib/adyen_ap_is/models/account_type1.rb +56 -0
- data/lib/adyen_ap_is/models/acct_info.rb +293 -0
- data/lib/adyen_ap_is/models/acct_info1.rb +304 -0
- data/lib/adyen_ap_is/models/acct_type.rb +42 -0
- data/lib/adyen_ap_is/models/ach_direct_debit.rb +244 -0
- data/lib/adyen_ap_is/models/acquiring_fees.rb +38 -0
- data/lib/adyen_ap_is/models/additional_commission.rb +86 -0
- data/lib/adyen_ap_is/models/additional_commission1.rb +89 -0
- data/lib/adyen_ap_is/models/additional_data3_d_secure.rb +168 -0
- data/lib/adyen_ap_is/models/additional_data_airline.rb +622 -0
- data/lib/adyen_ap_is/models/additional_data_car_rental.rb +481 -0
- data/lib/adyen_ap_is/models/additional_data_common.rb +421 -0
- data/lib/adyen_ap_is/models/additional_data_level23.rb +461 -0
- data/lib/adyen_ap_is/models/additional_data_lodging.rb +359 -0
- data/lib/adyen_ap_is/models/additional_data_open_invoice.rb +396 -0
- data/lib/adyen_ap_is/models/additional_data_opi.rb +68 -0
- data/lib/adyen_ap_is/models/additional_data_ratepay.rb +161 -0
- data/lib/adyen_ap_is/models/additional_data_retry.rb +110 -0
- data/lib/adyen_ap_is/models/additional_data_risk.rb +434 -0
- data/lib/adyen_ap_is/models/additional_data_risk_standalone.rb +238 -0
- data/lib/adyen_ap_is/models/additional_data_sub_merchant.rb +317 -0
- data/lib/adyen_ap_is/models/additional_data_temporary_services.rb +231 -0
- data/lib/adyen_ap_is/models/additional_data_wallets.rb +123 -0
- data/lib/adyen_ap_is/models/additional_settings.rb +80 -0
- data/lib/adyen_ap_is/models/additional_settings1.rb +85 -0
- data/lib/adyen_ap_is/models/additional_settings_response.rb +93 -0
- data/lib/adyen_ap_is/models/additional_settings_response1.rb +98 -0
- data/lib/adyen_ap_is/models/addr_match.rb +38 -0
- data/lib/adyen_ap_is/models/addr_match1.rb +38 -0
- data/lib/adyen_ap_is/models/address.rb +116 -0
- data/lib/adyen_ap_is/models/address1.rb +119 -0
- data/lib/adyen_ap_is/models/address11.rb +136 -0
- data/lib/adyen_ap_is/models/address2.rb +116 -0
- data/lib/adyen_ap_is/models/address21.rb +136 -0
- data/lib/adyen_ap_is/models/address3.rb +150 -0
- data/lib/adyen_ap_is/models/address4.rb +136 -0
- data/lib/adyen_ap_is/models/adyen_commission.rb +40 -0
- data/lib/adyen_ap_is/models/adyen_fees.rb +38 -0
- data/lib/adyen_ap_is/models/adyen_markup.rb +39 -0
- data/lib/adyen_ap_is/models/affirm.rb +95 -0
- data/lib/adyen_ap_is/models/affirm_info.rb +71 -0
- data/lib/adyen_ap_is/models/affirm_info1.rb +71 -0
- data/lib/adyen_ap_is/models/afterpay.rb +161 -0
- data/lib/adyen_ap_is/models/afterpay_touch_info.rb +71 -0
- data/lib/adyen_ap_is/models/afterpay_touch_info1.rb +71 -0
- data/lib/adyen_ap_is/models/agency.rb +88 -0
- data/lib/adyen_ap_is/models/airline.rb +291 -0
- data/lib/adyen_ap_is/models/airline1.rb +308 -0
- data/lib/adyen_ap_is/models/alipay_plus_info.rb +63 -0
- data/lib/adyen_ap_is/models/alipay_plus_info1.rb +63 -0
- data/lib/adyen_ap_is/models/allowed_origin.rb +79 -0
- data/lib/adyen_ap_is/models/allowed_origins_response.rb +71 -0
- data/lib/adyen_ap_is/models/amazon_pay.rb +123 -0
- data/lib/adyen_ap_is/models/amex_info.rb +93 -0
- data/lib/adyen_ap_is/models/amex_info1.rb +93 -0
- data/lib/adyen_ap_is/models/amount.rb +73 -0
- data/lib/adyen_ap_is/models/amount1.rb +98 -0
- data/lib/adyen_ap_is/models/amount10.rb +94 -0
- data/lib/adyen_ap_is/models/amount11.rb +94 -0
- data/lib/adyen_ap_is/models/amount12.rb +94 -0
- data/lib/adyen_ap_is/models/amount13.rb +94 -0
- data/lib/adyen_ap_is/models/amount14.rb +94 -0
- data/lib/adyen_ap_is/models/amount15.rb +94 -0
- data/lib/adyen_ap_is/models/amount17.rb +72 -0
- data/lib/adyen_ap_is/models/amount2.rb +98 -0
- data/lib/adyen_ap_is/models/amount20.rb +72 -0
- data/lib/adyen_ap_is/models/amount22.rb +72 -0
- data/lib/adyen_ap_is/models/amount23.rb +72 -0
- data/lib/adyen_ap_is/models/amount25.rb +94 -0
- data/lib/adyen_ap_is/models/amount28.rb +73 -0
- data/lib/adyen_ap_is/models/amount29.rb +72 -0
- data/lib/adyen_ap_is/models/amount3.rb +94 -0
- data/lib/adyen_ap_is/models/amount30.rb +74 -0
- data/lib/adyen_ap_is/models/amount31.rb +97 -0
- data/lib/adyen_ap_is/models/amount32.rb +72 -0
- data/lib/adyen_ap_is/models/amount34.rb +72 -0
- data/lib/adyen_ap_is/models/amount37.rb +74 -0
- data/lib/adyen_ap_is/models/amount38.rb +72 -0
- data/lib/adyen_ap_is/models/amount4.rb +94 -0
- data/lib/adyen_ap_is/models/amount41.rb +97 -0
- data/lib/adyen_ap_is/models/amount42.rb +95 -0
- data/lib/adyen_ap_is/models/amount43.rb +73 -0
- data/lib/adyen_ap_is/models/amount5.rb +94 -0
- data/lib/adyen_ap_is/models/amount6.rb +94 -0
- data/lib/adyen_ap_is/models/amount7.rb +95 -0
- data/lib/adyen_ap_is/models/amount8.rb +72 -0
- data/lib/adyen_ap_is/models/amount9.rb +73 -0
- data/lib/adyen_ap_is/models/amount_rule.rb +38 -0
- data/lib/adyen_ap_is/models/amounts.rb +70 -0
- data/lib/adyen_ap_is/models/amounts1.rb +71 -0
- data/lib/adyen_ap_is/models/ancv.rb +134 -0
- data/lib/adyen_ap_is/models/android_app.rb +158 -0
- data/lib/adyen_ap_is/models/android_app_error.rb +75 -0
- data/lib/adyen_ap_is/models/android_apps_response.rb +71 -0
- data/lib/adyen_ap_is/models/android_certificate.rb +137 -0
- data/lib/adyen_ap_is/models/android_certificates_response.rb +71 -0
- data/lib/adyen_ap_is/models/android_pay.rb +95 -0
- data/lib/adyen_ap_is/models/api_credential.rb +159 -0
- data/lib/adyen_ap_is/models/api_credential_links.rb +118 -0
- data/lib/adyen_ap_is/models/api_credential_links2.rb +118 -0
- data/lib/adyen_ap_is/models/apple_pay.rb +151 -0
- data/lib/adyen_ap_is/models/apple_pay_info.rb +63 -0
- data/lib/adyen_ap_is/models/apple_pay_info1.rb +63 -0
- data/lib/adyen_ap_is/models/apple_pay_session_request.rb +87 -0
- data/lib/adyen_ap_is/models/apple_pay_session_response.rb +62 -0
- data/lib/adyen_ap_is/models/application_info.rb +130 -0
- data/lib/adyen_ap_is/models/application_info1.rb +142 -0
- data/lib/adyen_ap_is/models/attempt_authentication.rb +41 -0
- data/lib/adyen_ap_is/models/authentication_data.rb +97 -0
- data/lib/adyen_ap_is/models/authentication_data1.rb +97 -0
- data/lib/adyen_ap_is/models/authentication_data3.rb +107 -0
- data/lib/adyen_ap_is/models/authentication_method.rb +36 -0
- data/lib/adyen_ap_is/models/authentication_response.rb +45 -0
- data/lib/adyen_ap_is/models/bacs_direct_debit.rb +170 -0
- data/lib/adyen_ap_is/models/balance_check_request.rb +718 -0
- data/lib/adyen_ap_is/models/balance_check_response.rb +139 -0
- data/lib/adyen_ap_is/models/bank_account_type.rb +56 -0
- data/lib/adyen_ap_is/models/base_model.rb +110 -0
- data/lib/adyen_ap_is/models/bcmc_info.rb +65 -0
- data/lib/adyen_ap_is/models/bcmc_info1.rb +65 -0
- data/lib/adyen_ap_is/models/behavior.rb +48 -0
- data/lib/adyen_ap_is/models/bill_desk.rb +113 -0
- data/lib/adyen_ap_is/models/billing_address.rb +116 -0
- data/lib/adyen_ap_is/models/billing_address1.rb +116 -0
- data/lib/adyen_ap_is/models/billing_address3.rb +153 -0
- data/lib/adyen_ap_is/models/billing_address4.rb +151 -0
- data/lib/adyen_ap_is/models/billing_attempts_rule.rb +43 -0
- data/lib/adyen_ap_is/models/billing_entities_response.rb +71 -0
- data/lib/adyen_ap_is/models/billing_entity.rb +102 -0
- data/lib/adyen_ap_is/models/billing_entity1.rb +102 -0
- data/lib/adyen_ap_is/models/blik.rb +133 -0
- data/lib/adyen_ap_is/models/browser_info.rb +141 -0
- data/lib/adyen_ap_is/models/browser_info2.rb +190 -0
- data/lib/adyen_ap_is/models/cancel_order_request.rb +70 -0
- data/lib/adyen_ap_is/models/cancel_order_response.rb +70 -0
- data/lib/adyen_ap_is/models/card.rb +410 -0
- data/lib/adyen_ap_is/models/card2.rb +410 -0
- data/lib/adyen_ap_is/models/card_brand_details.rb +71 -0
- data/lib/adyen_ap_is/models/card_details_request.rb +121 -0
- data/lib/adyen_ap_is/models/card_details_response.rb +106 -0
- data/lib/adyen_ap_is/models/card_product_id.rb +79 -0
- data/lib/adyen_ap_is/models/card_region.rb +61 -0
- data/lib/adyen_ap_is/models/cardholder_receipt.rb +70 -0
- data/lib/adyen_ap_is/models/cardholder_receipt1.rb +70 -0
- data/lib/adyen_ap_is/models/cartes_bancaires_info.rb +75 -0
- data/lib/adyen_ap_is/models/cartes_bancaires_info1.rb +75 -0
- data/lib/adyen_ap_is/models/category.rb +36 -0
- data/lib/adyen_ap_is/models/cellulant.rb +104 -0
- data/lib/adyen_ap_is/models/ch_acc_age_ind.rb +51 -0
- data/lib/adyen_ap_is/models/ch_acc_change_ind.rb +48 -0
- data/lib/adyen_ap_is/models/ch_acc_pw_change_ind.rb +51 -0
- data/lib/adyen_ap_is/models/challenge_cancel.rb +60 -0
- data/lib/adyen_ap_is/models/challenge_indicator.rb +46 -0
- data/lib/adyen_ap_is/models/challenge_window_size.rb +50 -0
- data/lib/adyen_ap_is/models/channel.rb +43 -0
- data/lib/adyen_ap_is/models/channel2.rb +43 -0
- data/lib/adyen_ap_is/models/channel3.rb +42 -0
- data/lib/adyen_ap_is/models/chargeback_cost_allocation.rb +37 -0
- data/lib/adyen_ap_is/models/checkout_await_action.rb +103 -0
- data/lib/adyen_ap_is/models/checkout_bank_account.rb +176 -0
- data/lib/adyen_ap_is/models/checkout_bank_account1.rb +187 -0
- data/lib/adyen_ap_is/models/checkout_bank_transfer_action.rb +214 -0
- data/lib/adyen_ap_is/models/checkout_delegated_authentication_action.rb +125 -0
- data/lib/adyen_ap_is/models/checkout_forward_request.rb +145 -0
- data/lib/adyen_ap_is/models/checkout_forward_request_card.rb +173 -0
- data/lib/adyen_ap_is/models/checkout_forward_request_card2.rb +173 -0
- data/lib/adyen_ap_is/models/checkout_forward_request_options.rb +113 -0
- data/lib/adyen_ap_is/models/checkout_forward_request_options2.rb +113 -0
- data/lib/adyen_ap_is/models/checkout_forward_response.rb +97 -0
- data/lib/adyen_ap_is/models/checkout_forward_response_from_url.rb +82 -0
- data/lib/adyen_ap_is/models/checkout_forward_response_from_url2.rb +82 -0
- data/lib/adyen_ap_is/models/checkout_native_redirect_action.rb +127 -0
- data/lib/adyen_ap_is/models/checkout_network_token_option.rb +75 -0
- data/lib/adyen_ap_is/models/checkout_network_token_option2.rb +75 -0
- data/lib/adyen_ap_is/models/checkout_order_response.rb +111 -0
- data/lib/adyen_ap_is/models/checkout_order_response1.rb +126 -0
- data/lib/adyen_ap_is/models/checkout_outgoing_forward_request.rb +117 -0
- data/lib/adyen_ap_is/models/checkout_outgoing_forward_request2.rb +119 -0
- data/lib/adyen_ap_is/models/checkout_qr_code_action.rb +124 -0
- data/lib/adyen_ap_is/models/checkout_redirect_action.rb +114 -0
- data/lib/adyen_ap_is/models/checkout_sdk_action.rb +116 -0
- data/lib/adyen_ap_is/models/checkout_session_installment_option.rb +96 -0
- data/lib/adyen_ap_is/models/checkout_session_three_ds2_request_data.rb +124 -0
- data/lib/adyen_ap_is/models/checkout_session_three_ds2_request_data1.rb +126 -0
- data/lib/adyen_ap_is/models/checkout_session_three_ds2_request_data3.rb +126 -0
- data/lib/adyen_ap_is/models/checkout_three_ds2_action.rb +136 -0
- data/lib/adyen_ap_is/models/checkout_voucher_action.rb +291 -0
- data/lib/adyen_ap_is/models/clearpay_info.rb +60 -0
- data/lib/adyen_ap_is/models/clearpay_info1.rb +60 -0
- data/lib/adyen_ap_is/models/commission.rb +74 -0
- data/lib/adyen_ap_is/models/commission1.rb +76 -0
- data/lib/adyen_ap_is/models/common_field.rb +71 -0
- data/lib/adyen_ap_is/models/common_field1.rb +82 -0
- data/lib/adyen_ap_is/models/common_field2.rb +82 -0
- data/lib/adyen_ap_is/models/common_field4.rb +82 -0
- data/lib/adyen_ap_is/models/communication_format.rb +41 -0
- data/lib/adyen_ap_is/models/company.rb +114 -0
- data/lib/adyen_ap_is/models/company1.rb +124 -0
- data/lib/adyen_ap_is/models/company2.rb +140 -0
- data/lib/adyen_ap_is/models/company_api_credential.rb +176 -0
- data/lib/adyen_ap_is/models/company_links.rb +90 -0
- data/lib/adyen_ap_is/models/company_links2.rb +90 -0
- data/lib/adyen_ap_is/models/company_user.rb +167 -0
- data/lib/adyen_ap_is/models/configuration.rb +113 -0
- data/lib/adyen_ap_is/models/connectivity.rb +83 -0
- data/lib/adyen_ap_is/models/connectivity1.rb +83 -0
- data/lib/adyen_ap_is/models/contact.rb +103 -0
- data/lib/adyen_ap_is/models/contact1.rb +103 -0
- data/lib/adyen_ap_is/models/contract.rb +60 -0
- data/lib/adyen_ap_is/models/create_allowed_origin_request.rb +79 -0
- data/lib/adyen_ap_is/models/create_api_credential_response.rb +176 -0
- data/lib/adyen_ap_is/models/create_checkout_session_request.rb +975 -0
- data/lib/adyen_ap_is/models/create_checkout_session_response.rb +1010 -0
- data/lib/adyen_ap_is/models/create_company_api_credential_request.rb +103 -0
- data/lib/adyen_ap_is/models/create_company_api_credential_response.rb +188 -0
- data/lib/adyen_ap_is/models/create_company_user_request.rb +144 -0
- data/lib/adyen_ap_is/models/create_company_user_response.rb +167 -0
- data/lib/adyen_ap_is/models/create_company_webhook_request.rb +295 -0
- data/lib/adyen_ap_is/models/create_merchant_api_credential_request.rb +88 -0
- data/lib/adyen_ap_is/models/create_merchant_request.rb +135 -0
- data/lib/adyen_ap_is/models/create_merchant_response.rb +133 -0
- data/lib/adyen_ap_is/models/create_merchant_user_request.rb +127 -0
- data/lib/adyen_ap_is/models/create_merchant_webhook_request.rb +260 -0
- data/lib/adyen_ap_is/models/create_order_request.rb +92 -0
- data/lib/adyen_ap_is/models/create_order_response.rb +157 -0
- data/lib/adyen_ap_is/models/create_user_response.rb +149 -0
- data/lib/adyen_ap_is/models/currency.rb +96 -0
- data/lib/adyen_ap_is/models/custom_notification.rb +166 -0
- data/lib/adyen_ap_is/models/custom_notification1.rb +169 -0
- data/lib/adyen_ap_is/models/data_center.rb +81 -0
- data/lib/adyen_ap_is/models/data_only.rb +39 -0
- data/lib/adyen_ap_is/models/delivery_address.rb +138 -0
- data/lib/adyen_ap_is/models/delivery_address1.rb +172 -0
- data/lib/adyen_ap_is/models/delivery_address_indicator.rb +58 -0
- data/lib/adyen_ap_is/models/delivery_address_usage_indicator.rb +46 -0
- data/lib/adyen_ap_is/models/delivery_method.rb +103 -0
- data/lib/adyen_ap_is/models/delivery_timeframe.rb +46 -0
- data/lib/adyen_ap_is/models/destination.rb +100 -0
- data/lib/adyen_ap_is/models/destination1.rb +110 -0
- data/lib/adyen_ap_is/models/details_of_tokens_that_are_not_stored_with_adyen.rb +162 -0
- data/lib/adyen_ap_is/models/details_request_authentication_data.rb +66 -0
- data/lib/adyen_ap_is/models/details_request_authentication_data1.rb +66 -0
- data/lib/adyen_ap_is/models/device_render_options.rb +82 -0
- data/lib/adyen_ap_is/models/device_render_options2.rb +93 -0
- data/lib/adyen_ap_is/models/diners_info.rb +105 -0
- data/lib/adyen_ap_is/models/diners_info1.rb +110 -0
- data/lib/adyen_ap_is/models/directory_response.rb +60 -0
- data/lib/adyen_ap_is/models/doku.rb +140 -0
- data/lib/adyen_ap_is/models/donation.rb +119 -0
- data/lib/adyen_ap_is/models/donation1.rb +119 -0
- data/lib/adyen_ap_is/models/donation_campaign.rb +168 -0
- data/lib/adyen_ap_is/models/donation_campaigns_request.rb +82 -0
- data/lib/adyen_ap_is/models/donation_campaigns_response.rb +71 -0
- data/lib/adyen_ap_is/models/donation_payment_request.rb +733 -0
- data/lib/adyen_ap_is/models/donation_payment_response.rb +135 -0
- data/lib/adyen_ap_is/models/dragonpay.rb +125 -0
- data/lib/adyen_ap_is/models/e_banking_finland.rb +104 -0
- data/lib/adyen_ap_is/models/eft_direct_debit.rb +184 -0
- data/lib/adyen_ap_is/models/encrypted_order_data.rb +69 -0
- data/lib/adyen_ap_is/models/encrypted_order_data2.rb +91 -0
- data/lib/adyen_ap_is/models/encrypted_order_data4.rb +70 -0
- data/lib/adyen_ap_is/models/encryption_protocol.rb +43 -0
- data/lib/adyen_ap_is/models/enhanced_scheme_data.rb +78 -0
- data/lib/adyen_ap_is/models/enhanced_scheme_data1.rb +79 -0
- data/lib/adyen_ap_is/models/enhanced_scheme_data5.rb +91 -0
- data/lib/adyen_ap_is/models/entity_type.rb +36 -0
- data/lib/adyen_ap_is/models/event_url.rb +93 -0
- data/lib/adyen_ap_is/models/event_url2.rb +94 -0
- data/lib/adyen_ap_is/models/event_url3.rb +94 -0
- data/lib/adyen_ap_is/models/exemption_indicator.rb +46 -0
- data/lib/adyen_ap_is/models/external_platform.rb +81 -0
- data/lib/adyen_ap_is/models/external_platform2.rb +92 -0
- data/lib/adyen_ap_is/models/external_terminal_action.rb +152 -0
- data/lib/adyen_ap_is/models/fastlane.rb +141 -0
- data/lib/adyen_ap_is/models/file.rb +68 -0
- data/lib/adyen_ap_is/models/file1.rb +70 -0
- data/lib/adyen_ap_is/models/file2.rb +69 -0
- data/lib/adyen_ap_is/models/file3.rb +69 -0
- data/lib/adyen_ap_is/models/file4.rb +68 -0
- data/lib/adyen_ap_is/models/filter_merchant_account_type.rb +45 -0
- data/lib/adyen_ap_is/models/filter_merchant_account_type1.rb +43 -0
- data/lib/adyen_ap_is/models/filter_merchant_account_type2.rb +45 -0
- data/lib/adyen_ap_is/models/force_reboot_details.rb +73 -0
- data/lib/adyen_ap_is/models/forex_quote.rb +176 -0
- data/lib/adyen_ap_is/models/forex_quote2.rb +198 -0
- data/lib/adyen_ap_is/models/fraud_check_result.rb +103 -0
- data/lib/adyen_ap_is/models/fraud_result.rb +79 -0
- data/lib/adyen_ap_is/models/fraud_result1.rb +93 -0
- data/lib/adyen_ap_is/models/fraud_result_type.rb +41 -0
- data/lib/adyen_ap_is/models/fraud_risk_level.rb +52 -0
- data/lib/adyen_ap_is/models/frequency.rb +62 -0
- data/lib/adyen_ap_is/models/frequency2.rb +48 -0
- data/lib/adyen_ap_is/models/fund_origin.rb +106 -0
- data/lib/adyen_ap_is/models/fund_origin1.rb +116 -0
- data/lib/adyen_ap_is/models/fund_recipient.rb +194 -0
- data/lib/adyen_ap_is/models/fund_recipient1.rb +204 -0
- data/lib/adyen_ap_is/models/funding_source.rb +42 -0
- data/lib/adyen_ap_is/models/funding_source1.rb +53 -0
- data/lib/adyen_ap_is/models/funding_source9.rb +40 -0
- data/lib/adyen_ap_is/models/generate_api_key_response.rb +60 -0
- data/lib/adyen_ap_is/models/generate_client_key_response.rb +60 -0
- data/lib/adyen_ap_is/models/generate_hmac_key_response.rb +60 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info.rb +66 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info1.rb +66 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info10.rb +66 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info11.rb +66 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info2.rb +71 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info24.rb +71 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info3.rb +66 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info31.rb +68 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info4.rb +66 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info5.rb +66 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info6.rb +66 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info7.rb +66 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info8.rb +67 -0
- data/lib/adyen_ap_is/models/generic_pm_with_tdi_info9.rb +67 -0
- data/lib/adyen_ap_is/models/givex_info.rb +86 -0
- data/lib/adyen_ap_is/models/givex_info1.rb +86 -0
- data/lib/adyen_ap_is/models/google_pay2.rb +177 -0
- data/lib/adyen_ap_is/models/google_pay3.rb +164 -0
- data/lib/adyen_ap_is/models/google_pay_info.rb +76 -0
- data/lib/adyen_ap_is/models/google_pay_info1.rb +76 -0
- data/lib/adyen_ap_is/models/gratuity.rb +111 -0
- data/lib/adyen_ap_is/models/hardware.rb +94 -0
- data/lib/adyen_ap_is/models/hardware1.rb +94 -0
- data/lib/adyen_ap_is/models/home_screen_settings.rb +86 -0
- data/lib/adyen_ap_is/models/home_screen_settings1.rb +86 -0
- data/lib/adyen_ap_is/models/http_method.rb +41 -0
- data/lib/adyen_ap_is/models/ideal1.rb +134 -0
- data/lib/adyen_ap_is/models/industry_usage.rb +43 -0
- data/lib/adyen_ap_is/models/industry_usage1.rb +41 -0
- data/lib/adyen_ap_is/models/input_detail.rb +169 -0
- data/lib/adyen_ap_is/models/install_android_app_details.rb +81 -0
- data/lib/adyen_ap_is/models/install_android_certificate_details.rb +82 -0
- data/lib/adyen_ap_is/models/installed_ap_ks.rb +92 -0
- data/lib/adyen_ap_is/models/installment_option.rb +98 -0
- data/lib/adyen_ap_is/models/installments.rb +94 -0
- data/lib/adyen_ap_is/models/installments2.rb +110 -0
- data/lib/adyen_ap_is/models/interchange.rb +37 -0
- data/lib/adyen_ap_is/models/invalid_field.rb +90 -0
- data/lib/adyen_ap_is/models/item.rb +71 -0
- data/lib/adyen_ap_is/models/item_detail_line.rb +190 -0
- data/lib/adyen_ap_is/models/jcb_info.rb +114 -0
- data/lib/adyen_ap_is/models/jcb_info1.rb +116 -0
- data/lib/adyen_ap_is/models/key.rb +89 -0
- data/lib/adyen_ap_is/models/key1.rb +90 -0
- data/lib/adyen_ap_is/models/kiosk_mode_settings.rb +79 -0
- data/lib/adyen_ap_is/models/kiosk_mode_settings1.rb +79 -0
- data/lib/adyen_ap_is/models/klarna.rb +172 -0
- data/lib/adyen_ap_is/models/klarna_info.rb +91 -0
- data/lib/adyen_ap_is/models/klarna_info1.rb +95 -0
- data/lib/adyen_ap_is/models/leg.rb +226 -0
- data/lib/adyen_ap_is/models/level_two_three.rb +178 -0
- data/lib/adyen_ap_is/models/level_two_three2.rb +191 -0
- data/lib/adyen_ap_is/models/line_item.rb +256 -0
- data/lib/adyen_ap_is/models/links.rb +60 -0
- data/lib/adyen_ap_is/models/links1.rb +60 -0
- data/lib/adyen_ap_is/models/links2.rb +60 -0
- data/lib/adyen_ap_is/models/links7.rb +60 -0
- data/lib/adyen_ap_is/models/links_element.rb +62 -0
- data/lib/adyen_ap_is/models/links_element1.rb +62 -0
- data/lib/adyen_ap_is/models/links_element10.rb +62 -0
- data/lib/adyen_ap_is/models/links_element11.rb +62 -0
- data/lib/adyen_ap_is/models/links_element12.rb +62 -0
- data/lib/adyen_ap_is/models/links_element13.rb +62 -0
- data/lib/adyen_ap_is/models/links_element15.rb +63 -0
- data/lib/adyen_ap_is/models/links_element16.rb +62 -0
- data/lib/adyen_ap_is/models/links_element17.rb +63 -0
- data/lib/adyen_ap_is/models/links_element19.rb +62 -0
- data/lib/adyen_ap_is/models/links_element2.rb +63 -0
- data/lib/adyen_ap_is/models/links_element3.rb +63 -0
- data/lib/adyen_ap_is/models/links_element4.rb +63 -0
- data/lib/adyen_ap_is/models/links_element5.rb +63 -0
- data/lib/adyen_ap_is/models/links_element6.rb +62 -0
- data/lib/adyen_ap_is/models/links_element9.rb +62 -0
- data/lib/adyen_ap_is/models/list_company_api_credentials_response.rb +98 -0
- data/lib/adyen_ap_is/models/list_company_response.rb +98 -0
- data/lib/adyen_ap_is/models/list_company_users_response.rb +98 -0
- data/lib/adyen_ap_is/models/list_external_terminal_actions_response.rb +71 -0
- data/lib/adyen_ap_is/models/list_merchant_api_credentials_response.rb +98 -0
- data/lib/adyen_ap_is/models/list_merchant_response.rb +98 -0
- data/lib/adyen_ap_is/models/list_merchant_users_response.rb +98 -0
- data/lib/adyen_ap_is/models/list_stored_payment_methods_response.rb +98 -0
- data/lib/adyen_ap_is/models/list_stores_response.rb +98 -0
- data/lib/adyen_ap_is/models/list_terminals_response.rb +98 -0
- data/lib/adyen_ap_is/models/list_webhooks_response.rb +110 -0
- data/lib/adyen_ap_is/models/local_shopper_statement.rb +69 -0
- data/lib/adyen_ap_is/models/localization.rb +83 -0
- data/lib/adyen_ap_is/models/localization1.rb +83 -0
- data/lib/adyen_ap_is/models/localized_information.rb +72 -0
- data/lib/adyen_ap_is/models/localized_information2.rb +72 -0
- data/lib/adyen_ap_is/models/localized_information4.rb +72 -0
- data/lib/adyen_ap_is/models/logo.rb +63 -0
- data/lib/adyen_ap_is/models/mandate.rb +154 -0
- data/lib/adyen_ap_is/models/mandate1.rb +180 -0
- data/lib/adyen_ap_is/models/masterpass.rb +123 -0
- data/lib/adyen_ap_is/models/mb_way.rb +127 -0
- data/lib/adyen_ap_is/models/me_api_credential.rb +169 -0
- data/lib/adyen_ap_is/models/meal_voucher_fr_info.rb +79 -0
- data/lib/adyen_ap_is/models/meal_voucher_fr_info1.rb +79 -0
- data/lib/adyen_ap_is/models/merchant.rb +244 -0
- data/lib/adyen_ap_is/models/merchant_device.rb +81 -0
- data/lib/adyen_ap_is/models/merchant_device2.rb +91 -0
- data/lib/adyen_ap_is/models/merchant_links.rb +90 -0
- data/lib/adyen_ap_is/models/merchant_links2.rb +90 -0
- data/lib/adyen_ap_is/models/merchant_refund_reason.rb +49 -0
- data/lib/adyen_ap_is/models/merchant_refund_reason1.rb +48 -0
- data/lib/adyen_ap_is/models/merchant_risk_indicator.rb +243 -0
- data/lib/adyen_ap_is/models/merchant_risk_indicator1.rb +255 -0
- data/lib/adyen_ap_is/models/minor_units_monetary_value.rb +73 -0
- data/lib/adyen_ap_is/models/mobile_pay.rb +95 -0
- data/lib/adyen_ap_is/models/mode.rb +38 -0
- data/lib/adyen_ap_is/models/mol_pay.rb +114 -0
- data/lib/adyen_ap_is/models/moto.rb +76 -0
- data/lib/adyen_ap_is/models/moto1.rb +76 -0
- data/lib/adyen_ap_is/models/name.rb +69 -0
- data/lib/adyen_ap_is/models/name1.rb +90 -0
- data/lib/adyen_ap_is/models/name2.rb +90 -0
- data/lib/adyen_ap_is/models/name21.rb +71 -0
- data/lib/adyen_ap_is/models/name22.rb +71 -0
- data/lib/adyen_ap_is/models/name4.rb +70 -0
- data/lib/adyen_ap_is/models/name6.rb +77 -0
- data/lib/adyen_ap_is/models/name7.rb +68 -0
- data/lib/adyen_ap_is/models/native_three_ds.rb +42 -0
- data/lib/adyen_ap_is/models/network_type.rb +37 -0
- data/lib/adyen_ap_is/models/network_type2.rb +36 -0
- data/lib/adyen_ap_is/models/nexo.rb +108 -0
- data/lib/adyen_ap_is/models/nexo1.rb +108 -0
- data/lib/adyen_ap_is/models/notification.rb +106 -0
- data/lib/adyen_ap_is/models/notification2.rb +107 -0
- data/lib/adyen_ap_is/models/notification_url.rb +89 -0
- data/lib/adyen_ap_is/models/notification_url2.rb +90 -0
- data/lib/adyen_ap_is/models/nyce_info.rb +85 -0
- data/lib/adyen_ap_is/models/nyce_info1.rb +85 -0
- data/lib/adyen_ap_is/models/offline_processing.rb +86 -0
- data/lib/adyen_ap_is/models/offline_processing1.rb +87 -0
- data/lib/adyen_ap_is/models/open_invoice.rb +158 -0
- data/lib/adyen_ap_is/models/opi.rb +90 -0
- data/lib/adyen_ap_is/models/opi1.rb +90 -0
- data/lib/adyen_ap_is/models/order_item.rb +91 -0
- data/lib/adyen_ap_is/models/pagination_links.rb +97 -0
- data/lib/adyen_ap_is/models/pagination_links1.rb +97 -0
- data/lib/adyen_ap_is/models/passcodes.rb +95 -0
- data/lib/adyen_ap_is/models/passcodes1.rb +97 -0
- data/lib/adyen_ap_is/models/passenger.rb +128 -0
- data/lib/adyen_ap_is/models/password_change_indicator.rb +50 -0
- data/lib/adyen_ap_is/models/pay_at_table.rb +90 -0
- data/lib/adyen_ap_is/models/pay_at_table1.rb +91 -0
- data/lib/adyen_ap_is/models/pay_by_bank.rb +104 -0
- data/lib/adyen_ap_is/models/pay_by_bank_ais_direct_debit.rb +124 -0
- data/lib/adyen_ap_is/models/pay_by_bank_plaid_info.rb +76 -0
- data/lib/adyen_ap_is/models/pay_by_bank_plaid_info1.rb +76 -0
- data/lib/adyen_ap_is/models/pay_me_info.rb +78 -0
- data/lib/adyen_ap_is/models/pay_me_info1.rb +78 -0
- data/lib/adyen_ap_is/models/pay_pal.rb +176 -0
- data/lib/adyen_ap_is/models/pay_pal_info.rb +84 -0
- data/lib/adyen_ap_is/models/pay_pal_info1.rb +84 -0
- data/lib/adyen_ap_is/models/pay_pay.rb +124 -0
- data/lib/adyen_ap_is/models/pay_to.rb +139 -0
- data/lib/adyen_ap_is/models/pay_to_info.rb +72 -0
- data/lib/adyen_ap_is/models/pay_to_info1.rb +72 -0
- data/lib/adyen_ap_is/models/pay_to_payment_method.rb +83 -0
- data/lib/adyen_ap_is/models/pay_u.rb +155 -0
- data/lib/adyen_ap_is/models/payment.rb +106 -0
- data/lib/adyen_ap_is/models/payment1.rb +85 -0
- data/lib/adyen_ap_is/models/payment11.rb +85 -0
- data/lib/adyen_ap_is/models/payment_acc_ind.rb +51 -0
- data/lib/adyen_ap_is/models/payment_account_indicator.rb +50 -0
- data/lib/adyen_ap_is/models/payment_amount_update_request.rb +168 -0
- data/lib/adyen_ap_is/models/payment_amount_update_response.rb +168 -0
- data/lib/adyen_ap_is/models/payment_cancel_request.rb +99 -0
- data/lib/adyen_ap_is/models/payment_cancel_response.rb +101 -0
- data/lib/adyen_ap_is/models/payment_capture_request.rb +193 -0
- data/lib/adyen_ap_is/models/payment_capture_response.rb +193 -0
- data/lib/adyen_ap_is/models/payment_completion_details.rb +277 -0
- data/lib/adyen_ap_is/models/payment_completion_details1.rb +278 -0
- data/lib/adyen_ap_is/models/payment_details.rb +94 -0
- data/lib/adyen_ap_is/models/payment_details_request.rb +108 -0
- data/lib/adyen_ap_is/models/payment_details_response.rb +292 -0
- data/lib/adyen_ap_is/models/payment_fee.rb +68 -0
- data/lib/adyen_ap_is/models/payment_flow.rb +36 -0
- data/lib/adyen_ap_is/models/payment_instrument.rb +37 -0
- data/lib/adyen_ap_is/models/payment_link_request.rb +673 -0
- data/lib/adyen_ap_is/models/payment_link_response.rb +725 -0
- data/lib/adyen_ap_is/models/payment_method.rb +189 -0
- data/lib/adyen_ap_is/models/payment_method1.rb +660 -0
- data/lib/adyen_ap_is/models/payment_method_group.rb +84 -0
- data/lib/adyen_ap_is/models/payment_method_group2.rb +84 -0
- data/lib/adyen_ap_is/models/payment_method_issuer.rb +80 -0
- data/lib/adyen_ap_is/models/payment_method_response.rb +111 -0
- data/lib/adyen_ap_is/models/payment_method_setup_info.rb +615 -0
- data/lib/adyen_ap_is/models/payment_method_to_store.rb +189 -0
- data/lib/adyen_ap_is/models/payment_method_to_store1.rb +189 -0
- data/lib/adyen_ap_is/models/payment_method_upi_apps.rb +68 -0
- data/lib/adyen_ap_is/models/payment_methods_request.rb +314 -0
- data/lib/adyen_ap_is/models/payment_methods_response.rb +91 -0
- data/lib/adyen_ap_is/models/payment_refund_request.rb +202 -0
- data/lib/adyen_ap_is/models/payment_refund_response.rb +197 -0
- data/lib/adyen_ap_is/models/payment_request.rb +1191 -0
- data/lib/adyen_ap_is/models/payment_response.rb +300 -0
- data/lib/adyen_ap_is/models/payment_response1.rb +83 -0
- data/lib/adyen_ap_is/models/payment_response2.rb +75 -0
- data/lib/adyen_ap_is/models/payment_response3.rb +73 -0
- data/lib/adyen_ap_is/models/payment_response7.rb +63 -0
- data/lib/adyen_ap_is/models/payment_response8.rb +72 -0
- data/lib/adyen_ap_is/models/payment_response9.rb +300 -0
- data/lib/adyen_ap_is/models/payment_reversal_request.rb +99 -0
- data/lib/adyen_ap_is/models/payment_reversal_response.rb +101 -0
- data/lib/adyen_ap_is/models/payment_validations.rb +62 -0
- data/lib/adyen_ap_is/models/payment_validations2.rb +72 -0
- data/lib/adyen_ap_is/models/payment_validations_name_response.rb +84 -0
- data/lib/adyen_ap_is/models/payment_validations_name_response2.rb +95 -0
- data/lib/adyen_ap_is/models/payment_validations_name_result_raw_response.rb +107 -0
- data/lib/adyen_ap_is/models/payment_validations_name_result_raw_response2.rb +117 -0
- data/lib/adyen_ap_is/models/payment_validations_name_result_response.rb +104 -0
- data/lib/adyen_ap_is/models/payment_validations_name_result_response2.rb +114 -0
- data/lib/adyen_ap_is/models/payout_settings.rb +155 -0
- data/lib/adyen_ap_is/models/payout_settings_request.rb +98 -0
- data/lib/adyen_ap_is/models/payout_settings_response.rb +71 -0
- data/lib/adyen_ap_is/models/paypal_update_order_request.rb +123 -0
- data/lib/adyen_ap_is/models/paypal_update_order_response.rb +69 -0
- data/lib/adyen_ap_is/models/phone.rb +71 -0
- data/lib/adyen_ap_is/models/phone1.rb +86 -0
- data/lib/adyen_ap_is/models/phone2.rb +86 -0
- data/lib/adyen_ap_is/models/phone3.rb +86 -0
- data/lib/adyen_ap_is/models/pin_support.rb +36 -0
- data/lib/adyen_ap_is/models/pix_recurring.rb +183 -0
- data/lib/adyen_ap_is/models/plan.rb +72 -0
- data/lib/adyen_ap_is/models/plan1.rb +68 -0
- data/lib/adyen_ap_is/models/platform_chargeback_logic.rb +90 -0
- data/lib/adyen_ap_is/models/platform_chargeback_logic1.rb +101 -0
- data/lib/adyen_ap_is/models/platform_chargeback_logic4.rb +91 -0
- data/lib/adyen_ap_is/models/price_plan.rb +40 -0
- data/lib/adyen_ap_is/models/priority.rb +46 -0
- data/lib/adyen_ap_is/models/processing_type.rb +46 -0
- data/lib/adyen_ap_is/models/profile.rb +260 -0
- data/lib/adyen_ap_is/models/pse_latam.rb +167 -0
- data/lib/adyen_ap_is/models/pulse_info.rb +85 -0
- data/lib/adyen_ap_is/models/pulse_info1.rb +85 -0
- data/lib/adyen_ap_is/models/rakuten_pay.rb +137 -0
- data/lib/adyen_ap_is/models/ratepay.rb +175 -0
- data/lib/adyen_ap_is/models/receipt_options.rb +90 -0
- data/lib/adyen_ap_is/models/receipt_options1.rb +90 -0
- data/lib/adyen_ap_is/models/receipt_printing.rb +244 -0
- data/lib/adyen_ap_is/models/receipt_printing1.rb +245 -0
- data/lib/adyen_ap_is/models/recurring.rb +132 -0
- data/lib/adyen_ap_is/models/recurring2.rb +134 -0
- data/lib/adyen_ap_is/models/recurring_processing_model.rb +50 -0
- data/lib/adyen_ap_is/models/recurring_processing_model1.rb +49 -0
- data/lib/adyen_ap_is/models/recurring_processing_model4.rb +50 -0
- data/lib/adyen_ap_is/models/recurring_processing_model7.rb +40 -0
- data/lib/adyen_ap_is/models/referenced.rb +67 -0
- data/lib/adyen_ap_is/models/referenced1.rb +67 -0
- data/lib/adyen_ap_is/models/refund_cost_allocation.rb +37 -0
- data/lib/adyen_ap_is/models/refunds.rb +72 -0
- data/lib/adyen_ap_is/models/refunds1.rb +72 -0
- data/lib/adyen_ap_is/models/region.rb +44 -0
- data/lib/adyen_ap_is/models/release_update_details.rb +91 -0
- data/lib/adyen_ap_is/models/remainder.rb +38 -0
- data/lib/adyen_ap_is/models/reprocess_android_app_response.rb +62 -0
- data/lib/adyen_ap_is/models/request_activation_response.rb +71 -0
- data/lib/adyen_ap_is/models/required_shopper_field.rb +48 -0
- data/lib/adyen_ap_is/models/response_additional_data3_d_secure.rb +117 -0
- data/lib/adyen_ap_is/models/response_additional_data_billing_address.rb +141 -0
- data/lib/adyen_ap_is/models/response_additional_data_card.rb +184 -0
- data/lib/adyen_ap_is/models/response_additional_data_common.rb +956 -0
- data/lib/adyen_ap_is/models/response_additional_data_domestic_error.rb +81 -0
- data/lib/adyen_ap_is/models/response_additional_data_installments.rb +278 -0
- data/lib/adyen_ap_is/models/response_additional_data_network_tokens.rb +91 -0
- data/lib/adyen_ap_is/models/response_additional_data_opi.rb +68 -0
- data/lib/adyen_ap_is/models/response_additional_data_sepa.rb +127 -0
- data/lib/adyen_ap_is/models/response_additional_data_swish.rb +63 -0
- data/lib/adyen_ap_is/models/result.rb +40 -0
- data/lib/adyen_ap_is/models/result1.rb +40 -0
- data/lib/adyen_ap_is/models/result_code.rb +45 -0
- data/lib/adyen_ap_is/models/result_code1.rb +117 -0
- data/lib/adyen_ap_is/models/result_code2.rb +48 -0
- data/lib/adyen_ap_is/models/risk_data.rb +97 -0
- data/lib/adyen_ap_is/models/risk_data1.rb +97 -0
- data/lib/adyen_ap_is/models/risk_data4.rb +108 -0
- data/lib/adyen_ap_is/models/riverty.rb +210 -0
- data/lib/adyen_ap_is/models/samsung_pay.rb +165 -0
- data/lib/adyen_ap_is/models/schedule_terminal_actions_request.rb +120 -0
- data/lib/adyen_ap_is/models/schedule_terminal_actions_response.rb +162 -0
- data/lib/adyen_ap_is/models/scheme_fee.rb +37 -0
- data/lib/adyen_ap_is/models/sdk_ephem_pub_key.rb +90 -0
- data/lib/adyen_ap_is/models/sdk_ephem_pub_key1.rb +100 -0
- data/lib/adyen_ap_is/models/sdk_ephem_pub_key3.rb +91 -0
- data/lib/adyen_ap_is/models/sdk_interface.rb +40 -0
- data/lib/adyen_ap_is/models/sdk_ui_type.rb +48 -0
- data/lib/adyen_ap_is/models/sepa_direct_debit.rb +190 -0
- data/lib/adyen_ap_is/models/sepa_direct_debit_info.rb +77 -0
- data/lib/adyen_ap_is/models/sepa_direct_debit_info1.rb +77 -0
- data/lib/adyen_ap_is/models/service_level.rb +45 -0
- data/lib/adyen_ap_is/models/service_level1.rb +40 -0
- data/lib/adyen_ap_is/models/service_level2.rb +48 -0
- data/lib/adyen_ap_is/models/session_result_response.rb +129 -0
- data/lib/adyen_ap_is/models/settings.rb +82 -0
- data/lib/adyen_ap_is/models/settings1.rb +82 -0
- data/lib/adyen_ap_is/models/ship_address_usage_ind.rb +47 -0
- data/lib/adyen_ap_is/models/ship_name_indicator.rb +39 -0
- data/lib/adyen_ap_is/models/shipping_location.rb +91 -0
- data/lib/adyen_ap_is/models/shipping_location1.rb +91 -0
- data/lib/adyen_ap_is/models/shipping_locations_response.rb +71 -0
- data/lib/adyen_ap_is/models/shopper_id_payment_method.rb +89 -0
- data/lib/adyen_ap_is/models/shopper_id_payment_method1.rb +74 -0
- data/lib/adyen_ap_is/models/shopper_interaction.rb +56 -0
- data/lib/adyen_ap_is/models/shopper_interaction1.rb +47 -0
- data/lib/adyen_ap_is/models/shopper_interaction11.rb +55 -0
- data/lib/adyen_ap_is/models/shopper_interaction3.rb +56 -0
- data/lib/adyen_ap_is/models/shopper_interaction_device.rb +81 -0
- data/lib/adyen_ap_is/models/shopper_interaction_device2.rb +92 -0
- data/lib/adyen_ap_is/models/shopper_name.rb +68 -0
- data/lib/adyen_ap_is/models/shopper_name1.rb +70 -0
- data/lib/adyen_ap_is/models/shopper_name2.rb +90 -0
- data/lib/adyen_ap_is/models/shopper_tax_info.rb +70 -0
- data/lib/adyen_ap_is/models/shopper_tax_info2.rb +92 -0
- data/lib/adyen_ap_is/models/signature.rb +98 -0
- data/lib/adyen_ap_is/models/signature1.rb +98 -0
- data/lib/adyen_ap_is/models/simcard_status.rb +41 -0
- data/lib/adyen_ap_is/models/sodexo_info.rb +61 -0
- data/lib/adyen_ap_is/models/sodexo_info1.rb +61 -0
- data/lib/adyen_ap_is/models/sofort_info.rb +68 -0
- data/lib/adyen_ap_is/models/sofort_info1.rb +68 -0
- data/lib/adyen_ap_is/models/split.rb +173 -0
- data/lib/adyen_ap_is/models/split_amount.rb +73 -0
- data/lib/adyen_ap_is/models/split_amount2.rb +91 -0
- data/lib/adyen_ap_is/models/split_configuration.rb +90 -0
- data/lib/adyen_ap_is/models/split_configuration_list.rb +72 -0
- data/lib/adyen_ap_is/models/split_configuration_logic.rb +313 -0
- data/lib/adyen_ap_is/models/split_configuration_logic2.rb +313 -0
- data/lib/adyen_ap_is/models/split_configuration_rule.rb +160 -0
- data/lib/adyen_ap_is/models/standalone.rb +87 -0
- data/lib/adyen_ap_is/models/standalone1.rb +89 -0
- data/lib/adyen_ap_is/models/standalone_payment_cancel_request.rb +112 -0
- data/lib/adyen_ap_is/models/standalone_payment_cancel_response.rb +101 -0
- data/lib/adyen_ap_is/models/star_info.rb +85 -0
- data/lib/adyen_ap_is/models/star_info1.rb +85 -0
- data/lib/adyen_ap_is/models/status.rb +41 -0
- data/lib/adyen_ap_is/models/status1.rb +41 -0
- data/lib/adyen_ap_is/models/status11.rb +45 -0
- data/lib/adyen_ap_is/models/status2.rb +53 -0
- data/lib/adyen_ap_is/models/status21.rb +50 -0
- data/lib/adyen_ap_is/models/status3.rb +37 -0
- data/lib/adyen_ap_is/models/status31.rb +49 -0
- data/lib/adyen_ap_is/models/status4.rb +63 -0
- data/lib/adyen_ap_is/models/status41.rb +49 -0
- data/lib/adyen_ap_is/models/status5.rb +54 -0
- data/lib/adyen_ap_is/models/store.rb +226 -0
- data/lib/adyen_ap_is/models/store_and_forward.rb +96 -0
- data/lib/adyen_ap_is/models/store_and_forward1.rb +99 -0
- data/lib/adyen_ap_is/models/store_creation_request.rb +180 -0
- data/lib/adyen_ap_is/models/store_creation_with_merchant_code_request.rb +190 -0
- data/lib/adyen_ap_is/models/store_filtration_mode.rb +43 -0
- data/lib/adyen_ap_is/models/store_filtration_mode2.rb +43 -0
- data/lib/adyen_ap_is/models/store_location.rb +132 -0
- data/lib/adyen_ap_is/models/store_location1.rb +132 -0
- data/lib/adyen_ap_is/models/store_payment_method_mode.rb +46 -0
- data/lib/adyen_ap_is/models/store_payment_method_mode2.rb +47 -0
- data/lib/adyen_ap_is/models/store_split_configuration.rb +82 -0
- data/lib/adyen_ap_is/models/store_split_configuration1.rb +83 -0
- data/lib/adyen_ap_is/models/stored_payment_method.rb +186 -0
- data/lib/adyen_ap_is/models/stored_payment_method1.rb +143 -0
- data/lib/adyen_ap_is/models/stored_payment_method2.rb +244 -0
- data/lib/adyen_ap_is/models/stored_payment_method3.rb +148 -0
- data/lib/adyen_ap_is/models/stored_payment_method4.rb +137 -0
- data/lib/adyen_ap_is/models/stored_payment_method_request.rb +128 -0
- data/lib/adyen_ap_is/models/stored_payment_method_resource.rb +277 -0
- data/lib/adyen_ap_is/models/sub_input_detail.rb +120 -0
- data/lib/adyen_ap_is/models/sub_merchant.rb +115 -0
- data/lib/adyen_ap_is/models/sub_merchant2.rb +129 -0
- data/lib/adyen_ap_is/models/sub_merchant_data.rb +94 -0
- data/lib/adyen_ap_is/models/sub_merchant_data1.rb +95 -0
- data/lib/adyen_ap_is/models/sub_merchant_info.rb +186 -0
- data/lib/adyen_ap_is/models/subtype.rb +40 -0
- data/lib/adyen_ap_is/models/supported_card_types.rb +102 -0
- data/lib/adyen_ap_is/models/supported_card_types2.rb +103 -0
- data/lib/adyen_ap_is/models/surcharge.rb +67 -0
- data/lib/adyen_ap_is/models/surcharge1.rb +100 -0
- data/lib/adyen_ap_is/models/surcharge2.rb +88 -0
- data/lib/adyen_ap_is/models/surcharge21.rb +101 -0
- data/lib/adyen_ap_is/models/surcharge3.rb +37 -0
- data/lib/adyen_ap_is/models/suspicious_acc_activity.rb +39 -0
- data/lib/adyen_ap_is/models/svs_info.rb +71 -0
- data/lib/adyen_ap_is/models/svs_info1.rb +71 -0
- data/lib/adyen_ap_is/models/swish_info.rb +61 -0
- data/lib/adyen_ap_is/models/swish_info1.rb +65 -0
- data/lib/adyen_ap_is/models/tap_to_pay.rb +63 -0
- data/lib/adyen_ap_is/models/tap_to_pay1.rb +63 -0
- data/lib/adyen_ap_is/models/tax_total.rb +62 -0
- data/lib/adyen_ap_is/models/tax_total2.rb +62 -0
- data/lib/adyen_ap_is/models/terminal.rb +191 -0
- data/lib/adyen_ap_is/models/terminal_action_schedule_detail.rb +81 -0
- data/lib/adyen_ap_is/models/terminal_assignment.rb +111 -0
- data/lib/adyen_ap_is/models/terminal_assignment2.rb +115 -0
- data/lib/adyen_ap_is/models/terminal_connectivity.rb +91 -0
- data/lib/adyen_ap_is/models/terminal_connectivity2.rb +92 -0
- data/lib/adyen_ap_is/models/terminal_connectivity_bluetooth.rb +71 -0
- data/lib/adyen_ap_is/models/terminal_connectivity_cellular.rb +86 -0
- data/lib/adyen_ap_is/models/terminal_connectivity_ethernet.rb +83 -0
- data/lib/adyen_ap_is/models/terminal_connectivity_wifi.rb +81 -0
- data/lib/adyen_ap_is/models/terminal_instructions.rb +64 -0
- data/lib/adyen_ap_is/models/terminal_instructions1.rb +64 -0
- data/lib/adyen_ap_is/models/terminal_models_response.rb +71 -0
- data/lib/adyen_ap_is/models/terminal_order.rb +147 -0
- data/lib/adyen_ap_is/models/terminal_order_request.rb +128 -0
- data/lib/adyen_ap_is/models/terminal_orders_response.rb +71 -0
- data/lib/adyen_ap_is/models/terminal_product.rb +101 -0
- data/lib/adyen_ap_is/models/terminal_product_price.rb +72 -0
- data/lib/adyen_ap_is/models/terminal_product_price2.rb +72 -0
- data/lib/adyen_ap_is/models/terminal_products_response.rb +71 -0
- data/lib/adyen_ap_is/models/terminal_reassignment_request.rb +99 -0
- data/lib/adyen_ap_is/models/terminal_reassignment_target.rb +98 -0
- data/lib/adyen_ap_is/models/terminal_reassignment_target2.rb +98 -0
- data/lib/adyen_ap_is/models/terminal_settings.rb +338 -0
- data/lib/adyen_ap_is/models/test_company_webhook_request.rb +113 -0
- data/lib/adyen_ap_is/models/test_output.rb +137 -0
- data/lib/adyen_ap_is/models/test_webhook_request.rb +97 -0
- data/lib/adyen_ap_is/models/test_webhook_response.rb +72 -0
- data/lib/adyen_ap_is/models/three_d_secure_data.rb +201 -0
- data/lib/adyen_ap_is/models/three_d_secure_data1.rb +212 -0
- data/lib/adyen_ap_is/models/three_ds2_request_data.rb +611 -0
- data/lib/adyen_ap_is/models/three_ds2_request_data2.rb +614 -0
- data/lib/adyen_ap_is/models/three_ds2_request_fields.rb +571 -0
- data/lib/adyen_ap_is/models/three_ds2_request_fields1.rb +584 -0
- data/lib/adyen_ap_is/models/three_ds2_response_data.rb +265 -0
- data/lib/adyen_ap_is/models/three_ds2_response_data1.rb +275 -0
- data/lib/adyen_ap_is/models/three_ds2_result.rb +234 -0
- data/lib/adyen_ap_is/models/three_ds2_result1.rb +244 -0
- data/lib/adyen_ap_is/models/three_ds_req_auth_method.rb +61 -0
- data/lib/adyen_ap_is/models/three_ds_req_prior_auth_method.rb +47 -0
- data/lib/adyen_ap_is/models/three_ds_request_data.rb +115 -0
- data/lib/adyen_ap_is/models/three_ds_request_data2.rb +125 -0
- data/lib/adyen_ap_is/models/three_ds_requestor_authentication_info.rb +106 -0
- data/lib/adyen_ap_is/models/three_ds_requestor_authentication_info1.rb +117 -0
- data/lib/adyen_ap_is/models/three_ds_requestor_challenge_ind.rb +56 -0
- data/lib/adyen_ap_is/models/three_ds_requestor_prior_authentication_info.rb +123 -0
- data/lib/adyen_ap_is/models/three_ds_requestor_prior_authentication_info1.rb +134 -0
- data/lib/adyen_ap_is/models/three_ds_version.rb +36 -0
- data/lib/adyen_ap_is/models/ticket.rb +101 -0
- data/lib/adyen_ap_is/models/ticket_info.rb +62 -0
- data/lib/adyen_ap_is/models/ticket_info1.rb +62 -0
- data/lib/adyen_ap_is/models/timeouts.rb +64 -0
- data/lib/adyen_ap_is/models/timeouts2.rb +66 -0
- data/lib/adyen_ap_is/models/tip.rb +37 -0
- data/lib/adyen_ap_is/models/token_mandate.rb +223 -0
- data/lib/adyen_ap_is/models/token_mandate2.rb +223 -0
- data/lib/adyen_ap_is/models/token_service.rb +44 -0
- data/lib/adyen_ap_is/models/tokenization_store_operation_type.rb +42 -0
- data/lib/adyen_ap_is/models/trans_type.rb +51 -0
- data/lib/adyen_ap_is/models/transaction_description_info.rb +89 -0
- data/lib/adyen_ap_is/models/transaction_description_info1.rb +90 -0
- data/lib/adyen_ap_is/models/transaction_type.rb +48 -0
- data/lib/adyen_ap_is/models/travel_agency.rb +92 -0
- data/lib/adyen_ap_is/models/twint.rb +147 -0
- data/lib/adyen_ap_is/models/twint_info.rb +60 -0
- data/lib/adyen_ap_is/models/twint_info1.rb +60 -0
- data/lib/adyen_ap_is/models/type.rb +36 -0
- data/lib/adyen_ap_is/models/type1.rb +26 -0
- data/lib/adyen_ap_is/models/type10.rb +36 -0
- data/lib/adyen_ap_is/models/type11.rb +26 -0
- data/lib/adyen_ap_is/models/type12.rb +53 -0
- data/lib/adyen_ap_is/models/type13.rb +27 -0
- data/lib/adyen_ap_is/models/type14.rb +26 -0
- data/lib/adyen_ap_is/models/type15.rb +26 -0
- data/lib/adyen_ap_is/models/type16.rb +27 -0
- data/lib/adyen_ap_is/models/type17.rb +36 -0
- data/lib/adyen_ap_is/models/type18.rb +26 -0
- data/lib/adyen_ap_is/models/type19.rb +72 -0
- data/lib/adyen_ap_is/models/type2.rb +44 -0
- data/lib/adyen_ap_is/models/type20.rb +26 -0
- data/lib/adyen_ap_is/models/type21.rb +26 -0
- data/lib/adyen_ap_is/models/type22.rb +26 -0
- data/lib/adyen_ap_is/models/type23.rb +44 -0
- data/lib/adyen_ap_is/models/type24.rb +48 -0
- data/lib/adyen_ap_is/models/type25.rb +26 -0
- data/lib/adyen_ap_is/models/type26.rb +48 -0
- data/lib/adyen_ap_is/models/type27.rb +26 -0
- data/lib/adyen_ap_is/models/type29.rb +56 -0
- data/lib/adyen_ap_is/models/type3.rb +26 -0
- data/lib/adyen_ap_is/models/type30.rb +26 -0
- data/lib/adyen_ap_is/models/type31.rb +26 -0
- data/lib/adyen_ap_is/models/type32.rb +26 -0
- data/lib/adyen_ap_is/models/type33.rb +36 -0
- data/lib/adyen_ap_is/models/type34.rb +40 -0
- data/lib/adyen_ap_is/models/type35.rb +26 -0
- data/lib/adyen_ap_is/models/type36.rb +26 -0
- data/lib/adyen_ap_is/models/type37.rb +26 -0
- data/lib/adyen_ap_is/models/type38.rb +376 -0
- data/lib/adyen_ap_is/models/type39.rb +26 -0
- data/lib/adyen_ap_is/models/type4.rb +26 -0
- data/lib/adyen_ap_is/models/type40.rb +26 -0
- data/lib/adyen_ap_is/models/type41.rb +26 -0
- data/lib/adyen_ap_is/models/type410.rb +570 -0
- data/lib/adyen_ap_is/models/type42.rb +36 -0
- data/lib/adyen_ap_is/models/type43.rb +44 -0
- data/lib/adyen_ap_is/models/type44.rb +26 -0
- data/lib/adyen_ap_is/models/type45.rb +36 -0
- data/lib/adyen_ap_is/models/type46.rb +148 -0
- data/lib/adyen_ap_is/models/type47.rb +26 -0
- data/lib/adyen_ap_is/models/type48.rb +26 -0
- data/lib/adyen_ap_is/models/type49.rb +26 -0
- data/lib/adyen_ap_is/models/type5.rb +26 -0
- data/lib/adyen_ap_is/models/type50.rb +36 -0
- data/lib/adyen_ap_is/models/type51.rb +26 -0
- data/lib/adyen_ap_is/models/type52.rb +36 -0
- data/lib/adyen_ap_is/models/type53.rb +26 -0
- data/lib/adyen_ap_is/models/type6.rb +26 -0
- data/lib/adyen_ap_is/models/type61.rb +26 -0
- data/lib/adyen_ap_is/models/type7.rb +51 -0
- data/lib/adyen_ap_is/models/type71.rb +26 -0
- data/lib/adyen_ap_is/models/type8.rb +26 -0
- data/lib/adyen_ap_is/models/type9.rb +119 -0
- data/lib/adyen_ap_is/models/types_with_error.rb +568 -0
- data/lib/adyen_ap_is/models/uninstall_android_app_details.rb +96 -0
- data/lib/adyen_ap_is/models/uninstall_android_certificate_details.rb +97 -0
- data/lib/adyen_ap_is/models/unreferenced.rb +66 -0
- data/lib/adyen_ap_is/models/unreferenced2.rb +66 -0
- data/lib/adyen_ap_is/models/updatable_address.rb +122 -0
- data/lib/adyen_ap_is/models/updatable_address1.rb +123 -0
- data/lib/adyen_ap_is/models/update_company_api_credential_request.rb +114 -0
- data/lib/adyen_ap_is/models/update_company_user_request.rb +147 -0
- data/lib/adyen_ap_is/models/update_company_webhook_request.rb +276 -0
- data/lib/adyen_ap_is/models/update_merchant_api_credential_request.rb +98 -0
- data/lib/adyen_ap_is/models/update_merchant_user_request.rb +129 -0
- data/lib/adyen_ap_is/models/update_merchant_webhook_request.rb +235 -0
- data/lib/adyen_ap_is/models/update_payment_link_request.rb +61 -0
- data/lib/adyen_ap_is/models/update_payment_method_info.rb +347 -0
- data/lib/adyen_ap_is/models/update_payout_settings_request.rb +64 -0
- data/lib/adyen_ap_is/models/update_split_configuration_logic_request.rb +313 -0
- data/lib/adyen_ap_is/models/update_split_configuration_request.rb +60 -0
- data/lib/adyen_ap_is/models/update_split_configuration_rule_request.rb +112 -0
- data/lib/adyen_ap_is/models/update_store_request.rb +163 -0
- data/lib/adyen_ap_is/models/upi_collect.rb +182 -0
- data/lib/adyen_ap_is/models/upi_intent.rb +181 -0
- data/lib/adyen_ap_is/models/upi_payment_method.rb +84 -0
- data/lib/adyen_ap_is/models/upi_qr.rb +170 -0
- data/lib/adyen_ap_is/models/upload_android_app_response.rb +62 -0
- data/lib/adyen_ap_is/models/upload_android_certificate_response.rb +62 -0
- data/lib/adyen_ap_is/models/url.rb +91 -0
- data/lib/adyen_ap_is/models/user.rb +149 -0
- data/lib/adyen_ap_is/models/utility_request.rb +60 -0
- data/lib/adyen_ap_is/models/utility_response.rb +63 -0
- data/lib/adyen_ap_is/models/validate_shopper_id_request.rb +119 -0
- data/lib/adyen_ap_is/models/validate_shopper_id_response.rb +85 -0
- data/lib/adyen_ap_is/models/valuelink_info.rb +92 -0
- data/lib/adyen_ap_is/models/valuelink_info1.rb +92 -0
- data/lib/adyen_ap_is/models/verification_status.rb +45 -0
- data/lib/adyen_ap_is/models/verification_status1.rb +48 -0
- data/lib/adyen_ap_is/models/vipps.rb +153 -0
- data/lib/adyen_ap_is/models/vipps_info.rb +73 -0
- data/lib/adyen_ap_is/models/vipps_info1.rb +73 -0
- data/lib/adyen_ap_is/models/visa_checkout.rb +137 -0
- data/lib/adyen_ap_is/models/voucher.rb +156 -0
- data/lib/adyen_ap_is/models/wallet_purpose.rb +48 -0
- data/lib/adyen_ap_is/models/we_chat_pay.rb +108 -0
- data/lib/adyen_ap_is/models/we_chat_pay_info.rb +70 -0
- data/lib/adyen_ap_is/models/we_chat_pay_info1.rb +70 -0
- data/lib/adyen_ap_is/models/we_chat_pay_mini_program.rb +158 -0
- data/lib/adyen_ap_is/models/we_chat_pay_pos_info.rb +70 -0
- data/lib/adyen_ap_is/models/we_chat_pay_pos_info1.rb +70 -0
- data/lib/adyen_ap_is/models/webhook.rb +369 -0
- data/lib/adyen_ap_is/models/webhook_links.rb +101 -0
- data/lib/adyen_ap_is/models/webhook_links2.rb +101 -0
- data/lib/adyen_ap_is/models/wifi_profiles.rb +80 -0
- data/lib/adyen_ap_is/models/wifi_profiles2.rb +80 -0
- data/lib/adyen_ap_is/models/zip.rb +150 -0
- data/lib/adyen_ap_is/utilities/date_time_helper.rb +11 -0
- data/lib/adyen_ap_is/utilities/file_wrapper.rb +28 -0
- data/lib/adyen_ap_is/utilities/union_type_lookup.rb +156 -0
- data/lib/adyen_ap_is.rb +964 -0
- metadata +1021 -0
|
@@ -0,0 +1,1191 @@
|
|
|
1
|
+
# adyen_ap_is
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require 'date'
|
|
7
|
+
module AdyenApIs
|
|
8
|
+
# PaymentRequest Model.
|
|
9
|
+
class PaymentRequest < BaseModel
|
|
10
|
+
SKIP = Object.new
|
|
11
|
+
private_constant :SKIP
|
|
12
|
+
|
|
13
|
+
# Shopper account information for 3D Secure 2.
|
|
14
|
+
# > For 3D Secure 2 transactions, we recommend that you include this object
|
|
15
|
+
# to increase the chances of achieving a frictionless flow.
|
|
16
|
+
# @return [AccountInfo1]
|
|
17
|
+
attr_accessor :account_info
|
|
18
|
+
|
|
19
|
+
# If you want a [BIN or card
|
|
20
|
+
# verification](https://docs.adyen.com/payment-methods/cards/bin-data-and-ca
|
|
21
|
+
# rd-verification) request to use a non-zero value, assign this value to
|
|
22
|
+
# `additionalAmount` (while the amount must be still set to 0 to trigger BIN
|
|
23
|
+
# or card verification).
|
|
24
|
+
# Required to be in the same currency as the `amount`.
|
|
25
|
+
# @return [Amount1]
|
|
26
|
+
attr_accessor :additional_amount
|
|
27
|
+
|
|
28
|
+
# This field contains additional data, which may be required for a
|
|
29
|
+
# particular payment request.
|
|
30
|
+
# The `additionalData` object consists of entries, each of which includes
|
|
31
|
+
# the key and value.
|
|
32
|
+
# @return [Hash[String, String]]
|
|
33
|
+
attr_accessor :additional_data
|
|
34
|
+
|
|
35
|
+
# The amount information for the transaction (in [minor
|
|
36
|
+
# units](https://docs.adyen.com/development-resources/currency-codes)). For
|
|
37
|
+
# [BIN or card
|
|
38
|
+
# verification](https://docs.adyen.com/payment-methods/cards/bin-data-and-ca
|
|
39
|
+
# rd-verification) requests, set amount to 0 (zero).
|
|
40
|
+
# @return [Amount2]
|
|
41
|
+
attr_accessor :amount
|
|
42
|
+
|
|
43
|
+
# Information about your application. For more details, see [Building Adyen
|
|
44
|
+
# solutions](https://docs.adyen.com/development-resources/building-adyen-sol
|
|
45
|
+
# utions).
|
|
46
|
+
# @return [ApplicationInfo1]
|
|
47
|
+
attr_accessor :application_info
|
|
48
|
+
|
|
49
|
+
# Data for 3DS authentication.
|
|
50
|
+
# @return [AuthenticationData3]
|
|
51
|
+
attr_accessor :authentication_data
|
|
52
|
+
|
|
53
|
+
# The details of the bank account, from which the payment should be made.
|
|
54
|
+
# > Either `bankAccount` or `card` field must be provided in a payment
|
|
55
|
+
# request.
|
|
56
|
+
# @return [CheckoutBankAccount1]
|
|
57
|
+
attr_accessor :bank_account
|
|
58
|
+
|
|
59
|
+
# The address where to send the invoice.
|
|
60
|
+
# > The `billingAddress` object is required in the following scenarios.
|
|
61
|
+
# Include all of the fields within this object.
|
|
62
|
+
# >* For 3D Secure 2 transactions in all browser-based and mobile
|
|
63
|
+
# implementations.
|
|
64
|
+
# >* For cross-border payouts to and from Canada.
|
|
65
|
+
# @return [BillingAddress3]
|
|
66
|
+
attr_accessor :billing_address
|
|
67
|
+
|
|
68
|
+
# The shopper's browser information.
|
|
69
|
+
# > For 3D Secure, the full object is required for web integrations. For
|
|
70
|
+
# mobile app integrations, include the `userAgent` and `acceptHeader` fields
|
|
71
|
+
# to indicate that your integration can support a redirect in case a
|
|
72
|
+
# payment is routed to 3D Secure 2 redirect.
|
|
73
|
+
# @return [BrowserInfo2]
|
|
74
|
+
attr_accessor :browser_info
|
|
75
|
+
|
|
76
|
+
# The delay between the authorisation and scheduled auto-capture, specified
|
|
77
|
+
# in hours.
|
|
78
|
+
# @return [Integer]
|
|
79
|
+
attr_accessor :capture_delay_hours
|
|
80
|
+
|
|
81
|
+
# The platform where a payment transaction takes place. This field is
|
|
82
|
+
# optional for filtering out payment methods that are only available on
|
|
83
|
+
# specific platforms. If this value is not set, then we will try to infer it
|
|
84
|
+
# from the `sdkVersion` or `token`.
|
|
85
|
+
# Possible values:
|
|
86
|
+
# * iOS
|
|
87
|
+
# * Android
|
|
88
|
+
# * Web
|
|
89
|
+
# @return [Channel2]
|
|
90
|
+
attr_accessor :channel
|
|
91
|
+
|
|
92
|
+
# Checkout attempt ID that corresponds to the Id generated by the client SDK
|
|
93
|
+
# for tracking user payment journey.
|
|
94
|
+
# @return [String]
|
|
95
|
+
attr_accessor :checkout_attempt_id
|
|
96
|
+
|
|
97
|
+
# Information regarding the company.
|
|
98
|
+
# @return [Company1]
|
|
99
|
+
attr_accessor :company
|
|
100
|
+
|
|
101
|
+
# Conversion ID that corresponds to the Id generated by the client SDK for
|
|
102
|
+
# tracking user payment journey.
|
|
103
|
+
# @return [String]
|
|
104
|
+
attr_accessor :conversion_id
|
|
105
|
+
|
|
106
|
+
# The shopper country.
|
|
107
|
+
# Format: [ISO 3166-1
|
|
108
|
+
# alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
|
|
109
|
+
# Example: NL or DE
|
|
110
|
+
# @return [String]
|
|
111
|
+
attr_accessor :country_code
|
|
112
|
+
|
|
113
|
+
# The shopper's date of birth.
|
|
114
|
+
# Format [ISO-8601](https://www.w3.org/TR/NOTE-datetime): YYYY-MM-DD
|
|
115
|
+
# @return [DateTime]
|
|
116
|
+
attr_accessor :date_of_birth
|
|
117
|
+
|
|
118
|
+
# The forex quote as returned in the response of the forex service.
|
|
119
|
+
# @return [ForexQuote2]
|
|
120
|
+
attr_accessor :dcc_quote
|
|
121
|
+
|
|
122
|
+
# The date and time the purchased goods should be delivered.
|
|
123
|
+
# Format [ISO 8601](https://www.w3.org/TR/NOTE-datetime):
|
|
124
|
+
# YYYY-MM-DDThh:mm:ss.sssTZD
|
|
125
|
+
# Example: 2017-07-17T13:42:40.428+01:00
|
|
126
|
+
# @return [DateTime]
|
|
127
|
+
attr_accessor :deliver_at
|
|
128
|
+
|
|
129
|
+
# The address where the purchased goods should be delivered.
|
|
130
|
+
# @return [DeliveryAddress1]
|
|
131
|
+
attr_accessor :delivery_address
|
|
132
|
+
|
|
133
|
+
# The date and time the purchased goods should be delivered.
|
|
134
|
+
# Format [ISO 8601](https://www.w3.org/TR/NOTE-datetime):
|
|
135
|
+
# YYYY-MM-DDThh:mm:ss.sssTZD
|
|
136
|
+
# Example: 2017-07-17T13:42:40.428+01:00
|
|
137
|
+
# @return [DateTime]
|
|
138
|
+
attr_accessor :delivery_date
|
|
139
|
+
|
|
140
|
+
# A string containing the shopper's device fingerprint. For more
|
|
141
|
+
# information, refer to [Device
|
|
142
|
+
# fingerprinting](https://docs.adyen.com/risk-management/device-fingerprinti
|
|
143
|
+
# ng).
|
|
144
|
+
# @return [String]
|
|
145
|
+
attr_accessor :device_fingerprint
|
|
146
|
+
|
|
147
|
+
# When true and `shopperReference` is provided, the shopper will be asked if
|
|
148
|
+
# the payment details should be stored for future [one-click
|
|
149
|
+
# payments](https://docs.adyen.com/get-started-with-adyen/payment-glossary/#
|
|
150
|
+
# one-click-payments-definition).
|
|
151
|
+
# @return [TrueClass | FalseClass]
|
|
152
|
+
attr_accessor :enable_one_click
|
|
153
|
+
|
|
154
|
+
# When true and `shopperReference` is provided, the payment details will be
|
|
155
|
+
# tokenized for payouts.
|
|
156
|
+
# @return [TrueClass | FalseClass]
|
|
157
|
+
attr_accessor :enable_pay_out
|
|
158
|
+
|
|
159
|
+
# When true and `shopperReference` is provided, the payment details will be
|
|
160
|
+
# stored for [recurring
|
|
161
|
+
# payments](https://docs.adyen.com/online-payments/tokenization/#recurring-p
|
|
162
|
+
# ayment-types) where the shopper is not present, such as subscription or
|
|
163
|
+
# automatic top-up payments.
|
|
164
|
+
# @return [TrueClass | FalseClass]
|
|
165
|
+
attr_accessor :enable_recurring
|
|
166
|
+
|
|
167
|
+
# [Enhanced scheme
|
|
168
|
+
# data](https://docs.adyen.com/payment-methods/cards/enhanced-scheme-data/)
|
|
169
|
+
# that may be required for processing the payment and/or interchange savings
|
|
170
|
+
# can apply.
|
|
171
|
+
# @return [EnhancedSchemeData5]
|
|
172
|
+
attr_accessor :enhanced_scheme_data
|
|
173
|
+
|
|
174
|
+
# The type of the entity the payment is processed for.
|
|
175
|
+
# @return [EntityType]
|
|
176
|
+
attr_accessor :entity_type
|
|
177
|
+
|
|
178
|
+
# An integer value that is added to the normal fraud score. The value can be
|
|
179
|
+
# either positive or negative.
|
|
180
|
+
# @return [Integer]
|
|
181
|
+
attr_accessor :fraud_offset
|
|
182
|
+
|
|
183
|
+
# The person or entity funding the money.
|
|
184
|
+
# @return [FundOrigin1]
|
|
185
|
+
attr_accessor :fund_origin
|
|
186
|
+
|
|
187
|
+
# the person or entity receiving the money
|
|
188
|
+
# @return [FundRecipient1]
|
|
189
|
+
attr_accessor :fund_recipient
|
|
190
|
+
|
|
191
|
+
# The reason for the amount update. Possible values:
|
|
192
|
+
# * **delayedCharge**
|
|
193
|
+
# * **noShow**
|
|
194
|
+
# * **installment**
|
|
195
|
+
# @return [IndustryUsage1]
|
|
196
|
+
attr_accessor :industry_usage
|
|
197
|
+
|
|
198
|
+
# Contains installment settings. For more information, refer to
|
|
199
|
+
# [Installments](https://docs.adyen.com/payment-methods/cards/credit-card-in
|
|
200
|
+
# stallments).
|
|
201
|
+
# @return [Installments2]
|
|
202
|
+
attr_accessor :installments
|
|
203
|
+
|
|
204
|
+
# Price and product information about the purchased items, to be included on
|
|
205
|
+
# the invoice sent to the shopper.
|
|
206
|
+
# > This field is required for 3x 4x Oney, Affirm, Afterpay, Clearpay,
|
|
207
|
+
# Klarna, Ratepay, and Riverty.
|
|
208
|
+
# @return [Array[LineItem]]
|
|
209
|
+
attr_accessor :line_items
|
|
210
|
+
|
|
211
|
+
# The `localizedShopperStatement` field lets you use dynamic values for your
|
|
212
|
+
# shopper statement in a local character set. If this parameter is left
|
|
213
|
+
# empty, not provided, or not applicable (in case of cross-border
|
|
214
|
+
# transactions), then **shopperStatement** is used.
|
|
215
|
+
# Currently, `localizedShopperStatement` is only supported for payments with
|
|
216
|
+
# Visa, Mastercard, JCB, Diners, and Discover.
|
|
217
|
+
# **Supported characters**: Hiragana, Katakana, Kanji, and alphanumeric.
|
|
218
|
+
# @return [Hash[String, String]]
|
|
219
|
+
attr_accessor :localized_shopper_statement
|
|
220
|
+
|
|
221
|
+
# The mandate details to initiate recurring transaction.
|
|
222
|
+
# @return [Mandate1]
|
|
223
|
+
attr_accessor :mandate
|
|
224
|
+
|
|
225
|
+
# The [merchant category
|
|
226
|
+
# code](https://en.wikipedia.org/wiki/Merchant_category_code) (MCC) is a
|
|
227
|
+
# four-digit number, which relates to a particular market segment. This code
|
|
228
|
+
# reflects the predominant activity that is conducted by the merchant.
|
|
229
|
+
# @return [String]
|
|
230
|
+
attr_accessor :mcc
|
|
231
|
+
|
|
232
|
+
# The merchant account identifier, with which you want to process the
|
|
233
|
+
# transaction.
|
|
234
|
+
# @return [String]
|
|
235
|
+
attr_accessor :merchant_account
|
|
236
|
+
|
|
237
|
+
# This reference allows linking multiple transactions to each other for
|
|
238
|
+
# reporting purposes (i.e. order auth-rate). The reference should be unique
|
|
239
|
+
# per billing cycle.
|
|
240
|
+
# The same merchant order reference should never be reused after the first
|
|
241
|
+
# authorised attempt. If used, this field should be supplied for all
|
|
242
|
+
# incoming authorisations.
|
|
243
|
+
# > We strongly recommend you send the `merchantOrderReference` value to
|
|
244
|
+
# benefit from linking payment requests when authorisation retries take
|
|
245
|
+
# place. In addition, we recommend you provide `retry.orderAttemptNumber`,
|
|
246
|
+
# `retry.chainAttemptNumber`, and `retry.skipRetry` values in
|
|
247
|
+
# `PaymentRequest.additionalData`.
|
|
248
|
+
# @return [String]
|
|
249
|
+
attr_accessor :merchant_order_reference
|
|
250
|
+
|
|
251
|
+
# Additional risk fields for 3D Secure 2.
|
|
252
|
+
# > For 3D Secure 2 transactions, we recommend that you include this object
|
|
253
|
+
# to increase the chances of achieving a frictionless flow.
|
|
254
|
+
# @return [MerchantRiskIndicator1]
|
|
255
|
+
attr_accessor :merchant_risk_indicator
|
|
256
|
+
|
|
257
|
+
# Metadata consists of entries, each of which includes a key and a value.
|
|
258
|
+
# Limits:
|
|
259
|
+
# * Maximum 20 key-value pairs per request. When exceeding, the "177" error
|
|
260
|
+
# occurs: "Metadata size exceeds limit".
|
|
261
|
+
# * Maximum 20 characters per key.
|
|
262
|
+
# * Maximum 80 characters per value.
|
|
263
|
+
# @return [Hash[String, String]]
|
|
264
|
+
attr_accessor :metadata
|
|
265
|
+
|
|
266
|
+
# Authentication data produced by an MPI (Mastercard SecureCode, Visa
|
|
267
|
+
# Secure, or Cartes Bancaires).
|
|
268
|
+
# @return [ThreeDSecureData1]
|
|
269
|
+
attr_accessor :mpi_data
|
|
270
|
+
|
|
271
|
+
# The order information required for partial payments.
|
|
272
|
+
# @return [EncryptedOrderData2]
|
|
273
|
+
attr_accessor :order
|
|
274
|
+
|
|
275
|
+
# When you are doing multiple partial (gift card) payments, this is the
|
|
276
|
+
# `pspReference` of the first payment. We use this to link the multiple
|
|
277
|
+
# payments to each other. As your own reference for linking multiple
|
|
278
|
+
# payments, use the `merchantOrderReference`instead.
|
|
279
|
+
# @return [String]
|
|
280
|
+
attr_accessor :order_reference
|
|
281
|
+
|
|
282
|
+
# > Required for browser-based (`channel` **Web**) 3D Secure 2
|
|
283
|
+
# transactions.Set this to the origin URL of the page where you are
|
|
284
|
+
# rendering the Drop-in/Component. Do not include subdirectories and a
|
|
285
|
+
# trailing slash.
|
|
286
|
+
# @return [String]
|
|
287
|
+
attr_accessor :origin
|
|
288
|
+
|
|
289
|
+
# The type and required details of a payment method to use.
|
|
290
|
+
# @return [Object]
|
|
291
|
+
attr_accessor :payment_method
|
|
292
|
+
|
|
293
|
+
# The object that you can use to enable payment validations for a
|
|
294
|
+
# transaction.
|
|
295
|
+
# @return [PaymentValidations2]
|
|
296
|
+
attr_accessor :payment_validations
|
|
297
|
+
|
|
298
|
+
# Defines how to book chargebacks when using [Adyen for
|
|
299
|
+
# Platforms](https://docs.adyen.com/adyen-for-platforms-model).
|
|
300
|
+
# @return [PlatformChargebackLogic1]
|
|
301
|
+
attr_accessor :platform_chargeback_logic
|
|
302
|
+
|
|
303
|
+
# Date after which no further authorisations shall be performed. Only for 3D
|
|
304
|
+
# Secure 2.
|
|
305
|
+
# @return [String]
|
|
306
|
+
attr_accessor :recurring_expiry
|
|
307
|
+
|
|
308
|
+
# Minimum number of days between authorisations. Only for 3D Secure 2.
|
|
309
|
+
# @return [String]
|
|
310
|
+
attr_accessor :recurring_frequency
|
|
311
|
+
|
|
312
|
+
# Defines a recurring payment type. Required when creating a token to store
|
|
313
|
+
# payment details or using stored payment details.
|
|
314
|
+
# Allowed values:
|
|
315
|
+
# * `Subscription` – A transaction for a fixed or variable amount, which
|
|
316
|
+
# follows a fixed schedule.
|
|
317
|
+
# * `CardOnFile` – With a card-on-file (CoF) transaction, card details are
|
|
318
|
+
# stored to enable one-click or omnichannel journeys, or simply to
|
|
319
|
+
# streamline the checkout process. Any subscription not following a fixed
|
|
320
|
+
# schedule is also considered a card-on-file transaction.
|
|
321
|
+
# * `UnscheduledCardOnFile` – An unscheduled card-on-file (UCoF) transaction
|
|
322
|
+
# is a transaction that occurs on a non-fixed schedule and/or have variable
|
|
323
|
+
# amounts. For example, automatic top-ups when a cardholder's balance drops
|
|
324
|
+
# below a certain amount.
|
|
325
|
+
# @return [RecurringProcessingModel]
|
|
326
|
+
attr_accessor :recurring_processing_model
|
|
327
|
+
|
|
328
|
+
# Specifies the redirect method (GET or POST) when redirecting back from the
|
|
329
|
+
# issuer.
|
|
330
|
+
# @return [String]
|
|
331
|
+
attr_accessor :redirect_from_issuer_method
|
|
332
|
+
|
|
333
|
+
# Specifies the redirect method (GET or POST) when redirecting to the
|
|
334
|
+
# issuer.
|
|
335
|
+
# @return [String]
|
|
336
|
+
attr_accessor :redirect_to_issuer_method
|
|
337
|
+
|
|
338
|
+
# The reference to uniquely identify a payment. This reference is used in
|
|
339
|
+
# all communication with you about the payment status. We recommend using a
|
|
340
|
+
# unique value per payment; however, it is not a requirement.
|
|
341
|
+
# If you need to provide multiple references for a transaction, separate
|
|
342
|
+
# them with hyphens ("-").
|
|
343
|
+
# Maximum length: 80 characters.
|
|
344
|
+
# @return [String]
|
|
345
|
+
attr_accessor :reference
|
|
346
|
+
|
|
347
|
+
# The URL to return to in case of a redirection.
|
|
348
|
+
# The format depends on the channel.
|
|
349
|
+
# * For web, include the protocol `http://` or `https://`. You can also
|
|
350
|
+
# include your own additional query parameters, for example, shopper ID or
|
|
351
|
+
# order reference number.
|
|
352
|
+
# Example: `https://your-company.example.com/checkout?shopperOrder=12xy`
|
|
353
|
+
# * For iOS, use the custom URL for your app. To know more about setting
|
|
354
|
+
# custom URL schemes, refer to the [Apple Developer
|
|
355
|
+
# documentation](https://developer.apple.com/documentation/uikit/inter-proce
|
|
356
|
+
# ss_communication/allowing_apps_and_websites_to_link_to_your_content/defini
|
|
357
|
+
# ng_a_custom_url_scheme_for_your_app).
|
|
358
|
+
# Example: `my-app://`
|
|
359
|
+
# * For Android, use a custom URL handled by an Activity on your app. You
|
|
360
|
+
# can configure it with an [intent
|
|
361
|
+
# filter](https://developer.android.com/guide/components/intents-filters).
|
|
362
|
+
# Example: `my-app://your.package.name`
|
|
363
|
+
# If the URL to return to includes non-ASCII characters, like spaces or
|
|
364
|
+
# special letters, URL encode the value.
|
|
365
|
+
# We strongly recommend that you use a maximum of 1024 characters.
|
|
366
|
+
# > The URL must not include personally identifiable information (PII), for
|
|
367
|
+
# example name or email address.
|
|
368
|
+
# @return [String]
|
|
369
|
+
attr_accessor :return_url
|
|
370
|
+
|
|
371
|
+
# Contains risk data, such as client-side data, used to identify risk for a
|
|
372
|
+
# transaction.
|
|
373
|
+
# @return [RiskData4]
|
|
374
|
+
attr_accessor :risk_data
|
|
375
|
+
|
|
376
|
+
# The date and time until when the session remains valid, in [ISO
|
|
377
|
+
# 8601](https://www.w3.org/TR/NOTE-datetime) format.
|
|
378
|
+
# For example: 2020-07-18T15:42:40.428+01:00
|
|
379
|
+
# @return [String]
|
|
380
|
+
attr_accessor :session_validity
|
|
381
|
+
|
|
382
|
+
# A unique ID that can be used to associate `/paymentMethods` and
|
|
383
|
+
# `/payments` requests with the same shopper transaction, offering insights
|
|
384
|
+
# into conversion rates.
|
|
385
|
+
# @return [String]
|
|
386
|
+
attr_accessor :shopper_conversion_id
|
|
387
|
+
|
|
388
|
+
# The shopper's email address. We recommend that you provide this data, as
|
|
389
|
+
# it is used in velocity fraud checks. > Required for Visa and JCB
|
|
390
|
+
# transactions that require 3D Secure 2 authentication if you did not
|
|
391
|
+
# include the `telephoneNumber`.
|
|
392
|
+
# @return [String]
|
|
393
|
+
attr_accessor :shopper_email
|
|
394
|
+
|
|
395
|
+
# The shopper's IP address. We recommend that you provide this data, as it
|
|
396
|
+
# is used in a number of risk checks (for instance, number of payment
|
|
397
|
+
# attempts or location-based checks).
|
|
398
|
+
# > Required for Visa and JCB transactions that require 3D Secure 2
|
|
399
|
+
# authentication for all web and mobile integrations, if you did not include
|
|
400
|
+
# the `shopperEmail`. For native mobile integrations, the field is required
|
|
401
|
+
# to support cases where authentication is routed to the redirect flow. This
|
|
402
|
+
# field is also mandatory for some merchants depending on your business
|
|
403
|
+
# model. For more information, [contact
|
|
404
|
+
# Support](https://www.adyen.help/hc/en-us/requests/new).
|
|
405
|
+
# @return [String]
|
|
406
|
+
attr_accessor :shopper_ip
|
|
407
|
+
|
|
408
|
+
# Specifies the sales channel, through which the shopper gives their card
|
|
409
|
+
# details, and whether the shopper is a returning customer.
|
|
410
|
+
# For the web service API, Adyen assumes Ecommerce shopper interaction by
|
|
411
|
+
# default.
|
|
412
|
+
# This field has the following possible values:
|
|
413
|
+
# * `Ecommerce` - Online transactions where the cardholder is present
|
|
414
|
+
# (online). For better authorisation rates, we recommend sending the card
|
|
415
|
+
# security code (CSC) along with the request.
|
|
416
|
+
# * `ContAuth` - Card on file and/or subscription transactions, where the
|
|
417
|
+
# cardholder is known to the merchant (returning customer). If the shopper
|
|
418
|
+
# is present (online), you can supply also the CSC to improve authorisation
|
|
419
|
+
# (one-click payment).
|
|
420
|
+
# * `Moto` - Mail-order and telephone-order transactions where the shopper
|
|
421
|
+
# is in contact with the merchant via email or telephone.
|
|
422
|
+
# * `POS` - Point-of-sale transactions where the shopper is physically
|
|
423
|
+
# present to make a payment using a secure payment terminal.
|
|
424
|
+
# @return [ShopperInteraction]
|
|
425
|
+
attr_accessor :shopper_interaction
|
|
426
|
+
|
|
427
|
+
# The combination of a language code and a country code to specify the
|
|
428
|
+
# language to be used in the payment.
|
|
429
|
+
# @return [String]
|
|
430
|
+
attr_accessor :shopper_locale
|
|
431
|
+
|
|
432
|
+
# The shopper's full name.
|
|
433
|
+
# @return [ShopperName2]
|
|
434
|
+
attr_accessor :shopper_name
|
|
435
|
+
|
|
436
|
+
# Required for recurring payments.
|
|
437
|
+
# Your reference to uniquely identify this shopper, for example user ID or
|
|
438
|
+
# account ID. Minimum length: 3 characters.
|
|
439
|
+
# > Your reference must not include personally identifiable information
|
|
440
|
+
# (PII), for example name or email address.
|
|
441
|
+
# @return [String]
|
|
442
|
+
attr_accessor :shopper_reference
|
|
443
|
+
|
|
444
|
+
# The text to be shown on the shopper's bank statement.
|
|
445
|
+
# We recommend sending a maximum of 22 characters, otherwise banks might
|
|
446
|
+
# truncate the string.
|
|
447
|
+
# Allowed characters: **a-z**, **A-Z**, **0-9**, spaces, and special
|
|
448
|
+
# characters **. , ' _ - ? + * /**.
|
|
449
|
+
# @return [String]
|
|
450
|
+
attr_accessor :shopper_statement
|
|
451
|
+
|
|
452
|
+
# The tax info of the shopper
|
|
453
|
+
# @return [ShopperTaxInfo2]
|
|
454
|
+
attr_accessor :shopper_tax_info
|
|
455
|
+
|
|
456
|
+
# The shopper's social security number.
|
|
457
|
+
# @return [String]
|
|
458
|
+
attr_accessor :social_security_number
|
|
459
|
+
|
|
460
|
+
# An array of objects specifying how to split a payment when using [Adyen
|
|
461
|
+
# for
|
|
462
|
+
# Platforms](https://docs.adyen.com/platforms/process-payments#providing-spl
|
|
463
|
+
# it-information), [Classic Platforms
|
|
464
|
+
# integration](https://docs.adyen.com/classic-platforms/processing-payments#
|
|
465
|
+
# providing-split-information), or
|
|
466
|
+
# [Issuing](https://docs.adyen.com/issuing/manage-funds#split).
|
|
467
|
+
# @return [Array[Split]]
|
|
468
|
+
attr_accessor :splits
|
|
469
|
+
|
|
470
|
+
# Required for Adyen for Platforms integrations if you are a platform model.
|
|
471
|
+
# This is your
|
|
472
|
+
# [reference](https://docs.adyen.com/api-explorer/Management/3/post/merchant
|
|
473
|
+
# s/(merchantId)/stores#request-reference) (on [balance
|
|
474
|
+
# platform](https://docs.adyen.com/platforms)) or the
|
|
475
|
+
# [storeReference](https://docs.adyen.com/api-explorer/Account/latest/post/u
|
|
476
|
+
# pdateAccountHolder#request-accountHolderDetails-storeDetails-storeReferenc
|
|
477
|
+
# e) (in the [classic
|
|
478
|
+
# integration](https://docs.adyen.com/classic-platforms/processing-payments/
|
|
479
|
+
# route-payment-to-store/#route-a-payment-to-a-store)) for the ecommerce or
|
|
480
|
+
# point-of-sale store that is processing the payment.
|
|
481
|
+
# @return [String]
|
|
482
|
+
attr_accessor :store
|
|
483
|
+
|
|
484
|
+
# When true and `shopperReference` is provided, the payment details will be
|
|
485
|
+
# stored for future [recurring
|
|
486
|
+
# payments](https://docs.adyen.com/online-payments/tokenization/#recurring-p
|
|
487
|
+
# ayment-types).
|
|
488
|
+
# @return [TrueClass | FalseClass]
|
|
489
|
+
attr_accessor :store_payment_method
|
|
490
|
+
|
|
491
|
+
# This field contains additional information on the submerchant, who is
|
|
492
|
+
# onboarded to an acquirer through a payment facilitator or aggregator
|
|
493
|
+
# @return [Array[SubMerchantInfo]]
|
|
494
|
+
attr_accessor :sub_merchants
|
|
495
|
+
|
|
496
|
+
# The [surcharge](https://docs.adyen.com/online-payments/surcharge/) amount
|
|
497
|
+
# to apply to the transaction, in [minor
|
|
498
|
+
# units](https://docs.adyen.com/development-resources/currency-codes). When
|
|
499
|
+
# you apply surcharge, include the surcharge in the `amount.value` field.
|
|
500
|
+
# Review our [Surcharge compliance
|
|
501
|
+
# guide](https://docs.adyen.com/development-resources/surcharge-compliance/)
|
|
502
|
+
# to learn about how to comply with regulatory requirements when applying
|
|
503
|
+
# surcharge.
|
|
504
|
+
# @return [Surcharge2]
|
|
505
|
+
attr_accessor :surcharge
|
|
506
|
+
|
|
507
|
+
# The shopper's telephone number.
|
|
508
|
+
# The phone number must include a plus sign (+) and a country code (1-3
|
|
509
|
+
# digits), followed by the number (4-15 digits). If the value you provide
|
|
510
|
+
# does not follow the guidelines, we do not submit it for authentication.
|
|
511
|
+
# > Required for Visa and JCB transactions that require 3D Secure 2
|
|
512
|
+
# authentication, if you did not include the `shopperEmail`.
|
|
513
|
+
# @return [String]
|
|
514
|
+
attr_accessor :telephone_number
|
|
515
|
+
|
|
516
|
+
# Request fields for 3D Secure 2. To check if any of the following fields
|
|
517
|
+
# are required for your integration, refer to [Online
|
|
518
|
+
# payments](https://docs.adyen.com/online-payments) or [Classic
|
|
519
|
+
# integration](https://docs.adyen.com/classic-integration) documentation.
|
|
520
|
+
# @return [ThreeDs2RequestFields1]
|
|
521
|
+
attr_accessor :three_ds2_request_data
|
|
522
|
+
|
|
523
|
+
# Required to trigger the [authentication-only
|
|
524
|
+
# flow](https://docs.adyen.com/online-payments/3d-secure/authentication-only
|
|
525
|
+
# /). If set to **true**, you will only perform the 3D Secure 2
|
|
526
|
+
# authentication, and will not proceed to the payment authorisation.Default:
|
|
527
|
+
# **false**.
|
|
528
|
+
# @return [TrueClass | FalseClass]
|
|
529
|
+
attr_accessor :three_ds_authentication_only
|
|
530
|
+
|
|
531
|
+
# Set to true if the payment should be routed to a trusted MID.
|
|
532
|
+
# @return [TrueClass | FalseClass]
|
|
533
|
+
attr_accessor :trusted_shopper
|
|
534
|
+
|
|
535
|
+
# A mapping from model property names to API property names.
|
|
536
|
+
def self.names
|
|
537
|
+
@_hash = {} if @_hash.nil?
|
|
538
|
+
@_hash['account_info'] = 'accountInfo'
|
|
539
|
+
@_hash['additional_amount'] = 'additionalAmount'
|
|
540
|
+
@_hash['additional_data'] = 'additionalData'
|
|
541
|
+
@_hash['amount'] = 'amount'
|
|
542
|
+
@_hash['application_info'] = 'applicationInfo'
|
|
543
|
+
@_hash['authentication_data'] = 'authenticationData'
|
|
544
|
+
@_hash['bank_account'] = 'bankAccount'
|
|
545
|
+
@_hash['billing_address'] = 'billingAddress'
|
|
546
|
+
@_hash['browser_info'] = 'browserInfo'
|
|
547
|
+
@_hash['capture_delay_hours'] = 'captureDelayHours'
|
|
548
|
+
@_hash['channel'] = 'channel'
|
|
549
|
+
@_hash['checkout_attempt_id'] = 'checkoutAttemptId'
|
|
550
|
+
@_hash['company'] = 'company'
|
|
551
|
+
@_hash['conversion_id'] = 'conversionId'
|
|
552
|
+
@_hash['country_code'] = 'countryCode'
|
|
553
|
+
@_hash['date_of_birth'] = 'dateOfBirth'
|
|
554
|
+
@_hash['dcc_quote'] = 'dccQuote'
|
|
555
|
+
@_hash['deliver_at'] = 'deliverAt'
|
|
556
|
+
@_hash['delivery_address'] = 'deliveryAddress'
|
|
557
|
+
@_hash['delivery_date'] = 'deliveryDate'
|
|
558
|
+
@_hash['device_fingerprint'] = 'deviceFingerprint'
|
|
559
|
+
@_hash['enable_one_click'] = 'enableOneClick'
|
|
560
|
+
@_hash['enable_pay_out'] = 'enablePayOut'
|
|
561
|
+
@_hash['enable_recurring'] = 'enableRecurring'
|
|
562
|
+
@_hash['enhanced_scheme_data'] = 'enhancedSchemeData'
|
|
563
|
+
@_hash['entity_type'] = 'entityType'
|
|
564
|
+
@_hash['fraud_offset'] = 'fraudOffset'
|
|
565
|
+
@_hash['fund_origin'] = 'fundOrigin'
|
|
566
|
+
@_hash['fund_recipient'] = 'fundRecipient'
|
|
567
|
+
@_hash['industry_usage'] = 'industryUsage'
|
|
568
|
+
@_hash['installments'] = 'installments'
|
|
569
|
+
@_hash['line_items'] = 'lineItems'
|
|
570
|
+
@_hash['localized_shopper_statement'] = 'localizedShopperStatement'
|
|
571
|
+
@_hash['mandate'] = 'mandate'
|
|
572
|
+
@_hash['mcc'] = 'mcc'
|
|
573
|
+
@_hash['merchant_account'] = 'merchantAccount'
|
|
574
|
+
@_hash['merchant_order_reference'] = 'merchantOrderReference'
|
|
575
|
+
@_hash['merchant_risk_indicator'] = 'merchantRiskIndicator'
|
|
576
|
+
@_hash['metadata'] = 'metadata'
|
|
577
|
+
@_hash['mpi_data'] = 'mpiData'
|
|
578
|
+
@_hash['order'] = 'order'
|
|
579
|
+
@_hash['order_reference'] = 'orderReference'
|
|
580
|
+
@_hash['origin'] = 'origin'
|
|
581
|
+
@_hash['payment_method'] = 'paymentMethod'
|
|
582
|
+
@_hash['payment_validations'] = 'paymentValidations'
|
|
583
|
+
@_hash['platform_chargeback_logic'] = 'platformChargebackLogic'
|
|
584
|
+
@_hash['recurring_expiry'] = 'recurringExpiry'
|
|
585
|
+
@_hash['recurring_frequency'] = 'recurringFrequency'
|
|
586
|
+
@_hash['recurring_processing_model'] = 'recurringProcessingModel'
|
|
587
|
+
@_hash['redirect_from_issuer_method'] = 'redirectFromIssuerMethod'
|
|
588
|
+
@_hash['redirect_to_issuer_method'] = 'redirectToIssuerMethod'
|
|
589
|
+
@_hash['reference'] = 'reference'
|
|
590
|
+
@_hash['return_url'] = 'returnUrl'
|
|
591
|
+
@_hash['risk_data'] = 'riskData'
|
|
592
|
+
@_hash['session_validity'] = 'sessionValidity'
|
|
593
|
+
@_hash['shopper_conversion_id'] = 'shopperConversionId'
|
|
594
|
+
@_hash['shopper_email'] = 'shopperEmail'
|
|
595
|
+
@_hash['shopper_ip'] = 'shopperIP'
|
|
596
|
+
@_hash['shopper_interaction'] = 'shopperInteraction'
|
|
597
|
+
@_hash['shopper_locale'] = 'shopperLocale'
|
|
598
|
+
@_hash['shopper_name'] = 'shopperName'
|
|
599
|
+
@_hash['shopper_reference'] = 'shopperReference'
|
|
600
|
+
@_hash['shopper_statement'] = 'shopperStatement'
|
|
601
|
+
@_hash['shopper_tax_info'] = 'shopperTaxInfo'
|
|
602
|
+
@_hash['social_security_number'] = 'socialSecurityNumber'
|
|
603
|
+
@_hash['splits'] = 'splits'
|
|
604
|
+
@_hash['store'] = 'store'
|
|
605
|
+
@_hash['store_payment_method'] = 'storePaymentMethod'
|
|
606
|
+
@_hash['sub_merchants'] = 'subMerchants'
|
|
607
|
+
@_hash['surcharge'] = 'surcharge'
|
|
608
|
+
@_hash['telephone_number'] = 'telephoneNumber'
|
|
609
|
+
@_hash['three_ds2_request_data'] = 'threeDS2RequestData'
|
|
610
|
+
@_hash['three_ds_authentication_only'] = 'threeDSAuthenticationOnly'
|
|
611
|
+
@_hash['trusted_shopper'] = 'trustedShopper'
|
|
612
|
+
@_hash
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
# An array for optional fields
|
|
616
|
+
def self.optionals
|
|
617
|
+
%w[
|
|
618
|
+
account_info
|
|
619
|
+
additional_amount
|
|
620
|
+
additional_data
|
|
621
|
+
application_info
|
|
622
|
+
authentication_data
|
|
623
|
+
bank_account
|
|
624
|
+
billing_address
|
|
625
|
+
browser_info
|
|
626
|
+
capture_delay_hours
|
|
627
|
+
channel
|
|
628
|
+
checkout_attempt_id
|
|
629
|
+
company
|
|
630
|
+
conversion_id
|
|
631
|
+
country_code
|
|
632
|
+
date_of_birth
|
|
633
|
+
dcc_quote
|
|
634
|
+
deliver_at
|
|
635
|
+
delivery_address
|
|
636
|
+
delivery_date
|
|
637
|
+
device_fingerprint
|
|
638
|
+
enable_one_click
|
|
639
|
+
enable_pay_out
|
|
640
|
+
enable_recurring
|
|
641
|
+
enhanced_scheme_data
|
|
642
|
+
entity_type
|
|
643
|
+
fraud_offset
|
|
644
|
+
fund_origin
|
|
645
|
+
fund_recipient
|
|
646
|
+
industry_usage
|
|
647
|
+
installments
|
|
648
|
+
line_items
|
|
649
|
+
localized_shopper_statement
|
|
650
|
+
mandate
|
|
651
|
+
mcc
|
|
652
|
+
merchant_order_reference
|
|
653
|
+
merchant_risk_indicator
|
|
654
|
+
metadata
|
|
655
|
+
mpi_data
|
|
656
|
+
order
|
|
657
|
+
order_reference
|
|
658
|
+
origin
|
|
659
|
+
payment_validations
|
|
660
|
+
platform_chargeback_logic
|
|
661
|
+
recurring_expiry
|
|
662
|
+
recurring_frequency
|
|
663
|
+
recurring_processing_model
|
|
664
|
+
redirect_from_issuer_method
|
|
665
|
+
redirect_to_issuer_method
|
|
666
|
+
risk_data
|
|
667
|
+
session_validity
|
|
668
|
+
shopper_conversion_id
|
|
669
|
+
shopper_email
|
|
670
|
+
shopper_ip
|
|
671
|
+
shopper_interaction
|
|
672
|
+
shopper_locale
|
|
673
|
+
shopper_name
|
|
674
|
+
shopper_reference
|
|
675
|
+
shopper_statement
|
|
676
|
+
shopper_tax_info
|
|
677
|
+
social_security_number
|
|
678
|
+
splits
|
|
679
|
+
store
|
|
680
|
+
store_payment_method
|
|
681
|
+
sub_merchants
|
|
682
|
+
surcharge
|
|
683
|
+
telephone_number
|
|
684
|
+
three_ds2_request_data
|
|
685
|
+
three_ds_authentication_only
|
|
686
|
+
trusted_shopper
|
|
687
|
+
]
|
|
688
|
+
end
|
|
689
|
+
|
|
690
|
+
# An array for nullable fields
|
|
691
|
+
def self.nullables
|
|
692
|
+
[]
|
|
693
|
+
end
|
|
694
|
+
|
|
695
|
+
def initialize(amount:, merchant_account:, payment_method:, reference:,
|
|
696
|
+
return_url:, account_info: SKIP, additional_amount: SKIP,
|
|
697
|
+
additional_data: SKIP, application_info: SKIP,
|
|
698
|
+
authentication_data: SKIP, bank_account: SKIP,
|
|
699
|
+
billing_address: SKIP, browser_info: SKIP,
|
|
700
|
+
capture_delay_hours: SKIP, channel: SKIP,
|
|
701
|
+
checkout_attempt_id: SKIP, company: SKIP,
|
|
702
|
+
conversion_id: SKIP, country_code: SKIP, date_of_birth: SKIP,
|
|
703
|
+
dcc_quote: SKIP, deliver_at: SKIP, delivery_address: SKIP,
|
|
704
|
+
delivery_date: SKIP, device_fingerprint: SKIP,
|
|
705
|
+
enable_one_click: SKIP, enable_pay_out: SKIP,
|
|
706
|
+
enable_recurring: SKIP, enhanced_scheme_data: SKIP,
|
|
707
|
+
entity_type: SKIP, fraud_offset: SKIP, fund_origin: SKIP,
|
|
708
|
+
fund_recipient: SKIP, industry_usage: SKIP,
|
|
709
|
+
installments: SKIP, line_items: SKIP,
|
|
710
|
+
localized_shopper_statement: SKIP, mandate: SKIP, mcc: SKIP,
|
|
711
|
+
merchant_order_reference: SKIP,
|
|
712
|
+
merchant_risk_indicator: SKIP, metadata: SKIP,
|
|
713
|
+
mpi_data: SKIP, order: SKIP, order_reference: SKIP,
|
|
714
|
+
origin: SKIP, payment_validations: SKIP,
|
|
715
|
+
platform_chargeback_logic: SKIP, recurring_expiry: SKIP,
|
|
716
|
+
recurring_frequency: SKIP, recurring_processing_model: SKIP,
|
|
717
|
+
redirect_from_issuer_method: SKIP,
|
|
718
|
+
redirect_to_issuer_method: SKIP, risk_data: SKIP,
|
|
719
|
+
session_validity: SKIP, shopper_conversion_id: SKIP,
|
|
720
|
+
shopper_email: SKIP, shopper_ip: SKIP,
|
|
721
|
+
shopper_interaction: SKIP, shopper_locale: SKIP,
|
|
722
|
+
shopper_name: SKIP, shopper_reference: SKIP,
|
|
723
|
+
shopper_statement: SKIP, shopper_tax_info: SKIP,
|
|
724
|
+
social_security_number: SKIP, splits: SKIP, store: SKIP,
|
|
725
|
+
store_payment_method: SKIP, sub_merchants: SKIP,
|
|
726
|
+
surcharge: SKIP, telephone_number: SKIP,
|
|
727
|
+
three_ds2_request_data: SKIP,
|
|
728
|
+
three_ds_authentication_only: false, trusted_shopper: SKIP)
|
|
729
|
+
@account_info = account_info unless account_info == SKIP
|
|
730
|
+
@additional_amount = additional_amount unless additional_amount == SKIP
|
|
731
|
+
@additional_data = additional_data unless additional_data == SKIP
|
|
732
|
+
@amount = amount
|
|
733
|
+
@application_info = application_info unless application_info == SKIP
|
|
734
|
+
@authentication_data = authentication_data unless authentication_data == SKIP
|
|
735
|
+
@bank_account = bank_account unless bank_account == SKIP
|
|
736
|
+
@billing_address = billing_address unless billing_address == SKIP
|
|
737
|
+
@browser_info = browser_info unless browser_info == SKIP
|
|
738
|
+
@capture_delay_hours = capture_delay_hours unless capture_delay_hours == SKIP
|
|
739
|
+
@channel = channel unless channel == SKIP
|
|
740
|
+
@checkout_attempt_id = checkout_attempt_id unless checkout_attempt_id == SKIP
|
|
741
|
+
@company = company unless company == SKIP
|
|
742
|
+
@conversion_id = conversion_id unless conversion_id == SKIP
|
|
743
|
+
@country_code = country_code unless country_code == SKIP
|
|
744
|
+
@date_of_birth = date_of_birth unless date_of_birth == SKIP
|
|
745
|
+
@dcc_quote = dcc_quote unless dcc_quote == SKIP
|
|
746
|
+
@deliver_at = deliver_at unless deliver_at == SKIP
|
|
747
|
+
@delivery_address = delivery_address unless delivery_address == SKIP
|
|
748
|
+
@delivery_date = delivery_date unless delivery_date == SKIP
|
|
749
|
+
@device_fingerprint = device_fingerprint unless device_fingerprint == SKIP
|
|
750
|
+
@enable_one_click = enable_one_click unless enable_one_click == SKIP
|
|
751
|
+
@enable_pay_out = enable_pay_out unless enable_pay_out == SKIP
|
|
752
|
+
@enable_recurring = enable_recurring unless enable_recurring == SKIP
|
|
753
|
+
@enhanced_scheme_data = enhanced_scheme_data unless enhanced_scheme_data == SKIP
|
|
754
|
+
@entity_type = entity_type unless entity_type == SKIP
|
|
755
|
+
@fraud_offset = fraud_offset unless fraud_offset == SKIP
|
|
756
|
+
@fund_origin = fund_origin unless fund_origin == SKIP
|
|
757
|
+
@fund_recipient = fund_recipient unless fund_recipient == SKIP
|
|
758
|
+
@industry_usage = industry_usage unless industry_usage == SKIP
|
|
759
|
+
@installments = installments unless installments == SKIP
|
|
760
|
+
@line_items = line_items unless line_items == SKIP
|
|
761
|
+
unless localized_shopper_statement == SKIP
|
|
762
|
+
@localized_shopper_statement =
|
|
763
|
+
localized_shopper_statement
|
|
764
|
+
end
|
|
765
|
+
@mandate = mandate unless mandate == SKIP
|
|
766
|
+
@mcc = mcc unless mcc == SKIP
|
|
767
|
+
@merchant_account = merchant_account
|
|
768
|
+
@merchant_order_reference = merchant_order_reference unless merchant_order_reference == SKIP
|
|
769
|
+
@merchant_risk_indicator = merchant_risk_indicator unless merchant_risk_indicator == SKIP
|
|
770
|
+
@metadata = metadata unless metadata == SKIP
|
|
771
|
+
@mpi_data = mpi_data unless mpi_data == SKIP
|
|
772
|
+
@order = order unless order == SKIP
|
|
773
|
+
@order_reference = order_reference unless order_reference == SKIP
|
|
774
|
+
@origin = origin unless origin == SKIP
|
|
775
|
+
@payment_method = payment_method
|
|
776
|
+
@payment_validations = payment_validations unless payment_validations == SKIP
|
|
777
|
+
unless platform_chargeback_logic == SKIP
|
|
778
|
+
@platform_chargeback_logic =
|
|
779
|
+
platform_chargeback_logic
|
|
780
|
+
end
|
|
781
|
+
@recurring_expiry = recurring_expiry unless recurring_expiry == SKIP
|
|
782
|
+
@recurring_frequency = recurring_frequency unless recurring_frequency == SKIP
|
|
783
|
+
unless recurring_processing_model == SKIP
|
|
784
|
+
@recurring_processing_model =
|
|
785
|
+
recurring_processing_model
|
|
786
|
+
end
|
|
787
|
+
unless redirect_from_issuer_method == SKIP
|
|
788
|
+
@redirect_from_issuer_method =
|
|
789
|
+
redirect_from_issuer_method
|
|
790
|
+
end
|
|
791
|
+
unless redirect_to_issuer_method == SKIP
|
|
792
|
+
@redirect_to_issuer_method =
|
|
793
|
+
redirect_to_issuer_method
|
|
794
|
+
end
|
|
795
|
+
@reference = reference
|
|
796
|
+
@return_url = return_url
|
|
797
|
+
@risk_data = risk_data unless risk_data == SKIP
|
|
798
|
+
@session_validity = session_validity unless session_validity == SKIP
|
|
799
|
+
@shopper_conversion_id = shopper_conversion_id unless shopper_conversion_id == SKIP
|
|
800
|
+
@shopper_email = shopper_email unless shopper_email == SKIP
|
|
801
|
+
@shopper_ip = shopper_ip unless shopper_ip == SKIP
|
|
802
|
+
@shopper_interaction = shopper_interaction unless shopper_interaction == SKIP
|
|
803
|
+
@shopper_locale = shopper_locale unless shopper_locale == SKIP
|
|
804
|
+
@shopper_name = shopper_name unless shopper_name == SKIP
|
|
805
|
+
@shopper_reference = shopper_reference unless shopper_reference == SKIP
|
|
806
|
+
@shopper_statement = shopper_statement unless shopper_statement == SKIP
|
|
807
|
+
@shopper_tax_info = shopper_tax_info unless shopper_tax_info == SKIP
|
|
808
|
+
@social_security_number = social_security_number unless social_security_number == SKIP
|
|
809
|
+
@splits = splits unless splits == SKIP
|
|
810
|
+
@store = store unless store == SKIP
|
|
811
|
+
@store_payment_method = store_payment_method unless store_payment_method == SKIP
|
|
812
|
+
@sub_merchants = sub_merchants unless sub_merchants == SKIP
|
|
813
|
+
@surcharge = surcharge unless surcharge == SKIP
|
|
814
|
+
@telephone_number = telephone_number unless telephone_number == SKIP
|
|
815
|
+
@three_ds2_request_data = three_ds2_request_data unless three_ds2_request_data == SKIP
|
|
816
|
+
unless three_ds_authentication_only == SKIP
|
|
817
|
+
@three_ds_authentication_only =
|
|
818
|
+
three_ds_authentication_only
|
|
819
|
+
end
|
|
820
|
+
@trusted_shopper = trusted_shopper unless trusted_shopper == SKIP
|
|
821
|
+
end
|
|
822
|
+
|
|
823
|
+
# Creates an instance of the object from a hash.
|
|
824
|
+
def self.from_hash(hash)
|
|
825
|
+
return nil unless hash
|
|
826
|
+
|
|
827
|
+
# Extract variables from the hash.
|
|
828
|
+
amount = Amount2.from_hash(hash['amount']) if hash['amount']
|
|
829
|
+
merchant_account =
|
|
830
|
+
hash.key?('merchantAccount') ? hash['merchantAccount'] : nil
|
|
831
|
+
payment_method = hash.key?('paymentMethod') ? APIHelper.deserialize_union_type(
|
|
832
|
+
UnionTypeLookUp.get(:PaymentRequestPaymentMethod), hash['paymentMethod']
|
|
833
|
+
) : nil
|
|
834
|
+
reference = hash.key?('reference') ? hash['reference'] : nil
|
|
835
|
+
return_url = hash.key?('returnUrl') ? hash['returnUrl'] : nil
|
|
836
|
+
account_info = AccountInfo1.from_hash(hash['accountInfo']) if hash['accountInfo']
|
|
837
|
+
additional_amount = Amount1.from_hash(hash['additionalAmount']) if hash['additionalAmount']
|
|
838
|
+
additional_data =
|
|
839
|
+
hash.key?('additionalData') ? hash['additionalData'] : SKIP
|
|
840
|
+
application_info = ApplicationInfo1.from_hash(hash['applicationInfo']) if
|
|
841
|
+
hash['applicationInfo']
|
|
842
|
+
authentication_data = AuthenticationData3.from_hash(hash['authenticationData']) if
|
|
843
|
+
hash['authenticationData']
|
|
844
|
+
bank_account = CheckoutBankAccount1.from_hash(hash['bankAccount']) if hash['bankAccount']
|
|
845
|
+
billing_address = BillingAddress3.from_hash(hash['billingAddress']) if
|
|
846
|
+
hash['billingAddress']
|
|
847
|
+
browser_info = BrowserInfo2.from_hash(hash['browserInfo']) if hash['browserInfo']
|
|
848
|
+
capture_delay_hours =
|
|
849
|
+
hash.key?('captureDelayHours') ? hash['captureDelayHours'] : SKIP
|
|
850
|
+
channel = hash.key?('channel') ? hash['channel'] : SKIP
|
|
851
|
+
checkout_attempt_id =
|
|
852
|
+
hash.key?('checkoutAttemptId') ? hash['checkoutAttemptId'] : SKIP
|
|
853
|
+
company = Company1.from_hash(hash['company']) if hash['company']
|
|
854
|
+
conversion_id = hash.key?('conversionId') ? hash['conversionId'] : SKIP
|
|
855
|
+
country_code = hash.key?('countryCode') ? hash['countryCode'] : SKIP
|
|
856
|
+
date_of_birth = if hash.key?('dateOfBirth')
|
|
857
|
+
(DateTimeHelper.from_rfc3339(hash['dateOfBirth']) if hash['dateOfBirth'])
|
|
858
|
+
else
|
|
859
|
+
SKIP
|
|
860
|
+
end
|
|
861
|
+
dcc_quote = ForexQuote2.from_hash(hash['dccQuote']) if hash['dccQuote']
|
|
862
|
+
deliver_at = if hash.key?('deliverAt')
|
|
863
|
+
(DateTimeHelper.from_rfc3339(hash['deliverAt']) if hash['deliverAt'])
|
|
864
|
+
else
|
|
865
|
+
SKIP
|
|
866
|
+
end
|
|
867
|
+
delivery_address = DeliveryAddress1.from_hash(hash['deliveryAddress']) if
|
|
868
|
+
hash['deliveryAddress']
|
|
869
|
+
delivery_date = if hash.key?('deliveryDate')
|
|
870
|
+
(DateTimeHelper.from_rfc3339(hash['deliveryDate']) if hash['deliveryDate'])
|
|
871
|
+
else
|
|
872
|
+
SKIP
|
|
873
|
+
end
|
|
874
|
+
device_fingerprint =
|
|
875
|
+
hash.key?('deviceFingerprint') ? hash['deviceFingerprint'] : SKIP
|
|
876
|
+
enable_one_click =
|
|
877
|
+
hash.key?('enableOneClick') ? hash['enableOneClick'] : SKIP
|
|
878
|
+
enable_pay_out = hash.key?('enablePayOut') ? hash['enablePayOut'] : SKIP
|
|
879
|
+
enable_recurring =
|
|
880
|
+
hash.key?('enableRecurring') ? hash['enableRecurring'] : SKIP
|
|
881
|
+
enhanced_scheme_data = EnhancedSchemeData5.from_hash(hash['enhancedSchemeData']) if
|
|
882
|
+
hash['enhancedSchemeData']
|
|
883
|
+
entity_type = hash.key?('entityType') ? hash['entityType'] : SKIP
|
|
884
|
+
fraud_offset = hash.key?('fraudOffset') ? hash['fraudOffset'] : SKIP
|
|
885
|
+
fund_origin = FundOrigin1.from_hash(hash['fundOrigin']) if hash['fundOrigin']
|
|
886
|
+
fund_recipient = FundRecipient1.from_hash(hash['fundRecipient']) if hash['fundRecipient']
|
|
887
|
+
industry_usage = hash.key?('industryUsage') ? hash['industryUsage'] : SKIP
|
|
888
|
+
installments = Installments2.from_hash(hash['installments']) if hash['installments']
|
|
889
|
+
# Parameter is an array, so we need to iterate through it
|
|
890
|
+
line_items = nil
|
|
891
|
+
unless hash['lineItems'].nil?
|
|
892
|
+
line_items = []
|
|
893
|
+
hash['lineItems'].each do |structure|
|
|
894
|
+
line_items << (LineItem.from_hash(structure) if structure)
|
|
895
|
+
end
|
|
896
|
+
end
|
|
897
|
+
|
|
898
|
+
line_items = SKIP unless hash.key?('lineItems')
|
|
899
|
+
localized_shopper_statement =
|
|
900
|
+
hash.key?('localizedShopperStatement') ? hash['localizedShopperStatement'] : SKIP
|
|
901
|
+
mandate = Mandate1.from_hash(hash['mandate']) if hash['mandate']
|
|
902
|
+
mcc = hash.key?('mcc') ? hash['mcc'] : SKIP
|
|
903
|
+
merchant_order_reference =
|
|
904
|
+
hash.key?('merchantOrderReference') ? hash['merchantOrderReference'] : SKIP
|
|
905
|
+
merchant_risk_indicator = MerchantRiskIndicator1.from_hash(hash['merchantRiskIndicator']) if
|
|
906
|
+
hash['merchantRiskIndicator']
|
|
907
|
+
metadata = hash.key?('metadata') ? hash['metadata'] : SKIP
|
|
908
|
+
mpi_data = ThreeDSecureData1.from_hash(hash['mpiData']) if hash['mpiData']
|
|
909
|
+
order = EncryptedOrderData2.from_hash(hash['order']) if hash['order']
|
|
910
|
+
order_reference =
|
|
911
|
+
hash.key?('orderReference') ? hash['orderReference'] : SKIP
|
|
912
|
+
origin = hash.key?('origin') ? hash['origin'] : SKIP
|
|
913
|
+
payment_validations = PaymentValidations2.from_hash(hash['paymentValidations']) if
|
|
914
|
+
hash['paymentValidations']
|
|
915
|
+
if hash['platformChargebackLogic']
|
|
916
|
+
platform_chargeback_logic = PlatformChargebackLogic1.from_hash(hash['platformChargebackLogic'])
|
|
917
|
+
end
|
|
918
|
+
recurring_expiry =
|
|
919
|
+
hash.key?('recurringExpiry') ? hash['recurringExpiry'] : SKIP
|
|
920
|
+
recurring_frequency =
|
|
921
|
+
hash.key?('recurringFrequency') ? hash['recurringFrequency'] : SKIP
|
|
922
|
+
recurring_processing_model =
|
|
923
|
+
hash.key?('recurringProcessingModel') ? hash['recurringProcessingModel'] : SKIP
|
|
924
|
+
redirect_from_issuer_method =
|
|
925
|
+
hash.key?('redirectFromIssuerMethod') ? hash['redirectFromIssuerMethod'] : SKIP
|
|
926
|
+
redirect_to_issuer_method =
|
|
927
|
+
hash.key?('redirectToIssuerMethod') ? hash['redirectToIssuerMethod'] : SKIP
|
|
928
|
+
risk_data = RiskData4.from_hash(hash['riskData']) if hash['riskData']
|
|
929
|
+
session_validity =
|
|
930
|
+
hash.key?('sessionValidity') ? hash['sessionValidity'] : SKIP
|
|
931
|
+
shopper_conversion_id =
|
|
932
|
+
hash.key?('shopperConversionId') ? hash['shopperConversionId'] : SKIP
|
|
933
|
+
shopper_email = hash.key?('shopperEmail') ? hash['shopperEmail'] : SKIP
|
|
934
|
+
shopper_ip = hash.key?('shopperIP') ? hash['shopperIP'] : SKIP
|
|
935
|
+
shopper_interaction =
|
|
936
|
+
hash.key?('shopperInteraction') ? hash['shopperInteraction'] : SKIP
|
|
937
|
+
shopper_locale = hash.key?('shopperLocale') ? hash['shopperLocale'] : SKIP
|
|
938
|
+
shopper_name = ShopperName2.from_hash(hash['shopperName']) if hash['shopperName']
|
|
939
|
+
shopper_reference =
|
|
940
|
+
hash.key?('shopperReference') ? hash['shopperReference'] : SKIP
|
|
941
|
+
shopper_statement =
|
|
942
|
+
hash.key?('shopperStatement') ? hash['shopperStatement'] : SKIP
|
|
943
|
+
shopper_tax_info = ShopperTaxInfo2.from_hash(hash['shopperTaxInfo']) if
|
|
944
|
+
hash['shopperTaxInfo']
|
|
945
|
+
social_security_number =
|
|
946
|
+
hash.key?('socialSecurityNumber') ? hash['socialSecurityNumber'] : SKIP
|
|
947
|
+
# Parameter is an array, so we need to iterate through it
|
|
948
|
+
splits = nil
|
|
949
|
+
unless hash['splits'].nil?
|
|
950
|
+
splits = []
|
|
951
|
+
hash['splits'].each do |structure|
|
|
952
|
+
splits << (Split.from_hash(structure) if structure)
|
|
953
|
+
end
|
|
954
|
+
end
|
|
955
|
+
|
|
956
|
+
splits = SKIP unless hash.key?('splits')
|
|
957
|
+
store = hash.key?('store') ? hash['store'] : SKIP
|
|
958
|
+
store_payment_method =
|
|
959
|
+
hash.key?('storePaymentMethod') ? hash['storePaymentMethod'] : SKIP
|
|
960
|
+
# Parameter is an array, so we need to iterate through it
|
|
961
|
+
sub_merchants = nil
|
|
962
|
+
unless hash['subMerchants'].nil?
|
|
963
|
+
sub_merchants = []
|
|
964
|
+
hash['subMerchants'].each do |structure|
|
|
965
|
+
sub_merchants << (SubMerchantInfo.from_hash(structure) if structure)
|
|
966
|
+
end
|
|
967
|
+
end
|
|
968
|
+
|
|
969
|
+
sub_merchants = SKIP unless hash.key?('subMerchants')
|
|
970
|
+
surcharge = Surcharge2.from_hash(hash['surcharge']) if hash['surcharge']
|
|
971
|
+
telephone_number =
|
|
972
|
+
hash.key?('telephoneNumber') ? hash['telephoneNumber'] : SKIP
|
|
973
|
+
three_ds2_request_data = ThreeDs2RequestFields1.from_hash(hash['threeDS2RequestData']) if
|
|
974
|
+
hash['threeDS2RequestData']
|
|
975
|
+
three_ds_authentication_only = hash['threeDSAuthenticationOnly'] ||= false
|
|
976
|
+
trusted_shopper =
|
|
977
|
+
hash.key?('trustedShopper') ? hash['trustedShopper'] : SKIP
|
|
978
|
+
|
|
979
|
+
# Create object from extracted values.
|
|
980
|
+
PaymentRequest.new(amount: amount,
|
|
981
|
+
merchant_account: merchant_account,
|
|
982
|
+
payment_method: payment_method,
|
|
983
|
+
reference: reference,
|
|
984
|
+
return_url: return_url,
|
|
985
|
+
account_info: account_info,
|
|
986
|
+
additional_amount: additional_amount,
|
|
987
|
+
additional_data: additional_data,
|
|
988
|
+
application_info: application_info,
|
|
989
|
+
authentication_data: authentication_data,
|
|
990
|
+
bank_account: bank_account,
|
|
991
|
+
billing_address: billing_address,
|
|
992
|
+
browser_info: browser_info,
|
|
993
|
+
capture_delay_hours: capture_delay_hours,
|
|
994
|
+
channel: channel,
|
|
995
|
+
checkout_attempt_id: checkout_attempt_id,
|
|
996
|
+
company: company,
|
|
997
|
+
conversion_id: conversion_id,
|
|
998
|
+
country_code: country_code,
|
|
999
|
+
date_of_birth: date_of_birth,
|
|
1000
|
+
dcc_quote: dcc_quote,
|
|
1001
|
+
deliver_at: deliver_at,
|
|
1002
|
+
delivery_address: delivery_address,
|
|
1003
|
+
delivery_date: delivery_date,
|
|
1004
|
+
device_fingerprint: device_fingerprint,
|
|
1005
|
+
enable_one_click: enable_one_click,
|
|
1006
|
+
enable_pay_out: enable_pay_out,
|
|
1007
|
+
enable_recurring: enable_recurring,
|
|
1008
|
+
enhanced_scheme_data: enhanced_scheme_data,
|
|
1009
|
+
entity_type: entity_type,
|
|
1010
|
+
fraud_offset: fraud_offset,
|
|
1011
|
+
fund_origin: fund_origin,
|
|
1012
|
+
fund_recipient: fund_recipient,
|
|
1013
|
+
industry_usage: industry_usage,
|
|
1014
|
+
installments: installments,
|
|
1015
|
+
line_items: line_items,
|
|
1016
|
+
localized_shopper_statement: localized_shopper_statement,
|
|
1017
|
+
mandate: mandate,
|
|
1018
|
+
mcc: mcc,
|
|
1019
|
+
merchant_order_reference: merchant_order_reference,
|
|
1020
|
+
merchant_risk_indicator: merchant_risk_indicator,
|
|
1021
|
+
metadata: metadata,
|
|
1022
|
+
mpi_data: mpi_data,
|
|
1023
|
+
order: order,
|
|
1024
|
+
order_reference: order_reference,
|
|
1025
|
+
origin: origin,
|
|
1026
|
+
payment_validations: payment_validations,
|
|
1027
|
+
platform_chargeback_logic: platform_chargeback_logic,
|
|
1028
|
+
recurring_expiry: recurring_expiry,
|
|
1029
|
+
recurring_frequency: recurring_frequency,
|
|
1030
|
+
recurring_processing_model: recurring_processing_model,
|
|
1031
|
+
redirect_from_issuer_method: redirect_from_issuer_method,
|
|
1032
|
+
redirect_to_issuer_method: redirect_to_issuer_method,
|
|
1033
|
+
risk_data: risk_data,
|
|
1034
|
+
session_validity: session_validity,
|
|
1035
|
+
shopper_conversion_id: shopper_conversion_id,
|
|
1036
|
+
shopper_email: shopper_email,
|
|
1037
|
+
shopper_ip: shopper_ip,
|
|
1038
|
+
shopper_interaction: shopper_interaction,
|
|
1039
|
+
shopper_locale: shopper_locale,
|
|
1040
|
+
shopper_name: shopper_name,
|
|
1041
|
+
shopper_reference: shopper_reference,
|
|
1042
|
+
shopper_statement: shopper_statement,
|
|
1043
|
+
shopper_tax_info: shopper_tax_info,
|
|
1044
|
+
social_security_number: social_security_number,
|
|
1045
|
+
splits: splits,
|
|
1046
|
+
store: store,
|
|
1047
|
+
store_payment_method: store_payment_method,
|
|
1048
|
+
sub_merchants: sub_merchants,
|
|
1049
|
+
surcharge: surcharge,
|
|
1050
|
+
telephone_number: telephone_number,
|
|
1051
|
+
three_ds2_request_data: three_ds2_request_data,
|
|
1052
|
+
three_ds_authentication_only: three_ds_authentication_only,
|
|
1053
|
+
trusted_shopper: trusted_shopper)
|
|
1054
|
+
end
|
|
1055
|
+
|
|
1056
|
+
def to_custom_date_of_birth
|
|
1057
|
+
DateTimeHelper.to_rfc3339(date_of_birth)
|
|
1058
|
+
end
|
|
1059
|
+
|
|
1060
|
+
def to_custom_deliver_at
|
|
1061
|
+
DateTimeHelper.to_rfc3339(deliver_at)
|
|
1062
|
+
end
|
|
1063
|
+
|
|
1064
|
+
def to_custom_delivery_date
|
|
1065
|
+
DateTimeHelper.to_rfc3339(delivery_date)
|
|
1066
|
+
end
|
|
1067
|
+
|
|
1068
|
+
# Validates an instance of the object from a given value.
|
|
1069
|
+
# @param [PaymentRequest | Hash] The value against the validation is performed.
|
|
1070
|
+
def self.validate(value)
|
|
1071
|
+
if value.instance_of? self
|
|
1072
|
+
return (
|
|
1073
|
+
APIHelper.valid_type?(value.amount,
|
|
1074
|
+
->(val) { Amount2.validate(val) },
|
|
1075
|
+
is_model_hash: true) and
|
|
1076
|
+
APIHelper.valid_type?(value.merchant_account,
|
|
1077
|
+
->(val) { val.instance_of? String }) and
|
|
1078
|
+
UnionTypeLookUp.get(:PaymentRequestPaymentMethod)
|
|
1079
|
+
.validate(value.payment_method) and
|
|
1080
|
+
APIHelper.valid_type?(value.reference,
|
|
1081
|
+
->(val) { val.instance_of? String }) and
|
|
1082
|
+
APIHelper.valid_type?(value.return_url,
|
|
1083
|
+
->(val) { val.instance_of? String })
|
|
1084
|
+
)
|
|
1085
|
+
end
|
|
1086
|
+
|
|
1087
|
+
return false unless value.instance_of? Hash
|
|
1088
|
+
|
|
1089
|
+
(
|
|
1090
|
+
APIHelper.valid_type?(value['amount'],
|
|
1091
|
+
->(val) { Amount2.validate(val) },
|
|
1092
|
+
is_model_hash: true) and
|
|
1093
|
+
APIHelper.valid_type?(value['merchantAccount'],
|
|
1094
|
+
->(val) { val.instance_of? String }) and
|
|
1095
|
+
UnionTypeLookUp.get(:PaymentRequestPaymentMethod)
|
|
1096
|
+
.validate(value['paymentMethod']) and
|
|
1097
|
+
APIHelper.valid_type?(value['reference'],
|
|
1098
|
+
->(val) { val.instance_of? String }) and
|
|
1099
|
+
APIHelper.valid_type?(value['returnUrl'],
|
|
1100
|
+
->(val) { val.instance_of? String })
|
|
1101
|
+
)
|
|
1102
|
+
end
|
|
1103
|
+
|
|
1104
|
+
# Provides a human-readable string representation of the object.
|
|
1105
|
+
def to_s
|
|
1106
|
+
class_name = self.class.name.split('::').last
|
|
1107
|
+
"<#{class_name} account_info: #{@account_info}, additional_amount: #{@additional_amount},"\
|
|
1108
|
+
" additional_data: #{@additional_data}, amount: #{@amount}, application_info:"\
|
|
1109
|
+
" #{@application_info}, authentication_data: #{@authentication_data}, bank_account:"\
|
|
1110
|
+
" #{@bank_account}, billing_address: #{@billing_address}, browser_info: #{@browser_info},"\
|
|
1111
|
+
" capture_delay_hours: #{@capture_delay_hours}, channel: #{@channel}, checkout_attempt_id:"\
|
|
1112
|
+
" #{@checkout_attempt_id}, company: #{@company}, conversion_id: #{@conversion_id},"\
|
|
1113
|
+
" country_code: #{@country_code}, date_of_birth: #{@date_of_birth}, dcc_quote:"\
|
|
1114
|
+
" #{@dcc_quote}, deliver_at: #{@deliver_at}, delivery_address: #{@delivery_address},"\
|
|
1115
|
+
" delivery_date: #{@delivery_date}, device_fingerprint: #{@device_fingerprint},"\
|
|
1116
|
+
" enable_one_click: #{@enable_one_click}, enable_pay_out: #{@enable_pay_out},"\
|
|
1117
|
+
" enable_recurring: #{@enable_recurring}, enhanced_scheme_data: #{@enhanced_scheme_data},"\
|
|
1118
|
+
" entity_type: #{@entity_type}, fraud_offset: #{@fraud_offset}, fund_origin:"\
|
|
1119
|
+
" #{@fund_origin}, fund_recipient: #{@fund_recipient}, industry_usage: #{@industry_usage},"\
|
|
1120
|
+
" installments: #{@installments}, line_items: #{@line_items}, localized_shopper_statement:"\
|
|
1121
|
+
" #{@localized_shopper_statement}, mandate: #{@mandate}, mcc: #{@mcc}, merchant_account:"\
|
|
1122
|
+
" #{@merchant_account}, merchant_order_reference: #{@merchant_order_reference},"\
|
|
1123
|
+
" merchant_risk_indicator: #{@merchant_risk_indicator}, metadata: #{@metadata}, mpi_data:"\
|
|
1124
|
+
" #{@mpi_data}, order: #{@order}, order_reference: #{@order_reference}, origin: #{@origin},"\
|
|
1125
|
+
" payment_method: #{@payment_method}, payment_validations: #{@payment_validations},"\
|
|
1126
|
+
" platform_chargeback_logic: #{@platform_chargeback_logic}, recurring_expiry:"\
|
|
1127
|
+
" #{@recurring_expiry}, recurring_frequency: #{@recurring_frequency},"\
|
|
1128
|
+
" recurring_processing_model: #{@recurring_processing_model}, redirect_from_issuer_method:"\
|
|
1129
|
+
" #{@redirect_from_issuer_method}, redirect_to_issuer_method: #{@redirect_to_issuer_method},"\
|
|
1130
|
+
" reference: #{@reference}, return_url: #{@return_url}, risk_data: #{@risk_data},"\
|
|
1131
|
+
" session_validity: #{@session_validity}, shopper_conversion_id: #{@shopper_conversion_id},"\
|
|
1132
|
+
" shopper_email: #{@shopper_email}, shopper_ip: #{@shopper_ip}, shopper_interaction:"\
|
|
1133
|
+
" #{@shopper_interaction}, shopper_locale: #{@shopper_locale}, shopper_name:"\
|
|
1134
|
+
" #{@shopper_name}, shopper_reference: #{@shopper_reference}, shopper_statement:"\
|
|
1135
|
+
" #{@shopper_statement}, shopper_tax_info: #{@shopper_tax_info}, social_security_number:"\
|
|
1136
|
+
" #{@social_security_number}, splits: #{@splits}, store: #{@store}, store_payment_method:"\
|
|
1137
|
+
" #{@store_payment_method}, sub_merchants: #{@sub_merchants}, surcharge: #{@surcharge},"\
|
|
1138
|
+
" telephone_number: #{@telephone_number}, three_ds2_request_data:"\
|
|
1139
|
+
" #{@three_ds2_request_data}, three_ds_authentication_only:"\
|
|
1140
|
+
" #{@three_ds_authentication_only}, trusted_shopper: #{@trusted_shopper}>"
|
|
1141
|
+
end
|
|
1142
|
+
|
|
1143
|
+
# Provides a debugging-friendly string with detailed object information.
|
|
1144
|
+
def inspect
|
|
1145
|
+
class_name = self.class.name.split('::').last
|
|
1146
|
+
"<#{class_name} account_info: #{@account_info.inspect}, additional_amount:"\
|
|
1147
|
+
" #{@additional_amount.inspect}, additional_data: #{@additional_data.inspect}, amount:"\
|
|
1148
|
+
" #{@amount.inspect}, application_info: #{@application_info.inspect}, authentication_data:"\
|
|
1149
|
+
" #{@authentication_data.inspect}, bank_account: #{@bank_account.inspect}, billing_address:"\
|
|
1150
|
+
" #{@billing_address.inspect}, browser_info: #{@browser_info.inspect}, capture_delay_hours:"\
|
|
1151
|
+
" #{@capture_delay_hours.inspect}, channel: #{@channel.inspect}, checkout_attempt_id:"\
|
|
1152
|
+
" #{@checkout_attempt_id.inspect}, company: #{@company.inspect}, conversion_id:"\
|
|
1153
|
+
" #{@conversion_id.inspect}, country_code: #{@country_code.inspect}, date_of_birth:"\
|
|
1154
|
+
" #{@date_of_birth.inspect}, dcc_quote: #{@dcc_quote.inspect}, deliver_at:"\
|
|
1155
|
+
" #{@deliver_at.inspect}, delivery_address: #{@delivery_address.inspect}, delivery_date:"\
|
|
1156
|
+
" #{@delivery_date.inspect}, device_fingerprint: #{@device_fingerprint.inspect},"\
|
|
1157
|
+
" enable_one_click: #{@enable_one_click.inspect}, enable_pay_out:"\
|
|
1158
|
+
" #{@enable_pay_out.inspect}, enable_recurring: #{@enable_recurring.inspect},"\
|
|
1159
|
+
" enhanced_scheme_data: #{@enhanced_scheme_data.inspect}, entity_type:"\
|
|
1160
|
+
" #{@entity_type.inspect}, fraud_offset: #{@fraud_offset.inspect}, fund_origin:"\
|
|
1161
|
+
" #{@fund_origin.inspect}, fund_recipient: #{@fund_recipient.inspect}, industry_usage:"\
|
|
1162
|
+
" #{@industry_usage.inspect}, installments: #{@installments.inspect}, line_items:"\
|
|
1163
|
+
" #{@line_items.inspect}, localized_shopper_statement:"\
|
|
1164
|
+
" #{@localized_shopper_statement.inspect}, mandate: #{@mandate.inspect}, mcc:"\
|
|
1165
|
+
" #{@mcc.inspect}, merchant_account: #{@merchant_account.inspect}, merchant_order_reference:"\
|
|
1166
|
+
" #{@merchant_order_reference.inspect}, merchant_risk_indicator:"\
|
|
1167
|
+
" #{@merchant_risk_indicator.inspect}, metadata: #{@metadata.inspect}, mpi_data:"\
|
|
1168
|
+
" #{@mpi_data.inspect}, order: #{@order.inspect}, order_reference:"\
|
|
1169
|
+
" #{@order_reference.inspect}, origin: #{@origin.inspect}, payment_method:"\
|
|
1170
|
+
" #{@payment_method.inspect}, payment_validations: #{@payment_validations.inspect},"\
|
|
1171
|
+
" platform_chargeback_logic: #{@platform_chargeback_logic.inspect}, recurring_expiry:"\
|
|
1172
|
+
" #{@recurring_expiry.inspect}, recurring_frequency: #{@recurring_frequency.inspect},"\
|
|
1173
|
+
" recurring_processing_model: #{@recurring_processing_model.inspect},"\
|
|
1174
|
+
" redirect_from_issuer_method: #{@redirect_from_issuer_method.inspect},"\
|
|
1175
|
+
" redirect_to_issuer_method: #{@redirect_to_issuer_method.inspect}, reference:"\
|
|
1176
|
+
" #{@reference.inspect}, return_url: #{@return_url.inspect}, risk_data:"\
|
|
1177
|
+
" #{@risk_data.inspect}, session_validity: #{@session_validity.inspect},"\
|
|
1178
|
+
" shopper_conversion_id: #{@shopper_conversion_id.inspect}, shopper_email:"\
|
|
1179
|
+
" #{@shopper_email.inspect}, shopper_ip: #{@shopper_ip.inspect}, shopper_interaction:"\
|
|
1180
|
+
" #{@shopper_interaction.inspect}, shopper_locale: #{@shopper_locale.inspect}, shopper_name:"\
|
|
1181
|
+
" #{@shopper_name.inspect}, shopper_reference: #{@shopper_reference.inspect},"\
|
|
1182
|
+
" shopper_statement: #{@shopper_statement.inspect}, shopper_tax_info:"\
|
|
1183
|
+
" #{@shopper_tax_info.inspect}, social_security_number: #{@social_security_number.inspect},"\
|
|
1184
|
+
" splits: #{@splits.inspect}, store: #{@store.inspect}, store_payment_method:"\
|
|
1185
|
+
" #{@store_payment_method.inspect}, sub_merchants: #{@sub_merchants.inspect}, surcharge:"\
|
|
1186
|
+
" #{@surcharge.inspect}, telephone_number: #{@telephone_number.inspect},"\
|
|
1187
|
+
" three_ds2_request_data: #{@three_ds2_request_data.inspect}, three_ds_authentication_only:"\
|
|
1188
|
+
" #{@three_ds_authentication_only.inspect}, trusted_shopper: #{@trusted_shopper.inspect}>"
|
|
1189
|
+
end
|
|
1190
|
+
end
|
|
1191
|
+
end
|