fortis-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 +197 -0
- data/bin/console +15 -0
- data/lib/fortis_api/api_helper.rb +10 -0
- data/lib/fortis_api/client.rb +274 -0
- data/lib/fortis_api/configuration.rb +192 -0
- data/lib/fortis_api/controllers/apple_pay_validate_merchant_controller.rb +35 -0
- data/lib/fortis_api/controllers/async_processing_controller.rb +32 -0
- data/lib/fortis_api/controllers/base_controller.rb +60 -0
- data/lib/fortis_api/controllers/batches_controller.rb +103 -0
- data/lib/fortis_api/controllers/contacts_controller.rb +242 -0
- data/lib/fortis_api/controllers/declined_recurring_transactions_controller.rb +186 -0
- data/lib/fortis_api/controllers/device_terms_controller.rb +141 -0
- data/lib/fortis_api/controllers/elements_controller.rb +66 -0
- data/lib/fortis_api/controllers/full_boarding_controller.rb +38 -0
- data/lib/fortis_api/controllers/level3_data_controller.rb +119 -0
- data/lib/fortis_api/controllers/locations_controller.rb +301 -0
- data/lib/fortis_api/controllers/m3_ds_authentication_controller.rb +42 -0
- data/lib/fortis_api/controllers/m3_ds_transactions_controller.rb +36 -0
- data/lib/fortis_api/controllers/merchant_deposits_controller.rb +175 -0
- data/lib/fortis_api/controllers/merchant_details_controller.rb +35 -0
- data/lib/fortis_api/controllers/on_boarding_controller.rb +53 -0
- data/lib/fortis_api/controllers/paylinks_controller.rb +248 -0
- data/lib/fortis_api/controllers/payment_card_reader_token_controller.rb +30 -0
- data/lib/fortis_api/controllers/quick_invoices_controller.rb +325 -0
- data/lib/fortis_api/controllers/recurring_controller.rb +342 -0
- data/lib/fortis_api/controllers/signatures_controller.rb +149 -0
- data/lib/fortis_api/controllers/tags_controller.rb +200 -0
- data/lib/fortis_api/controllers/terminals_controller.rb +187 -0
- data/lib/fortis_api/controllers/tickets_controller.rb +150 -0
- data/lib/fortis_api/controllers/tokens_controller.rb +446 -0
- data/lib/fortis_api/controllers/transaction_ach_retries_controller.rb +150 -0
- data/lib/fortis_api/controllers/transactions_ach_controller.rb +253 -0
- data/lib/fortis_api/controllers/transactions_cash_controller.rb +61 -0
- data/lib/fortis_api/controllers/transactions_credit_card_controller.rb +1473 -0
- data/lib/fortis_api/controllers/transactions_ebt_card_controller.rb +77 -0
- data/lib/fortis_api/controllers/transactions_read_controller.rb +136 -0
- data/lib/fortis_api/controllers/transactions_updates_controller.rb +266 -0
- data/lib/fortis_api/controllers/user_verifications_controller.rb +103 -0
- data/lib/fortis_api/controllers/users_controller.rb +309 -0
- data/lib/fortis_api/controllers/webhooks_controller.rb +246 -0
- data/lib/fortis_api/exceptions/api_exception.rb +21 -0
- data/lib/fortis_api/exceptions/response401token_exception.rb +57 -0
- data/lib/fortis_api/exceptions/response412_exception.rb +74 -0
- data/lib/fortis_api/exceptions/response_error_exception.rb +74 -0
- data/lib/fortis_api/http/auth/access_token.rb +52 -0
- data/lib/fortis_api/http/auth/developer_id.rb +52 -0
- data/lib/fortis_api/http/auth/user_api_key.rb +52 -0
- data/lib/fortis_api/http/auth/user_id.rb +52 -0
- data/lib/fortis_api/http/http_call_back.rb +10 -0
- data/lib/fortis_api/http/http_method_enum.rb +10 -0
- data/lib/fortis_api/http/http_request.rb +10 -0
- data/lib/fortis_api/http/http_response.rb +10 -0
- data/lib/fortis_api/http/proxy_settings.rb +22 -0
- data/lib/fortis_api/models/account_info.rb +338 -0
- data/lib/fortis_api/models/account_type12_enum.rb +36 -0
- data/lib/fortis_api/models/account_type13_enum.rb +39 -0
- data/lib/fortis_api/models/account_type16_enum.rb +40 -0
- data/lib/fortis_api/models/account_type_enum.rb +64 -0
- data/lib/fortis_api/models/account_vault.rb +734 -0
- data/lib/fortis_api/models/account_vault_cau_log.rb +122 -0
- data/lib/fortis_api/models/account_vault_cau_product_transaction.rb +387 -0
- data/lib/fortis_api/models/ach_product_transaction.rb +1571 -0
- data/lib/fortis_api/models/ach_sec_code1_enum.rb +52 -0
- data/lib/fortis_api/models/ach_sec_code31_enum.rb +53 -0
- data/lib/fortis_api/models/ach_sec_code3_enum.rb +52 -0
- data/lib/fortis_api/models/ach_sec_code_enum.rb +44 -0
- data/lib/fortis_api/models/acs_challenge_mandated_enum.rb +38 -0
- data/lib/fortis_api/models/action_enum.rb +49 -0
- data/lib/fortis_api/models/active_notification_alert.rb +239 -0
- data/lib/fortis_api/models/active_recurring.rb +476 -0
- data/lib/fortis_api/models/additional_access.rb +74 -0
- data/lib/fortis_api/models/additional_amount.rb +119 -0
- data/lib/fortis_api/models/addon.rb +130 -0
- data/lib/fortis_api/models/address.rb +118 -0
- data/lib/fortis_api/models/address1.rb +129 -0
- data/lib/fortis_api/models/address2.rb +117 -0
- data/lib/fortis_api/models/address81.rb +133 -0
- data/lib/fortis_api/models/address_match_enum.rb +40 -0
- data/lib/fortis_api/models/address_type_enum.rb +40 -0
- data/lib/fortis_api/models/alert_type_enum.rb +58 -0
- data/lib/fortis_api/models/alert_type_id_enum.rb +58 -0
- data/lib/fortis_api/models/all_tag.rb +113 -0
- data/lib/fortis_api/models/alt_bank_account.rb +113 -0
- data/lib/fortis_api/models/amount_ind_enum.rb +122 -0
- data/lib/fortis_api/models/app_delivery_enum.rb +40 -0
- data/lib/fortis_api/models/async.rb +83 -0
- data/lib/fortis_api/models/auth_role.rb +140 -0
- data/lib/fortis_api/models/avs_enum.rb +48 -0
- data/lib/fortis_api/models/balance.rb +97 -0
- data/lib/fortis_api/models/bank_account.rb +101 -0
- data/lib/fortis_api/models/bank_account1.rb +129 -0
- data/lib/fortis_api/models/base_model.rb +122 -0
- data/lib/fortis_api/models/batch_risk_config.rb +90 -0
- data/lib/fortis_api/models/billing_address.rb +133 -0
- data/lib/fortis_api/models/billing_address1.rb +149 -0
- data/lib/fortis_api/models/billing_address24.rb +158 -0
- data/lib/fortis_api/models/billing_address5.rb +97 -0
- data/lib/fortis_api/models/body.rb +91 -0
- data/lib/fortis_api/models/branding_domain.rb +474 -0
- data/lib/fortis_api/models/branding_domain1.rb +474 -0
- data/lib/fortis_api/models/broad_info.rb +171 -0
- data/lib/fortis_api/models/browser_information.rb +288 -0
- data/lib/fortis_api/models/business_category_enum.rb +74 -0
- data/lib/fortis_api/models/business_type_enum.rb +462 -0
- data/lib/fortis_api/models/cardholder.rb +185 -0
- data/lib/fortis_api/models/cardholder_account.rb +131 -0
- data/lib/fortis_api/models/category_enum.rb +135 -0
- data/lib/fortis_api/models/cau_subscribe_type_code_enum.rb +46 -0
- data/lib/fortis_api/models/cau_subscribe_type_id_enum.rb +46 -0
- data/lib/fortis_api/models/cau_summary_status_id_enum.rb +50 -0
- data/lib/fortis_api/models/cc_product_transaction.rb +1571 -0
- data/lib/fortis_api/models/ch_acc_age_ind_enum.rb +50 -0
- data/lib/fortis_api/models/ch_acc_change_ind_enum.rb +47 -0
- data/lib/fortis_api/models/ch_acc_pw_change_ind_enum.rb +51 -0
- data/lib/fortis_api/models/challenge_message_extension.rb +109 -0
- data/lib/fortis_api/models/challenge_window_size_enum.rb +56 -0
- data/lib/fortis_api/models/changelog.rb +157 -0
- data/lib/fortis_api/models/changelog_detail.rb +107 -0
- data/lib/fortis_api/models/children.rb +421 -0
- data/lib/fortis_api/models/communication_type_enum.rb +40 -0
- data/lib/fortis_api/models/conditions.rb +82 -0
- data/lib/fortis_api/models/conditions18.rb +92 -0
- data/lib/fortis_api/models/conditions181.rb +92 -0
- data/lib/fortis_api/models/conditions191.rb +92 -0
- data/lib/fortis_api/models/conditions27.rb +82 -0
- data/lib/fortis_api/models/conditions4.rb +92 -0
- data/lib/fortis_api/models/conditions41.rb +92 -0
- data/lib/fortis_api/models/conditions42.rb +92 -0
- data/lib/fortis_api/models/conditions43.rb +92 -0
- data/lib/fortis_api/models/contact.rb +106 -0
- data/lib/fortis_api/models/contact1.rb +421 -0
- data/lib/fortis_api/models/contact11.rb +105 -0
- data/lib/fortis_api/models/contact_user_default_entry_page_enum.rb +52 -0
- data/lib/fortis_api/models/context.rb +82 -0
- data/lib/fortis_api/models/country_enum.rb +36 -0
- data/lib/fortis_api/models/created_user.rb +591 -0
- data/lib/fortis_api/models/currency_type.rb +84 -0
- data/lib/fortis_api/models/data.rb +125 -0
- data/lib/fortis_api/models/data1.rb +72 -0
- data/lib/fortis_api/models/data10.rb +694 -0
- data/lib/fortis_api/models/data11.rb +491 -0
- data/lib/fortis_api/models/data12.rb +237 -0
- data/lib/fortis_api/models/data13.rb +172 -0
- data/lib/fortis_api/models/data14.rb +280 -0
- data/lib/fortis_api/models/data15.rb +433 -0
- data/lib/fortis_api/models/data16.rb +468 -0
- data/lib/fortis_api/models/data17.rb +72 -0
- data/lib/fortis_api/models/data18.rb +861 -0
- data/lib/fortis_api/models/data19.rb +127 -0
- data/lib/fortis_api/models/data2.rb +580 -0
- data/lib/fortis_api/models/data20.rb +668 -0
- data/lib/fortis_api/models/data21.rb +136 -0
- data/lib/fortis_api/models/data22.rb +122 -0
- data/lib/fortis_api/models/data23.rb +700 -0
- data/lib/fortis_api/models/data24.rb +214 -0
- data/lib/fortis_api/models/data25.rb +889 -0
- data/lib/fortis_api/models/data26.rb +211 -0
- data/lib/fortis_api/models/data27.rb +2577 -0
- data/lib/fortis_api/models/data28.rb +256 -0
- data/lib/fortis_api/models/data29.rb +94 -0
- data/lib/fortis_api/models/data3.rb +168 -0
- data/lib/fortis_api/models/data32.rb +101 -0
- data/lib/fortis_api/models/data33.rb +73 -0
- data/lib/fortis_api/models/data34.rb +815 -0
- data/lib/fortis_api/models/data37.rb +75 -0
- data/lib/fortis_api/models/data38.rb +150 -0
- data/lib/fortis_api/models/data39.rb +285 -0
- data/lib/fortis_api/models/data4.rb +254 -0
- data/lib/fortis_api/models/data5.rb +102 -0
- data/lib/fortis_api/models/data6.rb +244 -0
- data/lib/fortis_api/models/data7.rb +135 -0
- data/lib/fortis_api/models/data8.rb +345 -0
- data/lib/fortis_api/models/data9.rb +82 -0
- data/lib/fortis_api/models/debit_credit_enum.rb +37 -0
- data/lib/fortis_api/models/declined_recurring_notification.rb +146 -0
- data/lib/fortis_api/models/default_transaction_type_enum.rb +40 -0
- data/lib/fortis_api/models/delivery_method_enum.rb +54 -0
- data/lib/fortis_api/models/delivery_timeframe_enum.rb +46 -0
- data/lib/fortis_api/models/deposit_type_enum.rb +40 -0
- data/lib/fortis_api/models/detail.rb +102 -0
- data/lib/fortis_api/models/detail1.rb +263 -0
- data/lib/fortis_api/models/detail2.rb +154 -0
- data/lib/fortis_api/models/developer_company.rb +149 -0
- data/lib/fortis_api/models/device.rb +111 -0
- data/lib/fortis_api/models/device_binding_status_enum.rb +441 -0
- data/lib/fortis_api/models/device_channel_enum.rb +37 -0
- data/lib/fortis_api/models/document.rb +91 -0
- data/lib/fortis_api/models/domain.rb +474 -0
- data/lib/fortis_api/models/e_format_enum.rb +56 -0
- data/lib/fortis_api/models/ebt_type_enum.rb +36 -0
- data/lib/fortis_api/models/email_blacklist.rb +105 -0
- data/lib/fortis_api/models/email_enum.rb +42 -0
- data/lib/fortis_api/models/emv_receipt_data.rb +141 -0
- data/lib/fortis_api/models/entry_mode_id_enum.rb +52 -0
- data/lib/fortis_api/models/expand10_enum.rb +26 -0
- data/lib/fortis_api/models/expand117_enum.rb +96 -0
- data/lib/fortis_api/models/expand11_enum.rb +108 -0
- data/lib/fortis_api/models/expand123_enum.rb +40 -0
- data/lib/fortis_api/models/expand15_enum.rb +26 -0
- data/lib/fortis_api/models/expand17_enum.rb +100 -0
- data/lib/fortis_api/models/expand18_enum.rb +88 -0
- data/lib/fortis_api/models/expand1_enum.rb +76 -0
- data/lib/fortis_api/models/expand26_enum.rb +92 -0
- data/lib/fortis_api/models/expand34_enum.rb +26 -0
- data/lib/fortis_api/models/expand37_enum.rb +26 -0
- data/lib/fortis_api/models/expand40_enum.rb +60 -0
- data/lib/fortis_api/models/expand44_enum.rb +40 -0
- data/lib/fortis_api/models/expand47_enum.rb +69 -0
- data/lib/fortis_api/models/expand57_enum.rb +48 -0
- data/lib/fortis_api/models/expand5_enum.rb +40 -0
- data/lib/fortis_api/models/expand60_enum.rb +200 -0
- data/lib/fortis_api/models/expand8_enum.rb +52 -0
- data/lib/fortis_api/models/expand_enum.rb +40 -0
- data/lib/fortis_api/models/field.rb +82 -0
- data/lib/fortis_api/models/field18.rb +143 -0
- data/lib/fortis_api/models/field27_enum.rb +108 -0
- data/lib/fortis_api/models/field28_enum.rb +200 -0
- data/lib/fortis_api/models/field30_enum.rb +76 -0
- data/lib/fortis_api/models/field31_enum.rb +92 -0
- data/lib/fortis_api/models/field33_enum.rb +220 -0
- data/lib/fortis_api/models/field34_enum.rb +236 -0
- data/lib/fortis_api/models/field35_enum.rb +216 -0
- data/lib/fortis_api/models/field36_enum.rb +232 -0
- data/lib/fortis_api/models/field37_enum.rb +26 -0
- data/lib/fortis_api/models/field38_enum.rb +108 -0
- data/lib/fortis_api/models/field39_enum.rb +209 -0
- data/lib/fortis_api/models/field41_enum.rb +280 -0
- data/lib/fortis_api/models/field43_enum.rb +236 -0
- data/lib/fortis_api/models/field45_enum.rb +56 -0
- data/lib/fortis_api/models/field47_enum.rb +52 -0
- data/lib/fortis_api/models/field49_enum.rb +240 -0
- data/lib/fortis_api/models/field51_enum.rb +88 -0
- data/lib/fortis_api/models/field53_enum.rb +286 -0
- data/lib/fortis_api/models/field55_enum.rb +76 -0
- data/lib/fortis_api/models/field57_enum.rb +652 -0
- data/lib/fortis_api/models/field59_enum.rb +40 -0
- data/lib/fortis_api/models/field60_enum.rb +280 -0
- data/lib/fortis_api/models/field_configuration.rb +111 -0
- data/lib/fortis_api/models/file.rb +223 -0
- data/lib/fortis_api/models/file2.rb +82 -0
- data/lib/fortis_api/models/file5.rb +85 -0
- data/lib/fortis_api/models/filter_by.rb +120 -0
- data/lib/fortis_api/models/footer.rb +91 -0
- data/lib/fortis_api/models/forecast.rb +139 -0
- data/lib/fortis_api/models/format1_enum.rb +36 -0
- data/lib/fortis_api/models/format_enum.rb +36 -0
- data/lib/fortis_api/models/header.rb +91 -0
- data/lib/fortis_api/models/helppage.rb +151 -0
- data/lib/fortis_api/models/helppage2.rb +151 -0
- data/lib/fortis_api/models/home_phone.rb +84 -0
- data/lib/fortis_api/models/hosted_payment_page.rb +298 -0
- data/lib/fortis_api/models/identity_verification.rb +112 -0
- data/lib/fortis_api/models/identity_verification2.rb +110 -0
- data/lib/fortis_api/models/identity_verification27.rb +110 -0
- data/lib/fortis_api/models/idtype_enum.rb +36 -0
- data/lib/fortis_api/models/iias_ind_enum.rb +46 -0
- data/lib/fortis_api/models/industry_type_enum.rb +52 -0
- data/lib/fortis_api/models/initiation_type_enum.rb +76 -0
- data/lib/fortis_api/models/interval_type_enum.rb +40 -0
- data/lib/fortis_api/models/item_list.rb +82 -0
- data/lib/fortis_api/models/item_list4.rb +79 -0
- data/lib/fortis_api/models/item_list5.rb +85 -0
- data/lib/fortis_api/models/joi.rb +73 -0
- data/lib/fortis_api/models/joi18.rb +85 -0
- data/lib/fortis_api/models/joi19.rb +85 -0
- data/lib/fortis_api/models/joi27.rb +73 -0
- data/lib/fortis_api/models/joi4.rb +85 -0
- data/lib/fortis_api/models/kyc_response_object.rb +79 -0
- data/lib/fortis_api/models/level3_data.rb +274 -0
- data/lib/fortis_api/models/level3_data5.rb +192 -0
- data/lib/fortis_api/models/level3_data6.rb +273 -0
- data/lib/fortis_api/models/level3_default.rb +274 -0
- data/lib/fortis_api/models/line_item.rb +246 -0
- data/lib/fortis_api/models/line_item13.rb +245 -0
- data/lib/fortis_api/models/line_item19.rb +215 -0
- data/lib/fortis_api/models/line_item20.rb +173 -0
- data/lib/fortis_api/models/links.rb +111 -0
- data/lib/fortis_api/models/list.rb +326 -0
- data/lib/fortis_api/models/list1.rb +580 -0
- data/lib/fortis_api/models/list10.rb +861 -0
- data/lib/fortis_api/models/list11.rb +668 -0
- data/lib/fortis_api/models/list12.rb +136 -0
- data/lib/fortis_api/models/list13.rb +122 -0
- data/lib/fortis_api/models/list14.rb +700 -0
- data/lib/fortis_api/models/list15.rb +214 -0
- data/lib/fortis_api/models/list16.rb +889 -0
- data/lib/fortis_api/models/list17.rb +211 -0
- data/lib/fortis_api/models/list18.rb +2577 -0
- data/lib/fortis_api/models/list19.rb +101 -0
- data/lib/fortis_api/models/list20.rb +815 -0
- data/lib/fortis_api/models/list3.rb +168 -0
- data/lib/fortis_api/models/list4.rb +244 -0
- data/lib/fortis_api/models/list5.rb +491 -0
- data/lib/fortis_api/models/list6.rb +694 -0
- data/lib/fortis_api/models/list8.rb +280 -0
- data/lib/fortis_api/models/list9.rb +468 -0
- data/lib/fortis_api/models/location.rb +387 -0
- data/lib/fortis_api/models/location18.rb +387 -0
- data/lib/fortis_api/models/location20.rb +131 -0
- data/lib/fortis_api/models/location5.rb +132 -0
- data/lib/fortis_api/models/location_billing_account.rb +268 -0
- data/lib/fortis_api/models/location_type_enum.rb +40 -0
- data/lib/fortis_api/models/location_user.rb +149 -0
- data/lib/fortis_api/models/locationmarketplace.rb +143 -0
- data/lib/fortis_api/models/log_email.rb +192 -0
- data/lib/fortis_api/models/log_sms.rb +166 -0
- data/lib/fortis_api/models/marketplace.rb +143 -0
- data/lib/fortis_api/models/merchant_list.rb +134 -0
- data/lib/fortis_api/models/merchant_risk_indicator.rb +237 -0
- data/lib/fortis_api/models/message_category_enum.rb +120 -0
- data/lib/fortis_api/models/message_extension.rb +109 -0
- data/lib/fortis_api/models/meta.rb +81 -0
- data/lib/fortis_api/models/method3.rb +97 -0
- data/lib/fortis_api/models/method50.rb +106 -0
- data/lib/fortis_api/models/method53_enum.rb +26 -0
- data/lib/fortis_api/models/method5_enum.rb +26 -0
- data/lib/fortis_api/models/method_enum.rb +26 -0
- data/lib/fortis_api/models/mobile_phone.rb +85 -0
- data/lib/fortis_api/models/modified_user.rb +591 -0
- data/lib/fortis_api/models/multi_transaction.rb +103 -0
- data/lib/fortis_api/models/operator1_enum.rb +36 -0
- data/lib/fortis_api/models/operator_enum.rb +36 -0
- data/lib/fortis_api/models/order21.rb +79 -0
- data/lib/fortis_api/models/order_enum.rb +36 -0
- data/lib/fortis_api/models/owner.rb +233 -0
- data/lib/fortis_api/models/ownership_type_enum.rb +68 -0
- data/lib/fortis_api/models/page.rb +84 -0
- data/lib/fortis_api/models/pagination.rb +113 -0
- data/lib/fortis_api/models/parent.rb +421 -0
- data/lib/fortis_api/models/parent3.rb +387 -0
- data/lib/fortis_api/models/partner_enum.rb +68 -0
- data/lib/fortis_api/models/paylink_action_enum.rb +37 -0
- data/lib/fortis_api/models/payment_acc_ind_enum.rb +51 -0
- data/lib/fortis_api/models/payment_method16_enum.rb +36 -0
- data/lib/fortis_api/models/payment_method1_enum.rb +36 -0
- data/lib/fortis_api/models/payment_method9_enum.rb +36 -0
- data/lib/fortis_api/models/payment_method_enum.rb +40 -0
- data/lib/fortis_api/models/payment_recurring_notification.rb +146 -0
- data/lib/fortis_api/models/postback_log.rb +162 -0
- data/lib/fortis_api/models/postback_status_id_enum.rb +50 -0
- data/lib/fortis_api/models/pre_order_purchase_ind_enum.rb +38 -0
- data/lib/fortis_api/models/preferred_language_enum.rb +38 -0
- data/lib/fortis_api/models/preferred_protocol_version_enum.rb +51 -0
- data/lib/fortis_api/models/pricing_element.rb +103 -0
- data/lib/fortis_api/models/primary_location.rb +387 -0
- data/lib/fortis_api/models/primary_principal.rb +211 -0
- data/lib/fortis_api/models/primary_principal1.rb +209 -0
- data/lib/fortis_api/models/process_method_enum.rb +36 -0
- data/lib/fortis_api/models/processor_enum.rb +52 -0
- data/lib/fortis_api/models/product_accountvault.rb +173 -0
- data/lib/fortis_api/models/product_file.rb +227 -0
- data/lib/fortis_api/models/product_file1.rb +227 -0
- data/lib/fortis_api/models/product_invoice.rb +341 -0
- data/lib/fortis_api/models/product_recurring.rb +230 -0
- data/lib/fortis_api/models/product_token.rb +173 -0
- data/lib/fortis_api/models/product_transaction.rb +1571 -0
- data/lib/fortis_api/models/product_transaction1.rb +1571 -0
- data/lib/fortis_api/models/purchase.rb +327 -0
- data/lib/fortis_api/models/quick_invoice.rb +657 -0
- data/lib/fortis_api/models/quick_invoice_setting.rb +189 -0
- data/lib/fortis_api/models/quick_invoice_view.rb +107 -0
- data/lib/fortis_api/models/reason_code.rb +84 -0
- data/lib/fortis_api/models/reason_code_id1_enum.rb +912 -0
- data/lib/fortis_api/models/reason_code_id_enum.rb +750 -0
- data/lib/fortis_api/models/reason_model_enum.rb +72 -0
- data/lib/fortis_api/models/received_email.rb +192 -0
- data/lib/fortis_api/models/recipients_enum.rb +45 -0
- data/lib/fortis_api/models/recurring.rb +476 -0
- data/lib/fortis_api/models/recurring3.rb +476 -0
- data/lib/fortis_api/models/recurring_flag_enum.rb +40 -0
- data/lib/fortis_api/models/recurring_split.rb +118 -0
- data/lib/fortis_api/models/recurring_type_id_enum.rb +36 -0
- data/lib/fortis_api/models/registration_field_enum.rb +92 -0
- data/lib/fortis_api/models/rejected_transaction.rb +2034 -0
- data/lib/fortis_api/models/rejected_transaction_ach_retry.rb +146 -0
- data/lib/fortis_api/models/relationship_enum.rb +40 -0
- data/lib/fortis_api/models/reorder_items_ind_enum.rb +37 -0
- data/lib/fortis_api/models/report_export_type_enum.rb +44 -0
- data/lib/fortis_api/models/resource12_enum.rb +41 -0
- data/lib/fortis_api/models/resource2_enum.rb +40 -0
- data/lib/fortis_api/models/resource_enum.rb +44 -0
- data/lib/fortis_api/models/resources.rb +138 -0
- data/lib/fortis_api/models/response416date_range.rb +92 -0
- data/lib/fortis_api/models/response417filter_channels.rb +92 -0
- data/lib/fortis_api/models/response_apple_pay_validate_merchant.rb +83 -0
- data/lib/fortis_api/models/response_async_status.rb +83 -0
- data/lib/fortis_api/models/response_batchs_collection.rb +121 -0
- data/lib/fortis_api/models/response_contact.rb +83 -0
- data/lib/fortis_api/models/response_contact_searchs_collection.rb +121 -0
- data/lib/fortis_api/models/response_contacts_collection.rb +121 -0
- data/lib/fortis_api/models/response_declined_recurring_transaction.rb +83 -0
- data/lib/fortis_api/models/response_declined_recurring_transaction_payment.rb +83 -0
- data/lib/fortis_api/models/response_declined_recurring_transaction_resend.rb +83 -0
- data/lib/fortis_api/models/response_declined_recurring_transactions_collection.rb +122 -0
- data/lib/fortis_api/models/response_device_term.rb +83 -0
- data/lib/fortis_api/models/response_device_terms_collection.rb +121 -0
- data/lib/fortis_api/models/response_fullboarding.rb +83 -0
- data/lib/fortis_api/models/response_location.rb +83 -0
- data/lib/fortis_api/models/response_location_info.rb +83 -0
- data/lib/fortis_api/models/response_location_infos_collection.rb +121 -0
- data/lib/fortis_api/models/response_location_searchs_collection.rb +121 -0
- data/lib/fortis_api/models/response_locations_collection.rb +121 -0
- data/lib/fortis_api/models/response_merchant_deposit.rb +83 -0
- data/lib/fortis_api/models/response_merchant_deposits_collection.rb +121 -0
- data/lib/fortis_api/models/response_merchant_details.rb +83 -0
- data/lib/fortis_api/models/response_onboarding.rb +83 -0
- data/lib/fortis_api/models/response_paylink.rb +83 -0
- data/lib/fortis_api/models/response_paylinks_collection.rb +121 -0
- data/lib/fortis_api/models/response_payment_card_reader_token.rb +83 -0
- data/lib/fortis_api/models/response_quick_invoice.rb +83 -0
- data/lib/fortis_api/models/response_quick_invoice_resend.rb +83 -0
- data/lib/fortis_api/models/response_quick_invoices_collection.rb +121 -0
- data/lib/fortis_api/models/response_recurring.rb +83 -0
- data/lib/fortis_api/models/response_recurrings_collection.rb +121 -0
- data/lib/fortis_api/models/response_remove_verification.rb +83 -0
- data/lib/fortis_api/models/response_send_verification.rb +83 -0
- data/lib/fortis_api/models/response_signature.rb +83 -0
- data/lib/fortis_api/models/response_signatures_collection.rb +121 -0
- data/lib/fortis_api/models/response_tag.rb +83 -0
- data/lib/fortis_api/models/response_tags_collection.rb +120 -0
- data/lib/fortis_api/models/response_terminal.rb +83 -0
- data/lib/fortis_api/models/response_terminals_collection.rb +121 -0
- data/lib/fortis_api/models/response_three_ds_authentication.rb +83 -0
- data/lib/fortis_api/models/response_three_ds_transaction.rb +83 -0
- data/lib/fortis_api/models/response_ticket.rb +83 -0
- data/lib/fortis_api/models/response_ticket_intention.rb +83 -0
- data/lib/fortis_api/models/response_tickets_collection.rb +121 -0
- data/lib/fortis_api/models/response_token.rb +83 -0
- data/lib/fortis_api/models/response_tokens_collection.rb +121 -0
- data/lib/fortis_api/models/response_transaction.rb +83 -0
- data/lib/fortis_api/models/response_transaction_ach_retry.rb +83 -0
- data/lib/fortis_api/models/response_transaction_ach_retrys_collection.rb +121 -0
- data/lib/fortis_api/models/response_transaction_bin_info.rb +83 -0
- data/lib/fortis_api/models/response_transaction_intention.rb +83 -0
- data/lib/fortis_api/models/response_transaction_level3.rb +83 -0
- data/lib/fortis_api/models/response_transaction_level3_master.rb +83 -0
- data/lib/fortis_api/models/response_transaction_level3_visa.rb +83 -0
- data/lib/fortis_api/models/response_transaction_processing.rb +83 -0
- data/lib/fortis_api/models/response_transactions_collection.rb +121 -0
- data/lib/fortis_api/models/response_user.rb +83 -0
- data/lib/fortis_api/models/response_user_api_key.rb +83 -0
- data/lib/fortis_api/models/response_user_verification.rb +83 -0
- data/lib/fortis_api/models/response_user_verifications_collection.rb +121 -0
- data/lib/fortis_api/models/response_users_collection.rb +121 -0
- data/lib/fortis_api/models/response_webhook.rb +83 -0
- data/lib/fortis_api/models/result.rb +95 -0
- data/lib/fortis_api/models/retry_transaction.rb +2034 -0
- data/lib/fortis_api/models/retry_transaction_ach_retry.rb +146 -0
- data/lib/fortis_api/models/return_fee_transaction.rb +2034 -0
- data/lib/fortis_api/models/return_fee_transaction_ach_retry.rb +146 -0
- data/lib/fortis_api/models/saved_account.rb +734 -0
- data/lib/fortis_api/models/scheme_id_enum.rb +45 -0
- data/lib/fortis_api/models/sec_code_enum.rb +44 -0
- data/lib/fortis_api/models/settings.rb +92 -0
- data/lib/fortis_api/models/severity_enum.rb +48 -0
- data/lib/fortis_api/models/ship_address_usage_ind_enum.rb +46 -0
- data/lib/fortis_api/models/ship_indicator_enum.rb +83 -0
- data/lib/fortis_api/models/ship_name_indicator_enum.rb +38 -0
- data/lib/fortis_api/models/shipping_address.rb +161 -0
- data/lib/fortis_api/models/signature.rb +125 -0
- data/lib/fortis_api/models/sms_blacklist.rb +105 -0
- data/lib/fortis_api/models/sms_enum.rb +42 -0
- data/lib/fortis_api/models/sort.rb +91 -0
- data/lib/fortis_api/models/source_enum.rb +41 -0
- data/lib/fortis_api/models/stack_enum.rb +36 -0
- data/lib/fortis_api/models/status11.rb +84 -0
- data/lib/fortis_api/models/status3_enum.rb +36 -0
- data/lib/fortis_api/models/status5.rb +73 -0
- data/lib/fortis_api/models/status_code12_enum.rb +42 -0
- data/lib/fortis_api/models/status_code14_enum.rb +42 -0
- data/lib/fortis_api/models/status_code17_enum.rb +89 -0
- data/lib/fortis_api/models/status_code_enum.rb +46 -0
- data/lib/fortis_api/models/status_enum.rb +40 -0
- data/lib/fortis_api/models/status_id_enum.rb +42 -0
- data/lib/fortis_api/models/surcharge.rb +318 -0
- data/lib/fortis_api/models/surcharge_transaction.rb +208 -0
- data/lib/fortis_api/models/suspicious_acc_activity_enum.rb +38 -0
- data/lib/fortis_api/models/tag.rb +113 -0
- data/lib/fortis_api/models/tag_transaction.rb +177 -0
- data/lib/fortis_api/models/tax_exempt_enum.rb +36 -0
- data/lib/fortis_api/models/tax_surcharge_config_enum.rb +42 -0
- data/lib/fortis_api/models/terminal.rb +595 -0
- data/lib/fortis_api/models/terminal2.rb +595 -0
- data/lib/fortis_api/models/terminal_application.rb +212 -0
- data/lib/fortis_api/models/terminal_cvm.rb +166 -0
- data/lib/fortis_api/models/terminal_manufacturer.rb +140 -0
- data/lib/fortis_api/models/terminal_manufacturer_code_enum.rb +44 -0
- data/lib/fortis_api/models/terminal_router.rb +139 -0
- data/lib/fortis_api/models/terminal_timeouts.rb +204 -0
- data/lib/fortis_api/models/terminal_timeouts12.rb +213 -0
- data/lib/fortis_api/models/three_ds_req_auth_method_enum.rb +155 -0
- data/lib/fortis_api/models/three_ds_req_prior_auth_method_enum.rb +128 -0
- data/lib/fortis_api/models/three_ds_requestor.rb +306 -0
- data/lib/fortis_api/models/three_ds_requestor_authentication_ind_enum.rb +143 -0
- data/lib/fortis_api/models/three_ds_requestor_authentication_info.rb +148 -0
- data/lib/fortis_api/models/three_ds_requestor_challenge_ind_enum.rb +144 -0
- data/lib/fortis_api/models/three_ds_requestor_dec_req_ind_enum.rb +56 -0
- data/lib/fortis_api/models/three_ds_requestor_prior_authentication_info.rb +146 -0
- data/lib/fortis_api/models/three_ds_requestor_spc_support_enum.rb +29 -0
- data/lib/fortis_api/models/three_ri_ind_enum.rb +180 -0
- data/lib/fortis_api/models/tip_percents.rb +100 -0
- data/lib/fortis_api/models/trans_char_enum.rb +36 -0
- data/lib/fortis_api/models/transaction.rb +2034 -0
- data/lib/fortis_api/models/transaction_batch.rb +275 -0
- data/lib/fortis_api/models/transaction_history.rb +138 -0
- data/lib/fortis_api/models/transaction_level3.rb +94 -0
- data/lib/fortis_api/models/transaction_reference.rb +182 -0
- data/lib/fortis_api/models/transaction_split.rb +127 -0
- data/lib/fortis_api/models/transaction_status_enum.rb +73 -0
- data/lib/fortis_api/models/transaction_type_enum.rb +52 -0
- data/lib/fortis_api/models/trx_source_code_enum.rb +143 -0
- data/lib/fortis_api/models/trx_source_id_enum.rb +143 -0
- data/lib/fortis_api/models/type103_enum.rb +26 -0
- data/lib/fortis_api/models/type10_enum.rb +26 -0
- data/lib/fortis_api/models/type110_enum.rb +26 -0
- data/lib/fortis_api/models/type112.rb +84 -0
- data/lib/fortis_api/models/type113_enum.rb +26 -0
- data/lib/fortis_api/models/type114_enum.rb +26 -0
- data/lib/fortis_api/models/type115_enum.rb +26 -0
- data/lib/fortis_api/models/type116_enum.rb +26 -0
- data/lib/fortis_api/models/type117_enum.rb +26 -0
- data/lib/fortis_api/models/type11_enum.rb +26 -0
- data/lib/fortis_api/models/type123_enum.rb +26 -0
- data/lib/fortis_api/models/type124_enum.rb +26 -0
- data/lib/fortis_api/models/type128_enum.rb +26 -0
- data/lib/fortis_api/models/type129_enum.rb +26 -0
- data/lib/fortis_api/models/type130_enum.rb +26 -0
- data/lib/fortis_api/models/type134_enum.rb +26 -0
- data/lib/fortis_api/models/type135_enum.rb +26 -0
- data/lib/fortis_api/models/type136_enum.rb +26 -0
- data/lib/fortis_api/models/type137_enum.rb +26 -0
- data/lib/fortis_api/models/type138_enum.rb +26 -0
- data/lib/fortis_api/models/type15_enum.rb +26 -0
- data/lib/fortis_api/models/type16_enum.rb +27 -0
- data/lib/fortis_api/models/type1_enum.rb +26 -0
- data/lib/fortis_api/models/type20_enum.rb +26 -0
- data/lib/fortis_api/models/type21_enum.rb +26 -0
- data/lib/fortis_api/models/type22_enum.rb +26 -0
- data/lib/fortis_api/models/type23_enum.rb +26 -0
- data/lib/fortis_api/models/type27_enum.rb +26 -0
- data/lib/fortis_api/models/type28_enum.rb +26 -0
- data/lib/fortis_api/models/type29_enum.rb +36 -0
- data/lib/fortis_api/models/type2_enum.rb +26 -0
- data/lib/fortis_api/models/type30_enum.rb +26 -0
- data/lib/fortis_api/models/type31_enum.rb +26 -0
- data/lib/fortis_api/models/type35_enum.rb +26 -0
- data/lib/fortis_api/models/type39_enum.rb +26 -0
- data/lib/fortis_api/models/type3_enum.rb +26 -0
- data/lib/fortis_api/models/type43_enum.rb +26 -0
- data/lib/fortis_api/models/type44_enum.rb +26 -0
- data/lib/fortis_api/models/type45_enum.rb +26 -0
- data/lib/fortis_api/models/type46_enum.rb +26 -0
- data/lib/fortis_api/models/type47_enum.rb +26 -0
- data/lib/fortis_api/models/type48_enum.rb +26 -0
- data/lib/fortis_api/models/type4_enum.rb +26 -0
- data/lib/fortis_api/models/type52_enum.rb +26 -0
- data/lib/fortis_api/models/type53_enum.rb +26 -0
- data/lib/fortis_api/models/type54_enum.rb +26 -0
- data/lib/fortis_api/models/type58_enum.rb +26 -0
- data/lib/fortis_api/models/type59_enum.rb +26 -0
- data/lib/fortis_api/models/type5_enum.rb +26 -0
- data/lib/fortis_api/models/type60_enum.rb +74 -0
- data/lib/fortis_api/models/type61_enum.rb +26 -0
- data/lib/fortis_api/models/type62_enum.rb +26 -0
- data/lib/fortis_api/models/type67_enum.rb +26 -0
- data/lib/fortis_api/models/type68_enum.rb +26 -0
- data/lib/fortis_api/models/type6_enum.rb +26 -0
- data/lib/fortis_api/models/type72_enum.rb +26 -0
- data/lib/fortis_api/models/type73_enum.rb +26 -0
- data/lib/fortis_api/models/type77_enum.rb +26 -0
- data/lib/fortis_api/models/type78_enum.rb +26 -0
- data/lib/fortis_api/models/type82_enum.rb +26 -0
- data/lib/fortis_api/models/type83_enum.rb +26 -0
- data/lib/fortis_api/models/type87_enum.rb +26 -0
- data/lib/fortis_api/models/type88_enum.rb +26 -0
- data/lib/fortis_api/models/type92_enum.rb +26 -0
- data/lib/fortis_api/models/type94_enum.rb +26 -0
- data/lib/fortis_api/models/type99_enum.rb +26 -0
- data/lib/fortis_api/models/type_enum.rb +26 -0
- data/lib/fortis_api/models/type_id_enum.rb +58 -0
- data/lib/fortis_api/models/ui_prefs.rb +123 -0
- data/lib/fortis_api/models/update_if_exists_enum.rb +26 -0
- data/lib/fortis_api/models/user.rb +107 -0
- data/lib/fortis_api/models/user1.rb +591 -0
- data/lib/fortis_api/models/user9.rb +591 -0
- data/lib/fortis_api/models/user_type_code_enum.rb +78 -0
- data/lib/fortis_api/models/v1_contacts_request.rb +368 -0
- data/lib/fortis_api/models/v1_contacts_request1.rb +372 -0
- data/lib/fortis_api/models/v1_declined_recurring_transaction_payments_request.rb +214 -0
- data/lib/fortis_api/models/v1_device_terms_request.rb +118 -0
- data/lib/fortis_api/models/v1_elements_ticket_intention_request.rb +122 -0
- data/lib/fortis_api/models/v1_elements_transaction_intention_request.rb +334 -0
- data/lib/fortis_api/models/v1_fullboarding_request.rb +489 -0
- data/lib/fortis_api/models/v1_merchant_threedsecure_authentication_request.rb +473 -0
- data/lib/fortis_api/models/v1_onboarding_request.rb +413 -0
- data/lib/fortis_api/models/v1_paylinks_request.rb +380 -0
- data/lib/fortis_api/models/v1_paylinks_request1.rb +383 -0
- data/lib/fortis_api/models/v1_quick_invoices_request.rb +564 -0
- data/lib/fortis_api/models/v1_quick_invoices_request1.rb +570 -0
- data/lib/fortis_api/models/v1_quick_invoices_transaction_request.rb +72 -0
- data/lib/fortis_api/models/v1_recurrings_defer_payment_request.rb +71 -0
- data/lib/fortis_api/models/v1_recurrings_request.rb +387 -0
- data/lib/fortis_api/models/v1_recurrings_request1.rb +377 -0
- data/lib/fortis_api/models/v1_recurrings_skip_payment_request.rb +71 -0
- data/lib/fortis_api/models/v1_signatures_request.rb +91 -0
- data/lib/fortis_api/models/v1_tags_request.rb +79 -0
- data/lib/fortis_api/models/v1_tags_request1.rb +85 -0
- data/lib/fortis_api/models/v1_terminals_request.rb +519 -0
- data/lib/fortis_api/models/v1_terminals_request1.rb +536 -0
- data/lib/fortis_api/models/v1_tickets_request.rb +193 -0
- data/lib/fortis_api/models/v1_tokens_ach_request.rb +525 -0
- data/lib/fortis_api/models/v1_tokens_ach_request1.rb +501 -0
- data/lib/fortis_api/models/v1_tokens_cc_request.rb +586 -0
- data/lib/fortis_api/models/v1_tokens_cc_request1.rb +497 -0
- data/lib/fortis_api/models/v1_tokens_previous_transaction_request.rb +483 -0
- data/lib/fortis_api/models/v1_tokens_terminal_async_request.rb +501 -0
- data/lib/fortis_api/models/v1_tokens_terminal_request.rb +501 -0
- data/lib/fortis_api/models/v1_tokens_ticket_request.rb +493 -0
- data/lib/fortis_api/models/v1_tokens_wallet_request.rb +515 -0
- data/lib/fortis_api/models/v1_transaction_ach_retries_request.rb +85 -0
- data/lib/fortis_api/models/v1_transactions_ach_credit_keyed_request.rb +869 -0
- data/lib/fortis_api/models/v1_transactions_ach_credit_prev_trxn_request.rb +863 -0
- data/lib/fortis_api/models/v1_transactions_ach_credit_token_request.rb +876 -0
- data/lib/fortis_api/models/v1_transactions_ach_debit_keyed_request.rb +869 -0
- data/lib/fortis_api/models/v1_transactions_ach_debit_prev_trxn_request.rb +863 -0
- data/lib/fortis_api/models/v1_transactions_ach_debit_token_request.rb +876 -0
- data/lib/fortis_api/models/v1_transactions_ach_refund_prev_trxn_request.rb +863 -0
- data/lib/fortis_api/models/v1_transactions_auth_complete_request.rb +785 -0
- data/lib/fortis_api/models/v1_transactions_auth_increment_request.rb +783 -0
- data/lib/fortis_api/models/v1_transactions_cash_refund_request.rb +807 -0
- data/lib/fortis_api/models/v1_transactions_cash_sale_request.rb +794 -0
- data/lib/fortis_api/models/v1_transactions_cc_auth_only_keyed_request.rb +1148 -0
- data/lib/fortis_api/models/v1_transactions_cc_auth_only_prev_trxn_request.rb +1125 -0
- data/lib/fortis_api/models/v1_transactions_cc_auth_only_swiped_request.rb +1102 -0
- data/lib/fortis_api/models/v1_transactions_cc_auth_only_taptopay_request.rb +974 -0
- data/lib/fortis_api/models/v1_transactions_cc_auth_only_terminal_request.rb +1105 -0
- data/lib/fortis_api/models/v1_transactions_cc_auth_only_ticket_request.rb +1089 -0
- data/lib/fortis_api/models/v1_transactions_cc_auth_only_token_request.rb +1119 -0
- data/lib/fortis_api/models/v1_transactions_cc_auth_only_wallet_request.rb +1099 -0
- data/lib/fortis_api/models/v1_transactions_cc_avs_only_keyed_request.rb +1150 -0
- data/lib/fortis_api/models/v1_transactions_cc_avs_only_prev_trxn_request.rb +1125 -0
- data/lib/fortis_api/models/v1_transactions_cc_avs_only_swiped_request.rb +1103 -0
- data/lib/fortis_api/models/v1_transactions_cc_avs_only_terminal_request.rb +1106 -0
- data/lib/fortis_api/models/v1_transactions_cc_avs_only_ticket_request.rb +1090 -0
- data/lib/fortis_api/models/v1_transactions_cc_avs_only_token_request.rb +1121 -0
- data/lib/fortis_api/models/v1_transactions_cc_avs_only_wallet_request.rb +1101 -0
- data/lib/fortis_api/models/v1_transactions_cc_balance_inquiry_keyed_request.rb +1150 -0
- data/lib/fortis_api/models/v1_transactions_cc_balance_inquiry_prev_trxn_request.rb +1125 -0
- data/lib/fortis_api/models/v1_transactions_cc_balance_inquiry_swiped_request.rb +1103 -0
- data/lib/fortis_api/models/v1_transactions_cc_balance_inquiry_terminal_request.rb +1106 -0
- data/lib/fortis_api/models/v1_transactions_cc_balance_inquiry_ticket_request.rb +1090 -0
- data/lib/fortis_api/models/v1_transactions_cc_balance_inquiry_token_request.rb +1121 -0
- data/lib/fortis_api/models/v1_transactions_cc_balance_inquiry_wallet_request.rb +1101 -0
- data/lib/fortis_api/models/v1_transactions_cc_force_keyed_request.rb +1171 -0
- data/lib/fortis_api/models/v1_transactions_cc_force_prev_trxn_request.rb +1146 -0
- data/lib/fortis_api/models/v1_transactions_cc_force_swiped_request.rb +1112 -0
- data/lib/fortis_api/models/v1_transactions_cc_force_ticket_request.rb +1112 -0
- data/lib/fortis_api/models/v1_transactions_cc_force_token_request.rb +1141 -0
- data/lib/fortis_api/models/v1_transactions_cc_force_wallet_request.rb +1123 -0
- data/lib/fortis_api/models/v1_transactions_cc_refund_keyed_request.rb +1180 -0
- data/lib/fortis_api/models/v1_transactions_cc_refund_prev_trxn_request.rb +1125 -0
- data/lib/fortis_api/models/v1_transactions_cc_refund_swiped_request.rb +1102 -0
- data/lib/fortis_api/models/v1_transactions_cc_refund_taptopay_request.rb +987 -0
- data/lib/fortis_api/models/v1_transactions_cc_refund_terminal_request.rb +1105 -0
- data/lib/fortis_api/models/v1_transactions_cc_refund_ticket_request.rb +1089 -0
- data/lib/fortis_api/models/v1_transactions_cc_refund_token_request.rb +1119 -0
- data/lib/fortis_api/models/v1_transactions_cc_refund_wallet_request.rb +1099 -0
- data/lib/fortis_api/models/v1_transactions_cc_sale_keyed_request.rb +1148 -0
- data/lib/fortis_api/models/v1_transactions_cc_sale_prev_trxn_request.rb +1125 -0
- data/lib/fortis_api/models/v1_transactions_cc_sale_swiped_request.rb +1102 -0
- data/lib/fortis_api/models/v1_transactions_cc_sale_taptopay_request.rb +974 -0
- data/lib/fortis_api/models/v1_transactions_cc_sale_terminal_request.rb +1105 -0
- data/lib/fortis_api/models/v1_transactions_cc_sale_ticket_request.rb +1089 -0
- data/lib/fortis_api/models/v1_transactions_cc_sale_token_request.rb +1119 -0
- data/lib/fortis_api/models/v1_transactions_cc_sale_wallet_request.rb +1099 -0
- data/lib/fortis_api/models/v1_transactions_ebt_voucher_clear_refund_keyed_request.rb +1159 -0
- data/lib/fortis_api/models/v1_transactions_ebt_voucher_clear_sale_keyed_request.rb +1159 -0
- data/lib/fortis_api/models/v1_transactions_level3_master_card_request.rb +71 -0
- data/lib/fortis_api/models/v1_transactions_level3_visa_request.rb +71 -0
- data/lib/fortis_api/models/v1_transactions_partial_reversal_request.rb +763 -0
- data/lib/fortis_api/models/v1_transactions_refund_request.rb +765 -0
- data/lib/fortis_api/models/v1_transactions_tip_adjust_request.rb +1049 -0
- data/lib/fortis_api/models/v1_transactions_void_request.rb +85 -0
- data/lib/fortis_api/models/v1_users_request.rb +430 -0
- data/lib/fortis_api/models/v1_users_request1.rb +440 -0
- data/lib/fortis_api/models/v1_wallet_provider_apple_pay_validate_merchant_request.rb +98 -0
- data/lib/fortis_api/models/v1_wallet_provider_merchant_details_request.rb +73 -0
- data/lib/fortis_api/models/v1_webhooks_batch_request.rb +255 -0
- data/lib/fortis_api/models/v1_webhooks_batch_request1.rb +267 -0
- data/lib/fortis_api/models/v1_webhooks_contact_request.rb +257 -0
- data/lib/fortis_api/models/v1_webhooks_contact_request1.rb +267 -0
- data/lib/fortis_api/models/v1_webhooks_transaction_request.rb +255 -0
- data/lib/fortis_api/models/v1_webhooks_transaction_request1.rb +267 -0
- data/lib/fortis_api/models/values4_enum.rb +36 -0
- data/lib/fortis_api/models/values50_enum.rb +36 -0
- data/lib/fortis_api/models/values51_enum.rb +40 -0
- data/lib/fortis_api/models/values58_enum.rb +36 -0
- data/lib/fortis_api/models/values5_enum.rb +36 -0
- data/lib/fortis_api/models/values6_enum.rb +36 -0
- data/lib/fortis_api/models/values7_enum.rb +36 -0
- data/lib/fortis_api/models/values99_enum.rb +36 -0
- data/lib/fortis_api/models/values_enum.rb +44 -0
- data/lib/fortis_api/models/wallet_provider_enum.rb +36 -0
- data/lib/fortis_api/models/wallet_type_enum.rb +55 -0
- data/lib/fortis_api/models/work_phone.rb +84 -0
- data/lib/fortis_api/utilities/date_time_helper.rb +11 -0
- data/lib/fortis_api/utilities/file_wrapper.rb +28 -0
- data/lib/fortis_api/utilities/union_type_lookup.rb +384 -0
- data/lib/fortis_api.rb +755 -0
- data/test/controllers/controller_test_base.rb +23 -0
- data/test/controllers/test_async_processing_controller.rb +43 -0
- data/test/controllers/test_batches_controller.rb +146 -0
- data/test/controllers/test_contacts_controller.rb +668 -0
- data/test/controllers/test_declined_recurring_transactions_controller.rb +150 -0
- data/test/controllers/test_device_terms_controller.rb +261 -0
- data/test/controllers/test_level3_data_controller.rb +91 -0
- data/test/controllers/test_locations_controller.rb +959 -0
- data/test/controllers/test_m3_ds_transactions_controller.rb +47 -0
- data/test/controllers/test_merchant_deposits_controller.rb +66 -0
- data/test/controllers/test_paylinks_controller.rb +185 -0
- data/test/controllers/test_payment_card_reader_token_controller.rb +43 -0
- data/test/controllers/test_quick_invoices_controller.rb +1218 -0
- data/test/controllers/test_recurring_controller.rb +1046 -0
- data/test/controllers/test_signatures_controller.rb +121 -0
- data/test/controllers/test_tags_controller.rb +155 -0
- data/test/controllers/test_terminals_controller.rb +242 -0
- data/test/controllers/test_tickets_controller.rb +94 -0
- data/test/controllers/test_tokens_controller.rb +641 -0
- data/test/controllers/test_transaction_ach_retries_controller.rb +427 -0
- data/test/controllers/test_transactions_read_controller.rb +867 -0
- data/test/controllers/test_transactions_updates_controller.rb +419 -0
- data/test/controllers/test_user_verifications_controller.rb +86 -0
- data/test/controllers/test_users_controller.rb +747 -0
- data/test/controllers/test_webhooks_controller.rb +51 -0
- data/test/http_response_catcher.rb +19 -0
- metadata +849 -0
|
@@ -0,0 +1,1119 @@
|
|
|
1
|
+
# fortis_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
module FortisApi
|
|
7
|
+
# V1TransactionsCcAuthOnlyTokenRequest Model.
|
|
8
|
+
class V1TransactionsCcAuthOnlyTokenRequest < BaseModel
|
|
9
|
+
SKIP = Object.new
|
|
10
|
+
private_constant :SKIP
|
|
11
|
+
|
|
12
|
+
# Additional amounts
|
|
13
|
+
# @return [Array[AdditionalAmount]]
|
|
14
|
+
attr_accessor :additional_amounts
|
|
15
|
+
|
|
16
|
+
# Billing Address Object
|
|
17
|
+
# @return [BillingAddress1]
|
|
18
|
+
attr_accessor :billing_address
|
|
19
|
+
|
|
20
|
+
# Checkin Date - The time difference between checkin_date and checkout_date
|
|
21
|
+
# must be less than or equal to 99 days. NOTE: if checkin_date is in the
|
|
22
|
+
# future, set the advance_deposit to 1
|
|
23
|
+
# >Required if merchant industry type is lodging.
|
|
24
|
+
# >
|
|
25
|
+
# @return [String]
|
|
26
|
+
attr_accessor :checkin_date
|
|
27
|
+
|
|
28
|
+
# Checkout Date - The time difference between checkin_date and checkout_date
|
|
29
|
+
# must be less than or equal to 99 days.
|
|
30
|
+
# >Required if merchant industry type is lodging.
|
|
31
|
+
# >
|
|
32
|
+
# @return [String]
|
|
33
|
+
attr_accessor :checkout_date
|
|
34
|
+
|
|
35
|
+
# Clerk or Employee Identifier
|
|
36
|
+
# @return [String]
|
|
37
|
+
attr_accessor :clerk_number
|
|
38
|
+
|
|
39
|
+
# This can be supplied in place of contact_id if you would like to use a
|
|
40
|
+
# contact for the transaction and are using your own custom api_id's to
|
|
41
|
+
# track contacts in the system.
|
|
42
|
+
# @return [String]
|
|
43
|
+
attr_accessor :contact_api_id
|
|
44
|
+
|
|
45
|
+
# If contact_id is provided, ensure it belongs to the same location as the
|
|
46
|
+
# transaction. You cannot move transaction across locations.
|
|
47
|
+
# @return [String]
|
|
48
|
+
attr_accessor :contact_id
|
|
49
|
+
|
|
50
|
+
# A field that allows custom JSON to be entered to store extra data.
|
|
51
|
+
# @return [Object]
|
|
52
|
+
attr_accessor :custom_data
|
|
53
|
+
|
|
54
|
+
# Can be used by Merchants to identify Contacts in our system by an ID from
|
|
55
|
+
# another system.
|
|
56
|
+
# @return [String]
|
|
57
|
+
attr_accessor :customer_id
|
|
58
|
+
|
|
59
|
+
# Description
|
|
60
|
+
# @return [String]
|
|
61
|
+
attr_accessor :description
|
|
62
|
+
|
|
63
|
+
# Identity Verification
|
|
64
|
+
# @return [IdentityVerification]
|
|
65
|
+
attr_accessor :identity_verification
|
|
66
|
+
|
|
67
|
+
# Possible values are '0', '1','2'
|
|
68
|
+
# @return [IiasIndEnum]
|
|
69
|
+
attr_accessor :iias_ind
|
|
70
|
+
|
|
71
|
+
# A base64 encoded string for the image. Used with Check21 ACH
|
|
72
|
+
# transactions.
|
|
73
|
+
# @return [String]
|
|
74
|
+
attr_accessor :image_front
|
|
75
|
+
|
|
76
|
+
# A base64 encoded string for the image. Used with Check21 ACH
|
|
77
|
+
# transactions.
|
|
78
|
+
# @return [String]
|
|
79
|
+
attr_accessor :image_back
|
|
80
|
+
|
|
81
|
+
# Flag that is allowed to be passed on card not present industries to
|
|
82
|
+
# signify the transaction is a fixed installment plan transaction.
|
|
83
|
+
# @return [TrueClass | FalseClass]
|
|
84
|
+
attr_accessor :installment
|
|
85
|
+
|
|
86
|
+
# If this is a fixed installment plan and installment field is being passed
|
|
87
|
+
# as 1, then this field must have a vlue of 1-999 specifying the current
|
|
88
|
+
# installment number that is running.
|
|
89
|
+
# @return [Integer]
|
|
90
|
+
attr_accessor :installment_number
|
|
91
|
+
|
|
92
|
+
# If this is a fixed installment plan and installment field is being passed
|
|
93
|
+
# as 1, then this field must have a vlue of 1-999 specifying the total
|
|
94
|
+
# number of installments on the plan. This number must be grater than or
|
|
95
|
+
# equal to installment_number.
|
|
96
|
+
# @return [Integer]
|
|
97
|
+
attr_accessor :installment_count
|
|
98
|
+
|
|
99
|
+
# Recurring Flag
|
|
100
|
+
# @return [RecurringFlagEnum]
|
|
101
|
+
attr_accessor :recurring_flag
|
|
102
|
+
|
|
103
|
+
# Installment Counter
|
|
104
|
+
# @return [Integer]
|
|
105
|
+
attr_accessor :installment_counter
|
|
106
|
+
|
|
107
|
+
# Installment Total
|
|
108
|
+
# @return [Integer]
|
|
109
|
+
attr_accessor :installment_total
|
|
110
|
+
|
|
111
|
+
# Subscription
|
|
112
|
+
# @return [TrueClass | FalseClass]
|
|
113
|
+
attr_accessor :subscription
|
|
114
|
+
|
|
115
|
+
# Standing Order
|
|
116
|
+
# @return [TrueClass | FalseClass]
|
|
117
|
+
attr_accessor :standing_order
|
|
118
|
+
|
|
119
|
+
# This can be supplied in place of location_id for the transaction if you
|
|
120
|
+
# are using your own custom api_id's for your locations.
|
|
121
|
+
# @return [String]
|
|
122
|
+
attr_accessor :location_api_id
|
|
123
|
+
|
|
124
|
+
# A valid Location Id to associate the transaction with.
|
|
125
|
+
# @return [String]
|
|
126
|
+
attr_accessor :location_id
|
|
127
|
+
|
|
128
|
+
# The Product's method (cc/ach) has to match the action. If not provided,
|
|
129
|
+
# the API will use the default configured for the Location.
|
|
130
|
+
# @return [String]
|
|
131
|
+
attr_accessor :product_transaction_id
|
|
132
|
+
|
|
133
|
+
# Advance Deposit
|
|
134
|
+
# @return [TrueClass | FalseClass]
|
|
135
|
+
attr_accessor :advance_deposit
|
|
136
|
+
|
|
137
|
+
# Used in Lodging
|
|
138
|
+
# @return [TrueClass | FalseClass]
|
|
139
|
+
attr_accessor :no_show
|
|
140
|
+
|
|
141
|
+
# If email is supplied then receipt will be emailed
|
|
142
|
+
# @return [String]
|
|
143
|
+
attr_accessor :notification_email_address
|
|
144
|
+
|
|
145
|
+
# Required for CC transactions , if merchant's deposit account's duplicate
|
|
146
|
+
# check per batch has 'order_number' field
|
|
147
|
+
# @return [String]
|
|
148
|
+
attr_accessor :order_number
|
|
149
|
+
|
|
150
|
+
# Purchase Order number
|
|
151
|
+
# @return [String]
|
|
152
|
+
attr_accessor :po_number
|
|
153
|
+
|
|
154
|
+
# Can be used to associate a transaction to a Quick Invoice. Quick Invoice
|
|
155
|
+
# transactions will have a value for this field automatically.
|
|
156
|
+
# @return [String]
|
|
157
|
+
attr_accessor :quick_invoice_id
|
|
158
|
+
|
|
159
|
+
# Flag that is allowed to be passed on card not present industries to
|
|
160
|
+
# signify the transaction is an ongoing recurring transaction. Possible
|
|
161
|
+
# values to send are 0 or 1. This field must be 0 or not present if
|
|
162
|
+
# installment is sent as 1.
|
|
163
|
+
# @return [TrueClass | FalseClass]
|
|
164
|
+
attr_accessor :recurring
|
|
165
|
+
|
|
166
|
+
# If this is an ongoing recurring and recurring field is being passed as 1,
|
|
167
|
+
# then this field must have a vlue of 1-999 specifying the current recurring
|
|
168
|
+
# number that is running.
|
|
169
|
+
# @return [Integer]
|
|
170
|
+
attr_accessor :recurring_number
|
|
171
|
+
|
|
172
|
+
# Used in Lodging
|
|
173
|
+
# @return [String]
|
|
174
|
+
attr_accessor :room_num
|
|
175
|
+
|
|
176
|
+
# Required if merchant industry type is lodging.
|
|
177
|
+
# @return [Integer]
|
|
178
|
+
attr_accessor :room_rate
|
|
179
|
+
|
|
180
|
+
# Specifies to save account to contacts profile if account_number/track_data
|
|
181
|
+
# is present with either contact_id or contact_api_id in params.
|
|
182
|
+
# @return [TrueClass | FalseClass]
|
|
183
|
+
attr_accessor :save_account
|
|
184
|
+
|
|
185
|
+
# If saving token while running a transaction, this will be the title of the
|
|
186
|
+
# token.
|
|
187
|
+
# @return [String]
|
|
188
|
+
attr_accessor :save_account_title
|
|
189
|
+
|
|
190
|
+
# This field is allowed and required for transactions that have a product
|
|
191
|
+
# where surcharge is configured. Use only integer numbers, so $10.99 will be
|
|
192
|
+
# 1099.
|
|
193
|
+
# @return [Integer]
|
|
194
|
+
attr_accessor :subtotal_amount
|
|
195
|
+
|
|
196
|
+
# This field is allowed and required for transactions that have a product
|
|
197
|
+
# where surcharge is configured. Use only integer numbers, so $10.99 will be
|
|
198
|
+
# 1099.
|
|
199
|
+
# @return [Integer]
|
|
200
|
+
attr_accessor :surcharge_amount
|
|
201
|
+
|
|
202
|
+
# Tags
|
|
203
|
+
# @return [Array[String]]
|
|
204
|
+
attr_accessor :tags
|
|
205
|
+
|
|
206
|
+
# Amount of Sales tax - If supplied, this amount should be included in the
|
|
207
|
+
# total transaction_amount field. Use only integer numbers, so $10.99 will
|
|
208
|
+
# be 1099.
|
|
209
|
+
# @return [Integer]
|
|
210
|
+
attr_accessor :tax
|
|
211
|
+
|
|
212
|
+
# Optional tip amount. Tip is not supported for lodging and ecommerce
|
|
213
|
+
# merchants. Use only integer numbers, so $10.99 will be 1099.
|
|
214
|
+
# @return [Integer]
|
|
215
|
+
attr_accessor :tip_amount
|
|
216
|
+
|
|
217
|
+
# Amount of the transaction. This should always be the desired settle amount
|
|
218
|
+
# of the transaction. Use only integer numbers, so $10.99 will be 1099.
|
|
219
|
+
# @return [Integer]
|
|
220
|
+
attr_accessor :transaction_amount
|
|
221
|
+
|
|
222
|
+
# Retained Amount of the transaction. This should always be less than
|
|
223
|
+
# transaction amount. Use only integer numbers, so $10.99 will be 1099
|
|
224
|
+
# @return [Integer]
|
|
225
|
+
attr_accessor :secondary_amount
|
|
226
|
+
|
|
227
|
+
# See api_id page for more details
|
|
228
|
+
# @return [String]
|
|
229
|
+
attr_accessor :transaction_api_id
|
|
230
|
+
|
|
231
|
+
# Custom field 1 for api users to store custom data
|
|
232
|
+
# @return [String]
|
|
233
|
+
attr_accessor :transaction_c1
|
|
234
|
+
|
|
235
|
+
# Custom field 2 for api users to store custom data
|
|
236
|
+
# @return [String]
|
|
237
|
+
attr_accessor :transaction_c2
|
|
238
|
+
|
|
239
|
+
# Custom field 3 for api users to store custom data
|
|
240
|
+
# @return [String]
|
|
241
|
+
attr_accessor :transaction_c3
|
|
242
|
+
|
|
243
|
+
# Bank Funded Only Override
|
|
244
|
+
# @return [TrueClass | FalseClass]
|
|
245
|
+
attr_accessor :bank_funded_only_override
|
|
246
|
+
|
|
247
|
+
# Allow Partial Authorization Override
|
|
248
|
+
# @return [TrueClass | FalseClass]
|
|
249
|
+
attr_accessor :allow_partial_authorization_override
|
|
250
|
+
|
|
251
|
+
# Auto Decline CVV Override
|
|
252
|
+
# @return [TrueClass | FalseClass]
|
|
253
|
+
attr_accessor :auto_decline_cvv_override
|
|
254
|
+
|
|
255
|
+
# Auto Decline Street Override
|
|
256
|
+
# @return [TrueClass | FalseClass]
|
|
257
|
+
attr_accessor :auto_decline_street_override
|
|
258
|
+
|
|
259
|
+
# Auto Decline Zip Override
|
|
260
|
+
# @return [TrueClass | FalseClass]
|
|
261
|
+
attr_accessor :auto_decline_zip_override
|
|
262
|
+
|
|
263
|
+
# EBT Type
|
|
264
|
+
# @return [EbtTypeEnum]
|
|
265
|
+
attr_accessor :ebt_type
|
|
266
|
+
|
|
267
|
+
# If the cardholder is present at the point of service
|
|
268
|
+
# @return [TrueClass | FalseClass]
|
|
269
|
+
attr_accessor :cardholder_present
|
|
270
|
+
|
|
271
|
+
# A POST only field to specify whether or not the card is present.
|
|
272
|
+
# >This field will be defaulted to '1' for all card present industries
|
|
273
|
+
# (retail, lodging, restaurant) and '0' for card not present industries
|
|
274
|
+
# (MOTO/e-commerce).
|
|
275
|
+
# For lodging, if the no_show flag is set to '1', this field will
|
|
276
|
+
# automatically be set to '0'.
|
|
277
|
+
# For transactions where account_vault_id is used, this filed will be set to
|
|
278
|
+
# '0'.
|
|
279
|
+
# >
|
|
280
|
+
# @return [TrueClass | FalseClass]
|
|
281
|
+
attr_accessor :card_present
|
|
282
|
+
|
|
283
|
+
# (ECOMM) The token authentication value associated with 3D secure
|
|
284
|
+
# transactions (Such as CAVV, UCAF auth data)
|
|
285
|
+
# @return [String]
|
|
286
|
+
attr_accessor :secure_auth_data
|
|
287
|
+
|
|
288
|
+
# (ECOMM) Secure Program Protocol Version
|
|
289
|
+
# @return [Integer]
|
|
290
|
+
attr_accessor :secure_protocol_version
|
|
291
|
+
|
|
292
|
+
# (ECOMM) Used for UCAF collection indicator or Discover Autentication type
|
|
293
|
+
# @return [Integer]
|
|
294
|
+
attr_accessor :secure_collection_indicator
|
|
295
|
+
|
|
296
|
+
# (ECOMM) Used to supply the Digital Payment Cryptogram obtained from a
|
|
297
|
+
# Digital Secure Remote Payment (DSRP) transaction
|
|
298
|
+
# @return [String]
|
|
299
|
+
attr_accessor :secure_cryptogram
|
|
300
|
+
|
|
301
|
+
# (ECOMM) Directory Server Transaction ID (Such as XID, TAVV)
|
|
302
|
+
# @return [String]
|
|
303
|
+
attr_accessor :secure_directory_server_transaction_id
|
|
304
|
+
|
|
305
|
+
# (ECOMM) This field is used to enter a merchant identifier such as the
|
|
306
|
+
# Merchant URL or reverse domain name as presented to the consumer during
|
|
307
|
+
# the checkout process for a Digital Secure Remote payment transaction
|
|
308
|
+
# @return [String]
|
|
309
|
+
attr_accessor :secure_ecomm_url
|
|
310
|
+
|
|
311
|
+
# If transaction was processed using a terminal, this field would contain
|
|
312
|
+
# the terminal's serial number
|
|
313
|
+
# @return [String]
|
|
314
|
+
attr_accessor :terminal_serial_number
|
|
315
|
+
|
|
316
|
+
# (ECOMM) Specify if the transaction is obtained by 3DSecure.
|
|
317
|
+
# @return [TrueClass | FalseClass]
|
|
318
|
+
attr_accessor :threedsecure
|
|
319
|
+
|
|
320
|
+
# 3DS Server Transaction ID. If this field is sent and 3DS authentication
|
|
321
|
+
# was done with Fortis, the 3DS fields
|
|
322
|
+
# secure_directory_server_transaction_id, secure_protocol_version, and
|
|
323
|
+
# secure_collection_indicator will be pre-populated.
|
|
324
|
+
# @return [String]
|
|
325
|
+
attr_accessor :three_ds_server_trans_id
|
|
326
|
+
|
|
327
|
+
# This value provides information from where the transaction was initialized
|
|
328
|
+
# (Such as In-App provider)
|
|
329
|
+
# >000 - Unknown wallet type (i.e., Discover PayButton)
|
|
330
|
+
# >
|
|
331
|
+
# >101 - MasterPass by MasterCard
|
|
332
|
+
# >
|
|
333
|
+
# >103 - Apple Pay
|
|
334
|
+
# >
|
|
335
|
+
# >216 - Google Pay
|
|
336
|
+
# >
|
|
337
|
+
# >217 - Samsung Pay
|
|
338
|
+
# >
|
|
339
|
+
# >327 - Merchant tokenization program
|
|
340
|
+
# >
|
|
341
|
+
# @return [WalletTypeEnum]
|
|
342
|
+
attr_accessor :wallet_type
|
|
343
|
+
|
|
344
|
+
# Clerk ID
|
|
345
|
+
# @return [String]
|
|
346
|
+
attr_accessor :clerk_id
|
|
347
|
+
|
|
348
|
+
# Voucher Number
|
|
349
|
+
# @return [String]
|
|
350
|
+
attr_accessor :voucher_number
|
|
351
|
+
|
|
352
|
+
# Initiation Type
|
|
353
|
+
# @return [InitiationTypeEnum]
|
|
354
|
+
attr_accessor :initiation_type
|
|
355
|
+
|
|
356
|
+
# If transaction is a bill payment
|
|
357
|
+
# @return [TrueClass | FalseClass]
|
|
358
|
+
attr_accessor :bill_payment
|
|
359
|
+
|
|
360
|
+
# Delay Charge
|
|
361
|
+
# @return [TrueClass | FalseClass]
|
|
362
|
+
attr_accessor :delay_charge
|
|
363
|
+
|
|
364
|
+
# Deferred Auth
|
|
365
|
+
# @return [TrueClass | FalseClass]
|
|
366
|
+
attr_accessor :deferred_auth
|
|
367
|
+
|
|
368
|
+
# Mini Bar
|
|
369
|
+
# @return [TrueClass | FalseClass]
|
|
370
|
+
attr_accessor :mini_bar
|
|
371
|
+
|
|
372
|
+
# EBT Food Eligible Amount
|
|
373
|
+
# @return [Integer]
|
|
374
|
+
attr_accessor :ebt_food_eligible_amount
|
|
375
|
+
|
|
376
|
+
# EBT Cash Eligible Amount
|
|
377
|
+
# @return [Integer]
|
|
378
|
+
attr_accessor :ebt_cash_eligible_amount
|
|
379
|
+
|
|
380
|
+
# DEPRECATED (Use token_id instead).
|
|
381
|
+
# @return [String]
|
|
382
|
+
attr_accessor :account_vault_id
|
|
383
|
+
|
|
384
|
+
# Required if account_number, track_data, micr_data is not provided.
|
|
385
|
+
# @return [String]
|
|
386
|
+
attr_accessor :token_id
|
|
387
|
+
|
|
388
|
+
# DEPRECATED (Use token_api_id instead).
|
|
389
|
+
# @return [String]
|
|
390
|
+
attr_accessor :account_vault_api_id
|
|
391
|
+
|
|
392
|
+
# This can be supplied in place of account_vault_id if you would like to use
|
|
393
|
+
# an token for the transaction and are using your own custom api_id's to
|
|
394
|
+
# track accountvaults in the system.
|
|
395
|
+
# @return [String]
|
|
396
|
+
attr_accessor :token_api_id
|
|
397
|
+
|
|
398
|
+
# Required for CC transactions if vt_require_cvv is true on
|
|
399
|
+
# producttransaction(Merchant Deposit Account).
|
|
400
|
+
# @return [String]
|
|
401
|
+
attr_accessor :cvv
|
|
402
|
+
|
|
403
|
+
# Required for CC transactions if vt_require_cvv is true on
|
|
404
|
+
# producttransaction(Merchant Deposit Account).
|
|
405
|
+
# @return [Joi]
|
|
406
|
+
attr_accessor :joi
|
|
407
|
+
|
|
408
|
+
# A mapping from model property names to API property names.
|
|
409
|
+
def self.names
|
|
410
|
+
@_hash = {} if @_hash.nil?
|
|
411
|
+
@_hash['additional_amounts'] = 'additional_amounts'
|
|
412
|
+
@_hash['billing_address'] = 'billing_address'
|
|
413
|
+
@_hash['checkin_date'] = 'checkin_date'
|
|
414
|
+
@_hash['checkout_date'] = 'checkout_date'
|
|
415
|
+
@_hash['clerk_number'] = 'clerk_number'
|
|
416
|
+
@_hash['contact_api_id'] = 'contact_api_id'
|
|
417
|
+
@_hash['contact_id'] = 'contact_id'
|
|
418
|
+
@_hash['custom_data'] = 'custom_data'
|
|
419
|
+
@_hash['customer_id'] = 'customer_id'
|
|
420
|
+
@_hash['description'] = 'description'
|
|
421
|
+
@_hash['identity_verification'] = 'identity_verification'
|
|
422
|
+
@_hash['iias_ind'] = 'iias_ind'
|
|
423
|
+
@_hash['image_front'] = 'image_front'
|
|
424
|
+
@_hash['image_back'] = 'image_back'
|
|
425
|
+
@_hash['installment'] = 'installment'
|
|
426
|
+
@_hash['installment_number'] = 'installment_number'
|
|
427
|
+
@_hash['installment_count'] = 'installment_count'
|
|
428
|
+
@_hash['recurring_flag'] = 'recurring_flag'
|
|
429
|
+
@_hash['installment_counter'] = 'installment_counter'
|
|
430
|
+
@_hash['installment_total'] = 'installment_total'
|
|
431
|
+
@_hash['subscription'] = 'subscription'
|
|
432
|
+
@_hash['standing_order'] = 'standing_order'
|
|
433
|
+
@_hash['location_api_id'] = 'location_api_id'
|
|
434
|
+
@_hash['location_id'] = 'location_id'
|
|
435
|
+
@_hash['product_transaction_id'] = 'product_transaction_id'
|
|
436
|
+
@_hash['advance_deposit'] = 'advance_deposit'
|
|
437
|
+
@_hash['no_show'] = 'no_show'
|
|
438
|
+
@_hash['notification_email_address'] = 'notification_email_address'
|
|
439
|
+
@_hash['order_number'] = 'order_number'
|
|
440
|
+
@_hash['po_number'] = 'po_number'
|
|
441
|
+
@_hash['quick_invoice_id'] = 'quick_invoice_id'
|
|
442
|
+
@_hash['recurring'] = 'recurring'
|
|
443
|
+
@_hash['recurring_number'] = 'recurring_number'
|
|
444
|
+
@_hash['room_num'] = 'room_num'
|
|
445
|
+
@_hash['room_rate'] = 'room_rate'
|
|
446
|
+
@_hash['save_account'] = 'save_account'
|
|
447
|
+
@_hash['save_account_title'] = 'save_account_title'
|
|
448
|
+
@_hash['subtotal_amount'] = 'subtotal_amount'
|
|
449
|
+
@_hash['surcharge_amount'] = 'surcharge_amount'
|
|
450
|
+
@_hash['tags'] = 'tags'
|
|
451
|
+
@_hash['tax'] = 'tax'
|
|
452
|
+
@_hash['tip_amount'] = 'tip_amount'
|
|
453
|
+
@_hash['transaction_amount'] = 'transaction_amount'
|
|
454
|
+
@_hash['secondary_amount'] = 'secondary_amount'
|
|
455
|
+
@_hash['transaction_api_id'] = 'transaction_api_id'
|
|
456
|
+
@_hash['transaction_c1'] = 'transaction_c1'
|
|
457
|
+
@_hash['transaction_c2'] = 'transaction_c2'
|
|
458
|
+
@_hash['transaction_c3'] = 'transaction_c3'
|
|
459
|
+
@_hash['bank_funded_only_override'] = 'bank_funded_only_override'
|
|
460
|
+
@_hash['allow_partial_authorization_override'] =
|
|
461
|
+
'allow_partial_authorization_override'
|
|
462
|
+
@_hash['auto_decline_cvv_override'] = 'auto_decline_cvv_override'
|
|
463
|
+
@_hash['auto_decline_street_override'] = 'auto_decline_street_override'
|
|
464
|
+
@_hash['auto_decline_zip_override'] = 'auto_decline_zip_override'
|
|
465
|
+
@_hash['ebt_type'] = 'ebt_type'
|
|
466
|
+
@_hash['cardholder_present'] = 'cardholder_present'
|
|
467
|
+
@_hash['card_present'] = 'card_present'
|
|
468
|
+
@_hash['secure_auth_data'] = 'secure_auth_data'
|
|
469
|
+
@_hash['secure_protocol_version'] = 'secure_protocol_version'
|
|
470
|
+
@_hash['secure_collection_indicator'] = 'secure_collection_indicator'
|
|
471
|
+
@_hash['secure_cryptogram'] = 'secure_cryptogram'
|
|
472
|
+
@_hash['secure_directory_server_transaction_id'] =
|
|
473
|
+
'secure_directory_server_transaction_id'
|
|
474
|
+
@_hash['secure_ecomm_url'] = 'secure_ecomm_url'
|
|
475
|
+
@_hash['terminal_serial_number'] = 'terminal_serial_number'
|
|
476
|
+
@_hash['threedsecure'] = 'threedsecure'
|
|
477
|
+
@_hash['three_ds_server_trans_id'] = 'three_ds_server_trans_id'
|
|
478
|
+
@_hash['wallet_type'] = 'wallet_type'
|
|
479
|
+
@_hash['clerk_id'] = 'clerk_id'
|
|
480
|
+
@_hash['voucher_number'] = 'voucher_number'
|
|
481
|
+
@_hash['initiation_type'] = 'initiation_type'
|
|
482
|
+
@_hash['bill_payment'] = 'bill_payment'
|
|
483
|
+
@_hash['delay_charge'] = 'delay_charge'
|
|
484
|
+
@_hash['deferred_auth'] = 'deferred_auth'
|
|
485
|
+
@_hash['mini_bar'] = 'mini_bar'
|
|
486
|
+
@_hash['ebt_food_eligible_amount'] = 'ebt_food_eligible_amount'
|
|
487
|
+
@_hash['ebt_cash_eligible_amount'] = 'ebt_cash_eligible_amount'
|
|
488
|
+
@_hash['account_vault_id'] = 'account_vault_id'
|
|
489
|
+
@_hash['token_id'] = 'token_id'
|
|
490
|
+
@_hash['account_vault_api_id'] = 'account_vault_api_id'
|
|
491
|
+
@_hash['token_api_id'] = 'token_api_id'
|
|
492
|
+
@_hash['cvv'] = 'cvv'
|
|
493
|
+
@_hash['joi'] = '_joi'
|
|
494
|
+
@_hash
|
|
495
|
+
end
|
|
496
|
+
|
|
497
|
+
# An array for optional fields
|
|
498
|
+
def self.optionals
|
|
499
|
+
%w[
|
|
500
|
+
additional_amounts
|
|
501
|
+
billing_address
|
|
502
|
+
checkin_date
|
|
503
|
+
checkout_date
|
|
504
|
+
clerk_number
|
|
505
|
+
contact_api_id
|
|
506
|
+
contact_id
|
|
507
|
+
custom_data
|
|
508
|
+
customer_id
|
|
509
|
+
description
|
|
510
|
+
identity_verification
|
|
511
|
+
iias_ind
|
|
512
|
+
image_front
|
|
513
|
+
image_back
|
|
514
|
+
installment
|
|
515
|
+
installment_number
|
|
516
|
+
installment_count
|
|
517
|
+
recurring_flag
|
|
518
|
+
installment_counter
|
|
519
|
+
installment_total
|
|
520
|
+
subscription
|
|
521
|
+
standing_order
|
|
522
|
+
location_api_id
|
|
523
|
+
location_id
|
|
524
|
+
product_transaction_id
|
|
525
|
+
advance_deposit
|
|
526
|
+
no_show
|
|
527
|
+
notification_email_address
|
|
528
|
+
order_number
|
|
529
|
+
po_number
|
|
530
|
+
quick_invoice_id
|
|
531
|
+
recurring
|
|
532
|
+
recurring_number
|
|
533
|
+
room_num
|
|
534
|
+
room_rate
|
|
535
|
+
save_account
|
|
536
|
+
save_account_title
|
|
537
|
+
subtotal_amount
|
|
538
|
+
surcharge_amount
|
|
539
|
+
tags
|
|
540
|
+
tax
|
|
541
|
+
tip_amount
|
|
542
|
+
secondary_amount
|
|
543
|
+
transaction_api_id
|
|
544
|
+
transaction_c1
|
|
545
|
+
transaction_c2
|
|
546
|
+
transaction_c3
|
|
547
|
+
bank_funded_only_override
|
|
548
|
+
allow_partial_authorization_override
|
|
549
|
+
auto_decline_cvv_override
|
|
550
|
+
auto_decline_street_override
|
|
551
|
+
auto_decline_zip_override
|
|
552
|
+
ebt_type
|
|
553
|
+
cardholder_present
|
|
554
|
+
card_present
|
|
555
|
+
secure_auth_data
|
|
556
|
+
secure_protocol_version
|
|
557
|
+
secure_collection_indicator
|
|
558
|
+
secure_cryptogram
|
|
559
|
+
secure_directory_server_transaction_id
|
|
560
|
+
secure_ecomm_url
|
|
561
|
+
terminal_serial_number
|
|
562
|
+
threedsecure
|
|
563
|
+
three_ds_server_trans_id
|
|
564
|
+
wallet_type
|
|
565
|
+
clerk_id
|
|
566
|
+
voucher_number
|
|
567
|
+
initiation_type
|
|
568
|
+
bill_payment
|
|
569
|
+
delay_charge
|
|
570
|
+
deferred_auth
|
|
571
|
+
mini_bar
|
|
572
|
+
ebt_food_eligible_amount
|
|
573
|
+
ebt_cash_eligible_amount
|
|
574
|
+
account_vault_id
|
|
575
|
+
token_id
|
|
576
|
+
account_vault_api_id
|
|
577
|
+
token_api_id
|
|
578
|
+
cvv
|
|
579
|
+
joi
|
|
580
|
+
]
|
|
581
|
+
end
|
|
582
|
+
|
|
583
|
+
# An array for nullable fields
|
|
584
|
+
def self.nullables
|
|
585
|
+
%w[
|
|
586
|
+
checkin_date
|
|
587
|
+
checkout_date
|
|
588
|
+
clerk_number
|
|
589
|
+
contact_api_id
|
|
590
|
+
contact_id
|
|
591
|
+
customer_id
|
|
592
|
+
description
|
|
593
|
+
iias_ind
|
|
594
|
+
image_front
|
|
595
|
+
image_back
|
|
596
|
+
installment_number
|
|
597
|
+
installment_count
|
|
598
|
+
recurring_flag
|
|
599
|
+
installment_counter
|
|
600
|
+
installment_total
|
|
601
|
+
location_api_id
|
|
602
|
+
location_id
|
|
603
|
+
product_transaction_id
|
|
604
|
+
notification_email_address
|
|
605
|
+
order_number
|
|
606
|
+
po_number
|
|
607
|
+
quick_invoice_id
|
|
608
|
+
recurring_number
|
|
609
|
+
room_num
|
|
610
|
+
room_rate
|
|
611
|
+
save_account_title
|
|
612
|
+
subtotal_amount
|
|
613
|
+
surcharge_amount
|
|
614
|
+
tags
|
|
615
|
+
tax
|
|
616
|
+
tip_amount
|
|
617
|
+
secondary_amount
|
|
618
|
+
transaction_api_id
|
|
619
|
+
transaction_c1
|
|
620
|
+
transaction_c2
|
|
621
|
+
transaction_c3
|
|
622
|
+
ebt_type
|
|
623
|
+
secure_auth_data
|
|
624
|
+
secure_protocol_version
|
|
625
|
+
secure_collection_indicator
|
|
626
|
+
secure_cryptogram
|
|
627
|
+
secure_directory_server_transaction_id
|
|
628
|
+
secure_ecomm_url
|
|
629
|
+
terminal_serial_number
|
|
630
|
+
three_ds_server_trans_id
|
|
631
|
+
wallet_type
|
|
632
|
+
clerk_id
|
|
633
|
+
voucher_number
|
|
634
|
+
initiation_type
|
|
635
|
+
ebt_food_eligible_amount
|
|
636
|
+
ebt_cash_eligible_amount
|
|
637
|
+
cvv
|
|
638
|
+
]
|
|
639
|
+
end
|
|
640
|
+
|
|
641
|
+
def initialize(transaction_amount = nil, additional_amounts = SKIP,
|
|
642
|
+
billing_address = SKIP, checkin_date = SKIP,
|
|
643
|
+
checkout_date = SKIP, clerk_number = SKIP,
|
|
644
|
+
contact_api_id = SKIP, contact_id = SKIP, custom_data = SKIP,
|
|
645
|
+
customer_id = SKIP, description = SKIP,
|
|
646
|
+
identity_verification = SKIP, iias_ind = SKIP,
|
|
647
|
+
image_front = SKIP, image_back = SKIP, installment = SKIP,
|
|
648
|
+
installment_number = SKIP, installment_count = SKIP,
|
|
649
|
+
recurring_flag = SKIP, installment_counter = SKIP,
|
|
650
|
+
installment_total = SKIP, subscription = SKIP,
|
|
651
|
+
standing_order = SKIP, location_api_id = SKIP,
|
|
652
|
+
location_id = SKIP, product_transaction_id = SKIP,
|
|
653
|
+
advance_deposit = SKIP, no_show = SKIP,
|
|
654
|
+
notification_email_address = SKIP, order_number = SKIP,
|
|
655
|
+
po_number = SKIP, quick_invoice_id = SKIP, recurring = SKIP,
|
|
656
|
+
recurring_number = SKIP, room_num = SKIP, room_rate = SKIP,
|
|
657
|
+
save_account = SKIP, save_account_title = SKIP,
|
|
658
|
+
subtotal_amount = SKIP, surcharge_amount = SKIP, tags = SKIP,
|
|
659
|
+
tax = SKIP, tip_amount = SKIP, secondary_amount = SKIP,
|
|
660
|
+
transaction_api_id = SKIP, transaction_c1 = SKIP,
|
|
661
|
+
transaction_c2 = SKIP, transaction_c3 = SKIP,
|
|
662
|
+
bank_funded_only_override = SKIP,
|
|
663
|
+
allow_partial_authorization_override = SKIP,
|
|
664
|
+
auto_decline_cvv_override = SKIP,
|
|
665
|
+
auto_decline_street_override = SKIP,
|
|
666
|
+
auto_decline_zip_override = SKIP, ebt_type = SKIP,
|
|
667
|
+
cardholder_present = SKIP, card_present = SKIP,
|
|
668
|
+
secure_auth_data = SKIP, secure_protocol_version = SKIP,
|
|
669
|
+
secure_collection_indicator = SKIP, secure_cryptogram = SKIP,
|
|
670
|
+
secure_directory_server_transaction_id = SKIP,
|
|
671
|
+
secure_ecomm_url = SKIP, terminal_serial_number = SKIP,
|
|
672
|
+
threedsecure = SKIP, three_ds_server_trans_id = SKIP,
|
|
673
|
+
wallet_type = SKIP, clerk_id = SKIP, voucher_number = SKIP,
|
|
674
|
+
initiation_type = SKIP, bill_payment = SKIP,
|
|
675
|
+
delay_charge = SKIP, deferred_auth = SKIP, mini_bar = SKIP,
|
|
676
|
+
ebt_food_eligible_amount = SKIP,
|
|
677
|
+
ebt_cash_eligible_amount = SKIP, account_vault_id = SKIP,
|
|
678
|
+
token_id = SKIP, account_vault_api_id = SKIP,
|
|
679
|
+
token_api_id = SKIP, cvv = SKIP, joi = SKIP,
|
|
680
|
+
additional_properties = {})
|
|
681
|
+
# Add additional model properties to the instance.
|
|
682
|
+
additional_properties.each do |_name, _value|
|
|
683
|
+
instance_variable_set("@#{_name}", _value)
|
|
684
|
+
end
|
|
685
|
+
|
|
686
|
+
@additional_amounts = additional_amounts unless additional_amounts == SKIP
|
|
687
|
+
@billing_address = billing_address unless billing_address == SKIP
|
|
688
|
+
@checkin_date = checkin_date unless checkin_date == SKIP
|
|
689
|
+
@checkout_date = checkout_date unless checkout_date == SKIP
|
|
690
|
+
@clerk_number = clerk_number unless clerk_number == SKIP
|
|
691
|
+
@contact_api_id = contact_api_id unless contact_api_id == SKIP
|
|
692
|
+
@contact_id = contact_id unless contact_id == SKIP
|
|
693
|
+
@custom_data = custom_data unless custom_data == SKIP
|
|
694
|
+
@customer_id = customer_id unless customer_id == SKIP
|
|
695
|
+
@description = description unless description == SKIP
|
|
696
|
+
@identity_verification = identity_verification unless identity_verification == SKIP
|
|
697
|
+
@iias_ind = iias_ind unless iias_ind == SKIP
|
|
698
|
+
@image_front = image_front unless image_front == SKIP
|
|
699
|
+
@image_back = image_back unless image_back == SKIP
|
|
700
|
+
@installment = installment unless installment == SKIP
|
|
701
|
+
@installment_number = installment_number unless installment_number == SKIP
|
|
702
|
+
@installment_count = installment_count unless installment_count == SKIP
|
|
703
|
+
@recurring_flag = recurring_flag unless recurring_flag == SKIP
|
|
704
|
+
@installment_counter = installment_counter unless installment_counter == SKIP
|
|
705
|
+
@installment_total = installment_total unless installment_total == SKIP
|
|
706
|
+
@subscription = subscription unless subscription == SKIP
|
|
707
|
+
@standing_order = standing_order unless standing_order == SKIP
|
|
708
|
+
@location_api_id = location_api_id unless location_api_id == SKIP
|
|
709
|
+
@location_id = location_id unless location_id == SKIP
|
|
710
|
+
@product_transaction_id = product_transaction_id unless product_transaction_id == SKIP
|
|
711
|
+
@advance_deposit = advance_deposit unless advance_deposit == SKIP
|
|
712
|
+
@no_show = no_show unless no_show == SKIP
|
|
713
|
+
unless notification_email_address == SKIP
|
|
714
|
+
@notification_email_address =
|
|
715
|
+
notification_email_address
|
|
716
|
+
end
|
|
717
|
+
@order_number = order_number unless order_number == SKIP
|
|
718
|
+
@po_number = po_number unless po_number == SKIP
|
|
719
|
+
@quick_invoice_id = quick_invoice_id unless quick_invoice_id == SKIP
|
|
720
|
+
@recurring = recurring unless recurring == SKIP
|
|
721
|
+
@recurring_number = recurring_number unless recurring_number == SKIP
|
|
722
|
+
@room_num = room_num unless room_num == SKIP
|
|
723
|
+
@room_rate = room_rate unless room_rate == SKIP
|
|
724
|
+
@save_account = save_account unless save_account == SKIP
|
|
725
|
+
@save_account_title = save_account_title unless save_account_title == SKIP
|
|
726
|
+
@subtotal_amount = subtotal_amount unless subtotal_amount == SKIP
|
|
727
|
+
@surcharge_amount = surcharge_amount unless surcharge_amount == SKIP
|
|
728
|
+
@tags = tags unless tags == SKIP
|
|
729
|
+
@tax = tax unless tax == SKIP
|
|
730
|
+
@tip_amount = tip_amount unless tip_amount == SKIP
|
|
731
|
+
@transaction_amount = transaction_amount
|
|
732
|
+
@secondary_amount = secondary_amount unless secondary_amount == SKIP
|
|
733
|
+
@transaction_api_id = transaction_api_id unless transaction_api_id == SKIP
|
|
734
|
+
@transaction_c1 = transaction_c1 unless transaction_c1 == SKIP
|
|
735
|
+
@transaction_c2 = transaction_c2 unless transaction_c2 == SKIP
|
|
736
|
+
@transaction_c3 = transaction_c3 unless transaction_c3 == SKIP
|
|
737
|
+
unless bank_funded_only_override == SKIP
|
|
738
|
+
@bank_funded_only_override =
|
|
739
|
+
bank_funded_only_override
|
|
740
|
+
end
|
|
741
|
+
unless allow_partial_authorization_override == SKIP
|
|
742
|
+
@allow_partial_authorization_override =
|
|
743
|
+
allow_partial_authorization_override
|
|
744
|
+
end
|
|
745
|
+
unless auto_decline_cvv_override == SKIP
|
|
746
|
+
@auto_decline_cvv_override =
|
|
747
|
+
auto_decline_cvv_override
|
|
748
|
+
end
|
|
749
|
+
unless auto_decline_street_override == SKIP
|
|
750
|
+
@auto_decline_street_override =
|
|
751
|
+
auto_decline_street_override
|
|
752
|
+
end
|
|
753
|
+
unless auto_decline_zip_override == SKIP
|
|
754
|
+
@auto_decline_zip_override =
|
|
755
|
+
auto_decline_zip_override
|
|
756
|
+
end
|
|
757
|
+
@ebt_type = ebt_type unless ebt_type == SKIP
|
|
758
|
+
@cardholder_present = cardholder_present unless cardholder_present == SKIP
|
|
759
|
+
@card_present = card_present unless card_present == SKIP
|
|
760
|
+
@secure_auth_data = secure_auth_data unless secure_auth_data == SKIP
|
|
761
|
+
@secure_protocol_version = secure_protocol_version unless secure_protocol_version == SKIP
|
|
762
|
+
unless secure_collection_indicator == SKIP
|
|
763
|
+
@secure_collection_indicator =
|
|
764
|
+
secure_collection_indicator
|
|
765
|
+
end
|
|
766
|
+
@secure_cryptogram = secure_cryptogram unless secure_cryptogram == SKIP
|
|
767
|
+
unless secure_directory_server_transaction_id == SKIP
|
|
768
|
+
@secure_directory_server_transaction_id =
|
|
769
|
+
secure_directory_server_transaction_id
|
|
770
|
+
end
|
|
771
|
+
@secure_ecomm_url = secure_ecomm_url unless secure_ecomm_url == SKIP
|
|
772
|
+
@terminal_serial_number = terminal_serial_number unless terminal_serial_number == SKIP
|
|
773
|
+
@threedsecure = threedsecure unless threedsecure == SKIP
|
|
774
|
+
@three_ds_server_trans_id = three_ds_server_trans_id unless three_ds_server_trans_id == SKIP
|
|
775
|
+
@wallet_type = wallet_type unless wallet_type == SKIP
|
|
776
|
+
@clerk_id = clerk_id unless clerk_id == SKIP
|
|
777
|
+
@voucher_number = voucher_number unless voucher_number == SKIP
|
|
778
|
+
@initiation_type = initiation_type unless initiation_type == SKIP
|
|
779
|
+
@bill_payment = bill_payment unless bill_payment == SKIP
|
|
780
|
+
@delay_charge = delay_charge unless delay_charge == SKIP
|
|
781
|
+
@deferred_auth = deferred_auth unless deferred_auth == SKIP
|
|
782
|
+
@mini_bar = mini_bar unless mini_bar == SKIP
|
|
783
|
+
@ebt_food_eligible_amount = ebt_food_eligible_amount unless ebt_food_eligible_amount == SKIP
|
|
784
|
+
@ebt_cash_eligible_amount = ebt_cash_eligible_amount unless ebt_cash_eligible_amount == SKIP
|
|
785
|
+
@account_vault_id = account_vault_id unless account_vault_id == SKIP
|
|
786
|
+
@token_id = token_id unless token_id == SKIP
|
|
787
|
+
@account_vault_api_id = account_vault_api_id unless account_vault_api_id == SKIP
|
|
788
|
+
@token_api_id = token_api_id unless token_api_id == SKIP
|
|
789
|
+
@cvv = cvv unless cvv == SKIP
|
|
790
|
+
@joi = joi unless joi == SKIP
|
|
791
|
+
end
|
|
792
|
+
|
|
793
|
+
# Creates an instance of the object from a hash.
|
|
794
|
+
def self.from_hash(hash)
|
|
795
|
+
return nil unless hash
|
|
796
|
+
|
|
797
|
+
# Extract variables from the hash.
|
|
798
|
+
transaction_amount =
|
|
799
|
+
hash.key?('transaction_amount') ? hash['transaction_amount'] : nil
|
|
800
|
+
# Parameter is an array, so we need to iterate through it
|
|
801
|
+
additional_amounts = nil
|
|
802
|
+
unless hash['additional_amounts'].nil?
|
|
803
|
+
additional_amounts = []
|
|
804
|
+
hash['additional_amounts'].each do |structure|
|
|
805
|
+
additional_amounts << (AdditionalAmount.from_hash(structure) if structure)
|
|
806
|
+
end
|
|
807
|
+
end
|
|
808
|
+
|
|
809
|
+
additional_amounts = SKIP unless hash.key?('additional_amounts')
|
|
810
|
+
billing_address = BillingAddress1.from_hash(hash['billing_address']) if
|
|
811
|
+
hash['billing_address']
|
|
812
|
+
checkin_date = hash.key?('checkin_date') ? hash['checkin_date'] : SKIP
|
|
813
|
+
checkout_date = hash.key?('checkout_date') ? hash['checkout_date'] : SKIP
|
|
814
|
+
clerk_number = hash.key?('clerk_number') ? hash['clerk_number'] : SKIP
|
|
815
|
+
contact_api_id =
|
|
816
|
+
hash.key?('contact_api_id') ? hash['contact_api_id'] : SKIP
|
|
817
|
+
contact_id = hash.key?('contact_id') ? hash['contact_id'] : SKIP
|
|
818
|
+
custom_data = hash.key?('custom_data') ? hash['custom_data'] : SKIP
|
|
819
|
+
customer_id = hash.key?('customer_id') ? hash['customer_id'] : SKIP
|
|
820
|
+
description = hash.key?('description') ? hash['description'] : SKIP
|
|
821
|
+
identity_verification = IdentityVerification.from_hash(hash['identity_verification']) if
|
|
822
|
+
hash['identity_verification']
|
|
823
|
+
iias_ind = hash.key?('iias_ind') ? hash['iias_ind'] : SKIP
|
|
824
|
+
image_front = hash.key?('image_front') ? hash['image_front'] : SKIP
|
|
825
|
+
image_back = hash.key?('image_back') ? hash['image_back'] : SKIP
|
|
826
|
+
installment = hash.key?('installment') ? hash['installment'] : SKIP
|
|
827
|
+
installment_number =
|
|
828
|
+
hash.key?('installment_number') ? hash['installment_number'] : SKIP
|
|
829
|
+
installment_count =
|
|
830
|
+
hash.key?('installment_count') ? hash['installment_count'] : SKIP
|
|
831
|
+
recurring_flag =
|
|
832
|
+
hash.key?('recurring_flag') ? hash['recurring_flag'] : SKIP
|
|
833
|
+
installment_counter =
|
|
834
|
+
hash.key?('installment_counter') ? hash['installment_counter'] : SKIP
|
|
835
|
+
installment_total =
|
|
836
|
+
hash.key?('installment_total') ? hash['installment_total'] : SKIP
|
|
837
|
+
subscription = hash.key?('subscription') ? hash['subscription'] : SKIP
|
|
838
|
+
standing_order =
|
|
839
|
+
hash.key?('standing_order') ? hash['standing_order'] : SKIP
|
|
840
|
+
location_api_id =
|
|
841
|
+
hash.key?('location_api_id') ? hash['location_api_id'] : SKIP
|
|
842
|
+
location_id = hash.key?('location_id') ? hash['location_id'] : SKIP
|
|
843
|
+
product_transaction_id =
|
|
844
|
+
hash.key?('product_transaction_id') ? hash['product_transaction_id'] : SKIP
|
|
845
|
+
advance_deposit =
|
|
846
|
+
hash.key?('advance_deposit') ? hash['advance_deposit'] : SKIP
|
|
847
|
+
no_show = hash.key?('no_show') ? hash['no_show'] : SKIP
|
|
848
|
+
notification_email_address =
|
|
849
|
+
hash.key?('notification_email_address') ? hash['notification_email_address'] : SKIP
|
|
850
|
+
order_number = hash.key?('order_number') ? hash['order_number'] : SKIP
|
|
851
|
+
po_number = hash.key?('po_number') ? hash['po_number'] : SKIP
|
|
852
|
+
quick_invoice_id =
|
|
853
|
+
hash.key?('quick_invoice_id') ? hash['quick_invoice_id'] : SKIP
|
|
854
|
+
recurring = hash.key?('recurring') ? hash['recurring'] : SKIP
|
|
855
|
+
recurring_number =
|
|
856
|
+
hash.key?('recurring_number') ? hash['recurring_number'] : SKIP
|
|
857
|
+
room_num = hash.key?('room_num') ? hash['room_num'] : SKIP
|
|
858
|
+
room_rate = hash.key?('room_rate') ? hash['room_rate'] : SKIP
|
|
859
|
+
save_account = hash.key?('save_account') ? hash['save_account'] : SKIP
|
|
860
|
+
save_account_title =
|
|
861
|
+
hash.key?('save_account_title') ? hash['save_account_title'] : SKIP
|
|
862
|
+
subtotal_amount =
|
|
863
|
+
hash.key?('subtotal_amount') ? hash['subtotal_amount'] : SKIP
|
|
864
|
+
surcharge_amount =
|
|
865
|
+
hash.key?('surcharge_amount') ? hash['surcharge_amount'] : SKIP
|
|
866
|
+
tags = hash.key?('tags') ? hash['tags'] : SKIP
|
|
867
|
+
tax = hash.key?('tax') ? hash['tax'] : SKIP
|
|
868
|
+
tip_amount = hash.key?('tip_amount') ? hash['tip_amount'] : SKIP
|
|
869
|
+
secondary_amount =
|
|
870
|
+
hash.key?('secondary_amount') ? hash['secondary_amount'] : SKIP
|
|
871
|
+
transaction_api_id =
|
|
872
|
+
hash.key?('transaction_api_id') ? hash['transaction_api_id'] : SKIP
|
|
873
|
+
transaction_c1 =
|
|
874
|
+
hash.key?('transaction_c1') ? hash['transaction_c1'] : SKIP
|
|
875
|
+
transaction_c2 =
|
|
876
|
+
hash.key?('transaction_c2') ? hash['transaction_c2'] : SKIP
|
|
877
|
+
transaction_c3 =
|
|
878
|
+
hash.key?('transaction_c3') ? hash['transaction_c3'] : SKIP
|
|
879
|
+
bank_funded_only_override =
|
|
880
|
+
hash.key?('bank_funded_only_override') ? hash['bank_funded_only_override'] : SKIP
|
|
881
|
+
allow_partial_authorization_override =
|
|
882
|
+
hash.key?('allow_partial_authorization_override') ? hash['allow_partial_authorization_override'] : SKIP
|
|
883
|
+
auto_decline_cvv_override =
|
|
884
|
+
hash.key?('auto_decline_cvv_override') ? hash['auto_decline_cvv_override'] : SKIP
|
|
885
|
+
auto_decline_street_override =
|
|
886
|
+
hash.key?('auto_decline_street_override') ? hash['auto_decline_street_override'] : SKIP
|
|
887
|
+
auto_decline_zip_override =
|
|
888
|
+
hash.key?('auto_decline_zip_override') ? hash['auto_decline_zip_override'] : SKIP
|
|
889
|
+
ebt_type = hash.key?('ebt_type') ? hash['ebt_type'] : SKIP
|
|
890
|
+
cardholder_present =
|
|
891
|
+
hash.key?('cardholder_present') ? hash['cardholder_present'] : SKIP
|
|
892
|
+
card_present = hash.key?('card_present') ? hash['card_present'] : SKIP
|
|
893
|
+
secure_auth_data =
|
|
894
|
+
hash.key?('secure_auth_data') ? hash['secure_auth_data'] : SKIP
|
|
895
|
+
secure_protocol_version =
|
|
896
|
+
hash.key?('secure_protocol_version') ? hash['secure_protocol_version'] : SKIP
|
|
897
|
+
secure_collection_indicator =
|
|
898
|
+
hash.key?('secure_collection_indicator') ? hash['secure_collection_indicator'] : SKIP
|
|
899
|
+
secure_cryptogram =
|
|
900
|
+
hash.key?('secure_cryptogram') ? hash['secure_cryptogram'] : SKIP
|
|
901
|
+
secure_directory_server_transaction_id =
|
|
902
|
+
hash.key?('secure_directory_server_transaction_id') ? hash['secure_directory_server_transaction_id'] : SKIP
|
|
903
|
+
secure_ecomm_url =
|
|
904
|
+
hash.key?('secure_ecomm_url') ? hash['secure_ecomm_url'] : SKIP
|
|
905
|
+
terminal_serial_number =
|
|
906
|
+
hash.key?('terminal_serial_number') ? hash['terminal_serial_number'] : SKIP
|
|
907
|
+
threedsecure = hash.key?('threedsecure') ? hash['threedsecure'] : SKIP
|
|
908
|
+
three_ds_server_trans_id =
|
|
909
|
+
hash.key?('three_ds_server_trans_id') ? hash['three_ds_server_trans_id'] : SKIP
|
|
910
|
+
wallet_type = hash.key?('wallet_type') ? hash['wallet_type'] : SKIP
|
|
911
|
+
clerk_id = hash.key?('clerk_id') ? hash['clerk_id'] : SKIP
|
|
912
|
+
voucher_number =
|
|
913
|
+
hash.key?('voucher_number') ? hash['voucher_number'] : SKIP
|
|
914
|
+
initiation_type =
|
|
915
|
+
hash.key?('initiation_type') ? hash['initiation_type'] : SKIP
|
|
916
|
+
bill_payment = hash.key?('bill_payment') ? hash['bill_payment'] : SKIP
|
|
917
|
+
delay_charge = hash.key?('delay_charge') ? hash['delay_charge'] : SKIP
|
|
918
|
+
deferred_auth = hash.key?('deferred_auth') ? hash['deferred_auth'] : SKIP
|
|
919
|
+
mini_bar = hash.key?('mini_bar') ? hash['mini_bar'] : SKIP
|
|
920
|
+
ebt_food_eligible_amount =
|
|
921
|
+
hash.key?('ebt_food_eligible_amount') ? hash['ebt_food_eligible_amount'] : SKIP
|
|
922
|
+
ebt_cash_eligible_amount =
|
|
923
|
+
hash.key?('ebt_cash_eligible_amount') ? hash['ebt_cash_eligible_amount'] : SKIP
|
|
924
|
+
account_vault_id =
|
|
925
|
+
hash.key?('account_vault_id') ? hash['account_vault_id'] : SKIP
|
|
926
|
+
token_id = hash.key?('token_id') ? hash['token_id'] : SKIP
|
|
927
|
+
account_vault_api_id =
|
|
928
|
+
hash.key?('account_vault_api_id') ? hash['account_vault_api_id'] : SKIP
|
|
929
|
+
token_api_id = hash.key?('token_api_id') ? hash['token_api_id'] : SKIP
|
|
930
|
+
cvv = hash.key?('cvv') ? hash['cvv'] : SKIP
|
|
931
|
+
joi = Joi.from_hash(hash['_joi']) if hash['_joi']
|
|
932
|
+
|
|
933
|
+
# Clean out expected properties from Hash.
|
|
934
|
+
additional_properties = hash.reject { |k, _| names.value?(k) }
|
|
935
|
+
|
|
936
|
+
# Create object from extracted values.
|
|
937
|
+
V1TransactionsCcAuthOnlyTokenRequest.new(transaction_amount,
|
|
938
|
+
additional_amounts,
|
|
939
|
+
billing_address,
|
|
940
|
+
checkin_date,
|
|
941
|
+
checkout_date,
|
|
942
|
+
clerk_number,
|
|
943
|
+
contact_api_id,
|
|
944
|
+
contact_id,
|
|
945
|
+
custom_data,
|
|
946
|
+
customer_id,
|
|
947
|
+
description,
|
|
948
|
+
identity_verification,
|
|
949
|
+
iias_ind,
|
|
950
|
+
image_front,
|
|
951
|
+
image_back,
|
|
952
|
+
installment,
|
|
953
|
+
installment_number,
|
|
954
|
+
installment_count,
|
|
955
|
+
recurring_flag,
|
|
956
|
+
installment_counter,
|
|
957
|
+
installment_total,
|
|
958
|
+
subscription,
|
|
959
|
+
standing_order,
|
|
960
|
+
location_api_id,
|
|
961
|
+
location_id,
|
|
962
|
+
product_transaction_id,
|
|
963
|
+
advance_deposit,
|
|
964
|
+
no_show,
|
|
965
|
+
notification_email_address,
|
|
966
|
+
order_number,
|
|
967
|
+
po_number,
|
|
968
|
+
quick_invoice_id,
|
|
969
|
+
recurring,
|
|
970
|
+
recurring_number,
|
|
971
|
+
room_num,
|
|
972
|
+
room_rate,
|
|
973
|
+
save_account,
|
|
974
|
+
save_account_title,
|
|
975
|
+
subtotal_amount,
|
|
976
|
+
surcharge_amount,
|
|
977
|
+
tags,
|
|
978
|
+
tax,
|
|
979
|
+
tip_amount,
|
|
980
|
+
secondary_amount,
|
|
981
|
+
transaction_api_id,
|
|
982
|
+
transaction_c1,
|
|
983
|
+
transaction_c2,
|
|
984
|
+
transaction_c3,
|
|
985
|
+
bank_funded_only_override,
|
|
986
|
+
allow_partial_authorization_override,
|
|
987
|
+
auto_decline_cvv_override,
|
|
988
|
+
auto_decline_street_override,
|
|
989
|
+
auto_decline_zip_override,
|
|
990
|
+
ebt_type,
|
|
991
|
+
cardholder_present,
|
|
992
|
+
card_present,
|
|
993
|
+
secure_auth_data,
|
|
994
|
+
secure_protocol_version,
|
|
995
|
+
secure_collection_indicator,
|
|
996
|
+
secure_cryptogram,
|
|
997
|
+
secure_directory_server_transaction_id,
|
|
998
|
+
secure_ecomm_url,
|
|
999
|
+
terminal_serial_number,
|
|
1000
|
+
threedsecure,
|
|
1001
|
+
three_ds_server_trans_id,
|
|
1002
|
+
wallet_type,
|
|
1003
|
+
clerk_id,
|
|
1004
|
+
voucher_number,
|
|
1005
|
+
initiation_type,
|
|
1006
|
+
bill_payment,
|
|
1007
|
+
delay_charge,
|
|
1008
|
+
deferred_auth,
|
|
1009
|
+
mini_bar,
|
|
1010
|
+
ebt_food_eligible_amount,
|
|
1011
|
+
ebt_cash_eligible_amount,
|
|
1012
|
+
account_vault_id,
|
|
1013
|
+
token_id,
|
|
1014
|
+
account_vault_api_id,
|
|
1015
|
+
token_api_id,
|
|
1016
|
+
cvv,
|
|
1017
|
+
joi,
|
|
1018
|
+
additional_properties)
|
|
1019
|
+
end
|
|
1020
|
+
|
|
1021
|
+
# Provides a human-readable string representation of the object.
|
|
1022
|
+
def to_s
|
|
1023
|
+
class_name = self.class.name.split('::').last
|
|
1024
|
+
"<#{class_name} additional_amounts: #{@additional_amounts}, billing_address:"\
|
|
1025
|
+
" #{@billing_address}, checkin_date: #{@checkin_date}, checkout_date: #{@checkout_date},"\
|
|
1026
|
+
" clerk_number: #{@clerk_number}, contact_api_id: #{@contact_api_id}, contact_id:"\
|
|
1027
|
+
" #{@contact_id}, custom_data: #{@custom_data}, customer_id: #{@customer_id}, description:"\
|
|
1028
|
+
" #{@description}, identity_verification: #{@identity_verification}, iias_ind: #{@iias_ind},"\
|
|
1029
|
+
" image_front: #{@image_front}, image_back: #{@image_back}, installment: #{@installment},"\
|
|
1030
|
+
" installment_number: #{@installment_number}, installment_count: #{@installment_count},"\
|
|
1031
|
+
" recurring_flag: #{@recurring_flag}, installment_counter: #{@installment_counter},"\
|
|
1032
|
+
" installment_total: #{@installment_total}, subscription: #{@subscription}, standing_order:"\
|
|
1033
|
+
" #{@standing_order}, location_api_id: #{@location_api_id}, location_id: #{@location_id},"\
|
|
1034
|
+
" product_transaction_id: #{@product_transaction_id}, advance_deposit: #{@advance_deposit},"\
|
|
1035
|
+
" no_show: #{@no_show}, notification_email_address: #{@notification_email_address},"\
|
|
1036
|
+
" order_number: #{@order_number}, po_number: #{@po_number}, quick_invoice_id:"\
|
|
1037
|
+
" #{@quick_invoice_id}, recurring: #{@recurring}, recurring_number: #{@recurring_number},"\
|
|
1038
|
+
" room_num: #{@room_num}, room_rate: #{@room_rate}, save_account: #{@save_account},"\
|
|
1039
|
+
" save_account_title: #{@save_account_title}, subtotal_amount: #{@subtotal_amount},"\
|
|
1040
|
+
" surcharge_amount: #{@surcharge_amount}, tags: #{@tags}, tax: #{@tax}, tip_amount:"\
|
|
1041
|
+
" #{@tip_amount}, transaction_amount: #{@transaction_amount}, secondary_amount:"\
|
|
1042
|
+
" #{@secondary_amount}, transaction_api_id: #{@transaction_api_id}, transaction_c1:"\
|
|
1043
|
+
" #{@transaction_c1}, transaction_c2: #{@transaction_c2}, transaction_c3:"\
|
|
1044
|
+
" #{@transaction_c3}, bank_funded_only_override: #{@bank_funded_only_override},"\
|
|
1045
|
+
" allow_partial_authorization_override: #{@allow_partial_authorization_override},"\
|
|
1046
|
+
" auto_decline_cvv_override: #{@auto_decline_cvv_override}, auto_decline_street_override:"\
|
|
1047
|
+
" #{@auto_decline_street_override}, auto_decline_zip_override:"\
|
|
1048
|
+
" #{@auto_decline_zip_override}, ebt_type: #{@ebt_type}, cardholder_present:"\
|
|
1049
|
+
" #{@cardholder_present}, card_present: #{@card_present}, secure_auth_data:"\
|
|
1050
|
+
" #{@secure_auth_data}, secure_protocol_version: #{@secure_protocol_version},"\
|
|
1051
|
+
" secure_collection_indicator: #{@secure_collection_indicator}, secure_cryptogram:"\
|
|
1052
|
+
" #{@secure_cryptogram}, secure_directory_server_transaction_id:"\
|
|
1053
|
+
" #{@secure_directory_server_transaction_id}, secure_ecomm_url: #{@secure_ecomm_url},"\
|
|
1054
|
+
" terminal_serial_number: #{@terminal_serial_number}, threedsecure: #{@threedsecure},"\
|
|
1055
|
+
" three_ds_server_trans_id: #{@three_ds_server_trans_id}, wallet_type: #{@wallet_type},"\
|
|
1056
|
+
" clerk_id: #{@clerk_id}, voucher_number: #{@voucher_number}, initiation_type:"\
|
|
1057
|
+
" #{@initiation_type}, bill_payment: #{@bill_payment}, delay_charge: #{@delay_charge},"\
|
|
1058
|
+
" deferred_auth: #{@deferred_auth}, mini_bar: #{@mini_bar}, ebt_food_eligible_amount:"\
|
|
1059
|
+
" #{@ebt_food_eligible_amount}, ebt_cash_eligible_amount: #{@ebt_cash_eligible_amount},"\
|
|
1060
|
+
" account_vault_id: #{@account_vault_id}, token_id: #{@token_id}, account_vault_api_id:"\
|
|
1061
|
+
" #{@account_vault_api_id}, token_api_id: #{@token_api_id}, cvv: #{@cvv}, joi: #{@joi},"\
|
|
1062
|
+
" additional_properties: #{get_additional_properties}>"
|
|
1063
|
+
end
|
|
1064
|
+
|
|
1065
|
+
# Provides a debugging-friendly string with detailed object information.
|
|
1066
|
+
def inspect
|
|
1067
|
+
class_name = self.class.name.split('::').last
|
|
1068
|
+
"<#{class_name} additional_amounts: #{@additional_amounts.inspect}, billing_address:"\
|
|
1069
|
+
" #{@billing_address.inspect}, checkin_date: #{@checkin_date.inspect}, checkout_date:"\
|
|
1070
|
+
" #{@checkout_date.inspect}, clerk_number: #{@clerk_number.inspect}, contact_api_id:"\
|
|
1071
|
+
" #{@contact_api_id.inspect}, contact_id: #{@contact_id.inspect}, custom_data:"\
|
|
1072
|
+
" #{@custom_data.inspect}, customer_id: #{@customer_id.inspect}, description:"\
|
|
1073
|
+
" #{@description.inspect}, identity_verification: #{@identity_verification.inspect},"\
|
|
1074
|
+
" iias_ind: #{@iias_ind.inspect}, image_front: #{@image_front.inspect}, image_back:"\
|
|
1075
|
+
" #{@image_back.inspect}, installment: #{@installment.inspect}, installment_number:"\
|
|
1076
|
+
" #{@installment_number.inspect}, installment_count: #{@installment_count.inspect},"\
|
|
1077
|
+
" recurring_flag: #{@recurring_flag.inspect}, installment_counter:"\
|
|
1078
|
+
" #{@installment_counter.inspect}, installment_total: #{@installment_total.inspect},"\
|
|
1079
|
+
" subscription: #{@subscription.inspect}, standing_order: #{@standing_order.inspect},"\
|
|
1080
|
+
" location_api_id: #{@location_api_id.inspect}, location_id: #{@location_id.inspect},"\
|
|
1081
|
+
" product_transaction_id: #{@product_transaction_id.inspect}, advance_deposit:"\
|
|
1082
|
+
" #{@advance_deposit.inspect}, no_show: #{@no_show.inspect}, notification_email_address:"\
|
|
1083
|
+
" #{@notification_email_address.inspect}, order_number: #{@order_number.inspect}, po_number:"\
|
|
1084
|
+
" #{@po_number.inspect}, quick_invoice_id: #{@quick_invoice_id.inspect}, recurring:"\
|
|
1085
|
+
" #{@recurring.inspect}, recurring_number: #{@recurring_number.inspect}, room_num:"\
|
|
1086
|
+
" #{@room_num.inspect}, room_rate: #{@room_rate.inspect}, save_account:"\
|
|
1087
|
+
" #{@save_account.inspect}, save_account_title: #{@save_account_title.inspect},"\
|
|
1088
|
+
" subtotal_amount: #{@subtotal_amount.inspect}, surcharge_amount:"\
|
|
1089
|
+
" #{@surcharge_amount.inspect}, tags: #{@tags.inspect}, tax: #{@tax.inspect}, tip_amount:"\
|
|
1090
|
+
" #{@tip_amount.inspect}, transaction_amount: #{@transaction_amount.inspect},"\
|
|
1091
|
+
" secondary_amount: #{@secondary_amount.inspect}, transaction_api_id:"\
|
|
1092
|
+
" #{@transaction_api_id.inspect}, transaction_c1: #{@transaction_c1.inspect},"\
|
|
1093
|
+
" transaction_c2: #{@transaction_c2.inspect}, transaction_c3: #{@transaction_c3.inspect},"\
|
|
1094
|
+
" bank_funded_only_override: #{@bank_funded_only_override.inspect},"\
|
|
1095
|
+
" allow_partial_authorization_override: #{@allow_partial_authorization_override.inspect},"\
|
|
1096
|
+
" auto_decline_cvv_override: #{@auto_decline_cvv_override.inspect},"\
|
|
1097
|
+
" auto_decline_street_override: #{@auto_decline_street_override.inspect},"\
|
|
1098
|
+
" auto_decline_zip_override: #{@auto_decline_zip_override.inspect}, ebt_type:"\
|
|
1099
|
+
" #{@ebt_type.inspect}, cardholder_present: #{@cardholder_present.inspect}, card_present:"\
|
|
1100
|
+
" #{@card_present.inspect}, secure_auth_data: #{@secure_auth_data.inspect},"\
|
|
1101
|
+
" secure_protocol_version: #{@secure_protocol_version.inspect}, secure_collection_indicator:"\
|
|
1102
|
+
" #{@secure_collection_indicator.inspect}, secure_cryptogram: #{@secure_cryptogram.inspect},"\
|
|
1103
|
+
' secure_directory_server_transaction_id:'\
|
|
1104
|
+
" #{@secure_directory_server_transaction_id.inspect}, secure_ecomm_url:"\
|
|
1105
|
+
" #{@secure_ecomm_url.inspect}, terminal_serial_number: #{@terminal_serial_number.inspect},"\
|
|
1106
|
+
" threedsecure: #{@threedsecure.inspect}, three_ds_server_trans_id:"\
|
|
1107
|
+
" #{@three_ds_server_trans_id.inspect}, wallet_type: #{@wallet_type.inspect}, clerk_id:"\
|
|
1108
|
+
" #{@clerk_id.inspect}, voucher_number: #{@voucher_number.inspect}, initiation_type:"\
|
|
1109
|
+
" #{@initiation_type.inspect}, bill_payment: #{@bill_payment.inspect}, delay_charge:"\
|
|
1110
|
+
" #{@delay_charge.inspect}, deferred_auth: #{@deferred_auth.inspect}, mini_bar:"\
|
|
1111
|
+
" #{@mini_bar.inspect}, ebt_food_eligible_amount: #{@ebt_food_eligible_amount.inspect},"\
|
|
1112
|
+
" ebt_cash_eligible_amount: #{@ebt_cash_eligible_amount.inspect}, account_vault_id:"\
|
|
1113
|
+
" #{@account_vault_id.inspect}, token_id: #{@token_id.inspect}, account_vault_api_id:"\
|
|
1114
|
+
" #{@account_vault_api_id.inspect}, token_api_id: #{@token_api_id.inspect}, cvv:"\
|
|
1115
|
+
" #{@cvv.inspect}, joi: #{@joi.inspect}, additional_properties:"\
|
|
1116
|
+
" #{get_additional_properties}>"
|
|
1117
|
+
end
|
|
1118
|
+
end
|
|
1119
|
+
end
|