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,1150 @@
|
|
|
1
|
+
# fortis_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
module FortisApi
|
|
7
|
+
# V1TransactionsCcBalanceInquiryKeyedRequest Model.
|
|
8
|
+
class V1TransactionsCcBalanceInquiryKeyedRequest < 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
|
+
# For CC, this is the 'Name (as it appears) on Card'. For ACH, this is the
|
|
381
|
+
# 'Name on Account'.
|
|
382
|
+
# >Required for ACH transactions if account_vault_id is not provided. For CC
|
|
383
|
+
# transactions that are run through a terminal, this field may be
|
|
384
|
+
# overwritten by data acquired from the credit card track data.
|
|
385
|
+
# >
|
|
386
|
+
# @return [String]
|
|
387
|
+
attr_accessor :account_holder_name
|
|
388
|
+
|
|
389
|
+
# For CC transactions, a credit card number. For ACH transactions, a bank
|
|
390
|
+
# account number.
|
|
391
|
+
# >String lengths are conditional, CC should be 13-19 and ACH should be
|
|
392
|
+
# 4-19. Required if account_vault_id , track_data, or micr_data is not
|
|
393
|
+
# provided.
|
|
394
|
+
# >
|
|
395
|
+
# @return [String]
|
|
396
|
+
attr_accessor :account_number
|
|
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
|
+
# Entry Mode - See entry mode section for more detail
|
|
404
|
+
# @return [EntryModeIdEnum]
|
|
405
|
+
attr_accessor :entry_mode_id
|
|
406
|
+
|
|
407
|
+
# Required for CC. The Expiration Date for the credit card. (MMYY format).
|
|
408
|
+
# @return [String]
|
|
409
|
+
attr_accessor :exp_date
|
|
410
|
+
|
|
411
|
+
# Track Data from a magnetic card swipe.
|
|
412
|
+
# @return [String]
|
|
413
|
+
attr_accessor :track_data
|
|
414
|
+
|
|
415
|
+
# Pin
|
|
416
|
+
# @return [String]
|
|
417
|
+
attr_accessor :pin
|
|
418
|
+
|
|
419
|
+
# KSN (Key Serial Number)
|
|
420
|
+
# @return [String]
|
|
421
|
+
attr_accessor :ksn
|
|
422
|
+
|
|
423
|
+
# A mapping from model property names to API property names.
|
|
424
|
+
def self.names
|
|
425
|
+
@_hash = {} if @_hash.nil?
|
|
426
|
+
@_hash['additional_amounts'] = 'additional_amounts'
|
|
427
|
+
@_hash['billing_address'] = 'billing_address'
|
|
428
|
+
@_hash['checkin_date'] = 'checkin_date'
|
|
429
|
+
@_hash['checkout_date'] = 'checkout_date'
|
|
430
|
+
@_hash['clerk_number'] = 'clerk_number'
|
|
431
|
+
@_hash['contact_api_id'] = 'contact_api_id'
|
|
432
|
+
@_hash['contact_id'] = 'contact_id'
|
|
433
|
+
@_hash['custom_data'] = 'custom_data'
|
|
434
|
+
@_hash['customer_id'] = 'customer_id'
|
|
435
|
+
@_hash['description'] = 'description'
|
|
436
|
+
@_hash['identity_verification'] = 'identity_verification'
|
|
437
|
+
@_hash['iias_ind'] = 'iias_ind'
|
|
438
|
+
@_hash['image_front'] = 'image_front'
|
|
439
|
+
@_hash['image_back'] = 'image_back'
|
|
440
|
+
@_hash['installment'] = 'installment'
|
|
441
|
+
@_hash['installment_number'] = 'installment_number'
|
|
442
|
+
@_hash['installment_count'] = 'installment_count'
|
|
443
|
+
@_hash['recurring_flag'] = 'recurring_flag'
|
|
444
|
+
@_hash['installment_counter'] = 'installment_counter'
|
|
445
|
+
@_hash['installment_total'] = 'installment_total'
|
|
446
|
+
@_hash['subscription'] = 'subscription'
|
|
447
|
+
@_hash['standing_order'] = 'standing_order'
|
|
448
|
+
@_hash['location_api_id'] = 'location_api_id'
|
|
449
|
+
@_hash['location_id'] = 'location_id'
|
|
450
|
+
@_hash['product_transaction_id'] = 'product_transaction_id'
|
|
451
|
+
@_hash['advance_deposit'] = 'advance_deposit'
|
|
452
|
+
@_hash['no_show'] = 'no_show'
|
|
453
|
+
@_hash['notification_email_address'] = 'notification_email_address'
|
|
454
|
+
@_hash['order_number'] = 'order_number'
|
|
455
|
+
@_hash['po_number'] = 'po_number'
|
|
456
|
+
@_hash['quick_invoice_id'] = 'quick_invoice_id'
|
|
457
|
+
@_hash['recurring'] = 'recurring'
|
|
458
|
+
@_hash['recurring_number'] = 'recurring_number'
|
|
459
|
+
@_hash['room_num'] = 'room_num'
|
|
460
|
+
@_hash['room_rate'] = 'room_rate'
|
|
461
|
+
@_hash['save_account'] = 'save_account'
|
|
462
|
+
@_hash['save_account_title'] = 'save_account_title'
|
|
463
|
+
@_hash['subtotal_amount'] = 'subtotal_amount'
|
|
464
|
+
@_hash['surcharge_amount'] = 'surcharge_amount'
|
|
465
|
+
@_hash['tags'] = 'tags'
|
|
466
|
+
@_hash['tax'] = 'tax'
|
|
467
|
+
@_hash['tip_amount'] = 'tip_amount'
|
|
468
|
+
@_hash['transaction_amount'] = 'transaction_amount'
|
|
469
|
+
@_hash['secondary_amount'] = 'secondary_amount'
|
|
470
|
+
@_hash['transaction_api_id'] = 'transaction_api_id'
|
|
471
|
+
@_hash['transaction_c1'] = 'transaction_c1'
|
|
472
|
+
@_hash['transaction_c2'] = 'transaction_c2'
|
|
473
|
+
@_hash['transaction_c3'] = 'transaction_c3'
|
|
474
|
+
@_hash['bank_funded_only_override'] = 'bank_funded_only_override'
|
|
475
|
+
@_hash['allow_partial_authorization_override'] =
|
|
476
|
+
'allow_partial_authorization_override'
|
|
477
|
+
@_hash['auto_decline_cvv_override'] = 'auto_decline_cvv_override'
|
|
478
|
+
@_hash['auto_decline_street_override'] = 'auto_decline_street_override'
|
|
479
|
+
@_hash['auto_decline_zip_override'] = 'auto_decline_zip_override'
|
|
480
|
+
@_hash['ebt_type'] = 'ebt_type'
|
|
481
|
+
@_hash['cardholder_present'] = 'cardholder_present'
|
|
482
|
+
@_hash['card_present'] = 'card_present'
|
|
483
|
+
@_hash['secure_auth_data'] = 'secure_auth_data'
|
|
484
|
+
@_hash['secure_protocol_version'] = 'secure_protocol_version'
|
|
485
|
+
@_hash['secure_collection_indicator'] = 'secure_collection_indicator'
|
|
486
|
+
@_hash['secure_cryptogram'] = 'secure_cryptogram'
|
|
487
|
+
@_hash['secure_directory_server_transaction_id'] =
|
|
488
|
+
'secure_directory_server_transaction_id'
|
|
489
|
+
@_hash['secure_ecomm_url'] = 'secure_ecomm_url'
|
|
490
|
+
@_hash['terminal_serial_number'] = 'terminal_serial_number'
|
|
491
|
+
@_hash['threedsecure'] = 'threedsecure'
|
|
492
|
+
@_hash['three_ds_server_trans_id'] = 'three_ds_server_trans_id'
|
|
493
|
+
@_hash['wallet_type'] = 'wallet_type'
|
|
494
|
+
@_hash['clerk_id'] = 'clerk_id'
|
|
495
|
+
@_hash['voucher_number'] = 'voucher_number'
|
|
496
|
+
@_hash['initiation_type'] = 'initiation_type'
|
|
497
|
+
@_hash['bill_payment'] = 'bill_payment'
|
|
498
|
+
@_hash['delay_charge'] = 'delay_charge'
|
|
499
|
+
@_hash['deferred_auth'] = 'deferred_auth'
|
|
500
|
+
@_hash['mini_bar'] = 'mini_bar'
|
|
501
|
+
@_hash['ebt_food_eligible_amount'] = 'ebt_food_eligible_amount'
|
|
502
|
+
@_hash['ebt_cash_eligible_amount'] = 'ebt_cash_eligible_amount'
|
|
503
|
+
@_hash['account_holder_name'] = 'account_holder_name'
|
|
504
|
+
@_hash['account_number'] = 'account_number'
|
|
505
|
+
@_hash['cvv'] = 'cvv'
|
|
506
|
+
@_hash['entry_mode_id'] = 'entry_mode_id'
|
|
507
|
+
@_hash['exp_date'] = 'exp_date'
|
|
508
|
+
@_hash['track_data'] = 'track_data'
|
|
509
|
+
@_hash['pin'] = 'pin'
|
|
510
|
+
@_hash['ksn'] = 'ksn'
|
|
511
|
+
@_hash
|
|
512
|
+
end
|
|
513
|
+
|
|
514
|
+
# An array for optional fields
|
|
515
|
+
def self.optionals
|
|
516
|
+
%w[
|
|
517
|
+
additional_amounts
|
|
518
|
+
billing_address
|
|
519
|
+
checkin_date
|
|
520
|
+
checkout_date
|
|
521
|
+
clerk_number
|
|
522
|
+
contact_api_id
|
|
523
|
+
contact_id
|
|
524
|
+
custom_data
|
|
525
|
+
customer_id
|
|
526
|
+
description
|
|
527
|
+
identity_verification
|
|
528
|
+
iias_ind
|
|
529
|
+
image_front
|
|
530
|
+
image_back
|
|
531
|
+
installment
|
|
532
|
+
installment_number
|
|
533
|
+
installment_count
|
|
534
|
+
recurring_flag
|
|
535
|
+
installment_counter
|
|
536
|
+
installment_total
|
|
537
|
+
subscription
|
|
538
|
+
standing_order
|
|
539
|
+
location_api_id
|
|
540
|
+
location_id
|
|
541
|
+
product_transaction_id
|
|
542
|
+
advance_deposit
|
|
543
|
+
no_show
|
|
544
|
+
notification_email_address
|
|
545
|
+
order_number
|
|
546
|
+
po_number
|
|
547
|
+
quick_invoice_id
|
|
548
|
+
recurring
|
|
549
|
+
recurring_number
|
|
550
|
+
room_num
|
|
551
|
+
room_rate
|
|
552
|
+
save_account
|
|
553
|
+
save_account_title
|
|
554
|
+
subtotal_amount
|
|
555
|
+
surcharge_amount
|
|
556
|
+
tags
|
|
557
|
+
tax
|
|
558
|
+
tip_amount
|
|
559
|
+
transaction_amount
|
|
560
|
+
secondary_amount
|
|
561
|
+
transaction_api_id
|
|
562
|
+
transaction_c1
|
|
563
|
+
transaction_c2
|
|
564
|
+
transaction_c3
|
|
565
|
+
bank_funded_only_override
|
|
566
|
+
allow_partial_authorization_override
|
|
567
|
+
auto_decline_cvv_override
|
|
568
|
+
auto_decline_street_override
|
|
569
|
+
auto_decline_zip_override
|
|
570
|
+
ebt_type
|
|
571
|
+
cardholder_present
|
|
572
|
+
card_present
|
|
573
|
+
secure_auth_data
|
|
574
|
+
secure_protocol_version
|
|
575
|
+
secure_collection_indicator
|
|
576
|
+
secure_cryptogram
|
|
577
|
+
secure_directory_server_transaction_id
|
|
578
|
+
secure_ecomm_url
|
|
579
|
+
terminal_serial_number
|
|
580
|
+
threedsecure
|
|
581
|
+
three_ds_server_trans_id
|
|
582
|
+
wallet_type
|
|
583
|
+
clerk_id
|
|
584
|
+
voucher_number
|
|
585
|
+
initiation_type
|
|
586
|
+
bill_payment
|
|
587
|
+
delay_charge
|
|
588
|
+
deferred_auth
|
|
589
|
+
mini_bar
|
|
590
|
+
ebt_food_eligible_amount
|
|
591
|
+
ebt_cash_eligible_amount
|
|
592
|
+
account_holder_name
|
|
593
|
+
cvv
|
|
594
|
+
entry_mode_id
|
|
595
|
+
track_data
|
|
596
|
+
pin
|
|
597
|
+
ksn
|
|
598
|
+
]
|
|
599
|
+
end
|
|
600
|
+
|
|
601
|
+
# An array for nullable fields
|
|
602
|
+
def self.nullables
|
|
603
|
+
%w[
|
|
604
|
+
checkin_date
|
|
605
|
+
checkout_date
|
|
606
|
+
clerk_number
|
|
607
|
+
contact_api_id
|
|
608
|
+
contact_id
|
|
609
|
+
customer_id
|
|
610
|
+
description
|
|
611
|
+
iias_ind
|
|
612
|
+
image_front
|
|
613
|
+
image_back
|
|
614
|
+
installment_number
|
|
615
|
+
installment_count
|
|
616
|
+
recurring_flag
|
|
617
|
+
installment_counter
|
|
618
|
+
installment_total
|
|
619
|
+
location_api_id
|
|
620
|
+
location_id
|
|
621
|
+
product_transaction_id
|
|
622
|
+
notification_email_address
|
|
623
|
+
order_number
|
|
624
|
+
po_number
|
|
625
|
+
quick_invoice_id
|
|
626
|
+
recurring_number
|
|
627
|
+
room_num
|
|
628
|
+
room_rate
|
|
629
|
+
save_account_title
|
|
630
|
+
subtotal_amount
|
|
631
|
+
surcharge_amount
|
|
632
|
+
tags
|
|
633
|
+
tax
|
|
634
|
+
tip_amount
|
|
635
|
+
transaction_amount
|
|
636
|
+
secondary_amount
|
|
637
|
+
transaction_api_id
|
|
638
|
+
transaction_c1
|
|
639
|
+
transaction_c2
|
|
640
|
+
transaction_c3
|
|
641
|
+
ebt_type
|
|
642
|
+
secure_auth_data
|
|
643
|
+
secure_protocol_version
|
|
644
|
+
secure_collection_indicator
|
|
645
|
+
secure_cryptogram
|
|
646
|
+
secure_directory_server_transaction_id
|
|
647
|
+
secure_ecomm_url
|
|
648
|
+
terminal_serial_number
|
|
649
|
+
three_ds_server_trans_id
|
|
650
|
+
wallet_type
|
|
651
|
+
clerk_id
|
|
652
|
+
voucher_number
|
|
653
|
+
initiation_type
|
|
654
|
+
ebt_food_eligible_amount
|
|
655
|
+
ebt_cash_eligible_amount
|
|
656
|
+
account_holder_name
|
|
657
|
+
cvv
|
|
658
|
+
entry_mode_id
|
|
659
|
+
track_data
|
|
660
|
+
pin
|
|
661
|
+
ksn
|
|
662
|
+
]
|
|
663
|
+
end
|
|
664
|
+
|
|
665
|
+
def initialize(account_number = nil, exp_date = nil,
|
|
666
|
+
additional_amounts = SKIP, billing_address = SKIP,
|
|
667
|
+
checkin_date = SKIP, checkout_date = SKIP,
|
|
668
|
+
clerk_number = SKIP, contact_api_id = SKIP,
|
|
669
|
+
contact_id = SKIP, custom_data = SKIP, customer_id = SKIP,
|
|
670
|
+
description = SKIP, identity_verification = SKIP,
|
|
671
|
+
iias_ind = SKIP, image_front = SKIP, image_back = SKIP,
|
|
672
|
+
installment = SKIP, installment_number = SKIP,
|
|
673
|
+
installment_count = SKIP, recurring_flag = SKIP,
|
|
674
|
+
installment_counter = SKIP, installment_total = SKIP,
|
|
675
|
+
subscription = SKIP, standing_order = SKIP,
|
|
676
|
+
location_api_id = SKIP, location_id = SKIP,
|
|
677
|
+
product_transaction_id = SKIP, advance_deposit = SKIP,
|
|
678
|
+
no_show = SKIP, notification_email_address = SKIP,
|
|
679
|
+
order_number = SKIP, po_number = SKIP,
|
|
680
|
+
quick_invoice_id = SKIP, recurring = SKIP,
|
|
681
|
+
recurring_number = SKIP, room_num = SKIP, room_rate = SKIP,
|
|
682
|
+
save_account = SKIP, save_account_title = SKIP,
|
|
683
|
+
subtotal_amount = SKIP, surcharge_amount = SKIP, tags = SKIP,
|
|
684
|
+
tax = SKIP, tip_amount = SKIP, transaction_amount = SKIP,
|
|
685
|
+
secondary_amount = SKIP, transaction_api_id = SKIP,
|
|
686
|
+
transaction_c1 = SKIP, transaction_c2 = SKIP,
|
|
687
|
+
transaction_c3 = SKIP, bank_funded_only_override = SKIP,
|
|
688
|
+
allow_partial_authorization_override = SKIP,
|
|
689
|
+
auto_decline_cvv_override = SKIP,
|
|
690
|
+
auto_decline_street_override = SKIP,
|
|
691
|
+
auto_decline_zip_override = SKIP, ebt_type = SKIP,
|
|
692
|
+
cardholder_present = SKIP, card_present = SKIP,
|
|
693
|
+
secure_auth_data = SKIP, secure_protocol_version = SKIP,
|
|
694
|
+
secure_collection_indicator = SKIP, secure_cryptogram = SKIP,
|
|
695
|
+
secure_directory_server_transaction_id = SKIP,
|
|
696
|
+
secure_ecomm_url = SKIP, terminal_serial_number = SKIP,
|
|
697
|
+
threedsecure = SKIP, three_ds_server_trans_id = SKIP,
|
|
698
|
+
wallet_type = SKIP, clerk_id = SKIP, voucher_number = SKIP,
|
|
699
|
+
initiation_type = SKIP, bill_payment = SKIP,
|
|
700
|
+
delay_charge = SKIP, deferred_auth = SKIP, mini_bar = SKIP,
|
|
701
|
+
ebt_food_eligible_amount = SKIP,
|
|
702
|
+
ebt_cash_eligible_amount = SKIP, account_holder_name = SKIP,
|
|
703
|
+
cvv = SKIP, entry_mode_id = SKIP, track_data = SKIP,
|
|
704
|
+
pin = SKIP, ksn = SKIP, additional_properties = {})
|
|
705
|
+
# Add additional model properties to the instance.
|
|
706
|
+
additional_properties.each do |_name, _value|
|
|
707
|
+
instance_variable_set("@#{_name}", _value)
|
|
708
|
+
end
|
|
709
|
+
|
|
710
|
+
@additional_amounts = additional_amounts unless additional_amounts == SKIP
|
|
711
|
+
@billing_address = billing_address unless billing_address == SKIP
|
|
712
|
+
@checkin_date = checkin_date unless checkin_date == SKIP
|
|
713
|
+
@checkout_date = checkout_date unless checkout_date == SKIP
|
|
714
|
+
@clerk_number = clerk_number unless clerk_number == SKIP
|
|
715
|
+
@contact_api_id = contact_api_id unless contact_api_id == SKIP
|
|
716
|
+
@contact_id = contact_id unless contact_id == SKIP
|
|
717
|
+
@custom_data = custom_data unless custom_data == SKIP
|
|
718
|
+
@customer_id = customer_id unless customer_id == SKIP
|
|
719
|
+
@description = description unless description == SKIP
|
|
720
|
+
@identity_verification = identity_verification unless identity_verification == SKIP
|
|
721
|
+
@iias_ind = iias_ind unless iias_ind == SKIP
|
|
722
|
+
@image_front = image_front unless image_front == SKIP
|
|
723
|
+
@image_back = image_back unless image_back == SKIP
|
|
724
|
+
@installment = installment unless installment == SKIP
|
|
725
|
+
@installment_number = installment_number unless installment_number == SKIP
|
|
726
|
+
@installment_count = installment_count unless installment_count == SKIP
|
|
727
|
+
@recurring_flag = recurring_flag unless recurring_flag == SKIP
|
|
728
|
+
@installment_counter = installment_counter unless installment_counter == SKIP
|
|
729
|
+
@installment_total = installment_total unless installment_total == SKIP
|
|
730
|
+
@subscription = subscription unless subscription == SKIP
|
|
731
|
+
@standing_order = standing_order unless standing_order == SKIP
|
|
732
|
+
@location_api_id = location_api_id unless location_api_id == SKIP
|
|
733
|
+
@location_id = location_id unless location_id == SKIP
|
|
734
|
+
@product_transaction_id = product_transaction_id unless product_transaction_id == SKIP
|
|
735
|
+
@advance_deposit = advance_deposit unless advance_deposit == SKIP
|
|
736
|
+
@no_show = no_show unless no_show == SKIP
|
|
737
|
+
unless notification_email_address == SKIP
|
|
738
|
+
@notification_email_address =
|
|
739
|
+
notification_email_address
|
|
740
|
+
end
|
|
741
|
+
@order_number = order_number unless order_number == SKIP
|
|
742
|
+
@po_number = po_number unless po_number == SKIP
|
|
743
|
+
@quick_invoice_id = quick_invoice_id unless quick_invoice_id == SKIP
|
|
744
|
+
@recurring = recurring unless recurring == SKIP
|
|
745
|
+
@recurring_number = recurring_number unless recurring_number == SKIP
|
|
746
|
+
@room_num = room_num unless room_num == SKIP
|
|
747
|
+
@room_rate = room_rate unless room_rate == SKIP
|
|
748
|
+
@save_account = save_account unless save_account == SKIP
|
|
749
|
+
@save_account_title = save_account_title unless save_account_title == SKIP
|
|
750
|
+
@subtotal_amount = subtotal_amount unless subtotal_amount == SKIP
|
|
751
|
+
@surcharge_amount = surcharge_amount unless surcharge_amount == SKIP
|
|
752
|
+
@tags = tags unless tags == SKIP
|
|
753
|
+
@tax = tax unless tax == SKIP
|
|
754
|
+
@tip_amount = tip_amount unless tip_amount == SKIP
|
|
755
|
+
@transaction_amount = transaction_amount unless transaction_amount == SKIP
|
|
756
|
+
@secondary_amount = secondary_amount unless secondary_amount == SKIP
|
|
757
|
+
@transaction_api_id = transaction_api_id unless transaction_api_id == SKIP
|
|
758
|
+
@transaction_c1 = transaction_c1 unless transaction_c1 == SKIP
|
|
759
|
+
@transaction_c2 = transaction_c2 unless transaction_c2 == SKIP
|
|
760
|
+
@transaction_c3 = transaction_c3 unless transaction_c3 == SKIP
|
|
761
|
+
unless bank_funded_only_override == SKIP
|
|
762
|
+
@bank_funded_only_override =
|
|
763
|
+
bank_funded_only_override
|
|
764
|
+
end
|
|
765
|
+
unless allow_partial_authorization_override == SKIP
|
|
766
|
+
@allow_partial_authorization_override =
|
|
767
|
+
allow_partial_authorization_override
|
|
768
|
+
end
|
|
769
|
+
unless auto_decline_cvv_override == SKIP
|
|
770
|
+
@auto_decline_cvv_override =
|
|
771
|
+
auto_decline_cvv_override
|
|
772
|
+
end
|
|
773
|
+
unless auto_decline_street_override == SKIP
|
|
774
|
+
@auto_decline_street_override =
|
|
775
|
+
auto_decline_street_override
|
|
776
|
+
end
|
|
777
|
+
unless auto_decline_zip_override == SKIP
|
|
778
|
+
@auto_decline_zip_override =
|
|
779
|
+
auto_decline_zip_override
|
|
780
|
+
end
|
|
781
|
+
@ebt_type = ebt_type unless ebt_type == SKIP
|
|
782
|
+
@cardholder_present = cardholder_present unless cardholder_present == SKIP
|
|
783
|
+
@card_present = card_present unless card_present == SKIP
|
|
784
|
+
@secure_auth_data = secure_auth_data unless secure_auth_data == SKIP
|
|
785
|
+
@secure_protocol_version = secure_protocol_version unless secure_protocol_version == SKIP
|
|
786
|
+
unless secure_collection_indicator == SKIP
|
|
787
|
+
@secure_collection_indicator =
|
|
788
|
+
secure_collection_indicator
|
|
789
|
+
end
|
|
790
|
+
@secure_cryptogram = secure_cryptogram unless secure_cryptogram == SKIP
|
|
791
|
+
unless secure_directory_server_transaction_id == SKIP
|
|
792
|
+
@secure_directory_server_transaction_id =
|
|
793
|
+
secure_directory_server_transaction_id
|
|
794
|
+
end
|
|
795
|
+
@secure_ecomm_url = secure_ecomm_url unless secure_ecomm_url == SKIP
|
|
796
|
+
@terminal_serial_number = terminal_serial_number unless terminal_serial_number == SKIP
|
|
797
|
+
@threedsecure = threedsecure unless threedsecure == SKIP
|
|
798
|
+
@three_ds_server_trans_id = three_ds_server_trans_id unless three_ds_server_trans_id == SKIP
|
|
799
|
+
@wallet_type = wallet_type unless wallet_type == SKIP
|
|
800
|
+
@clerk_id = clerk_id unless clerk_id == SKIP
|
|
801
|
+
@voucher_number = voucher_number unless voucher_number == SKIP
|
|
802
|
+
@initiation_type = initiation_type unless initiation_type == SKIP
|
|
803
|
+
@bill_payment = bill_payment unless bill_payment == SKIP
|
|
804
|
+
@delay_charge = delay_charge unless delay_charge == SKIP
|
|
805
|
+
@deferred_auth = deferred_auth unless deferred_auth == SKIP
|
|
806
|
+
@mini_bar = mini_bar unless mini_bar == SKIP
|
|
807
|
+
@ebt_food_eligible_amount = ebt_food_eligible_amount unless ebt_food_eligible_amount == SKIP
|
|
808
|
+
@ebt_cash_eligible_amount = ebt_cash_eligible_amount unless ebt_cash_eligible_amount == SKIP
|
|
809
|
+
@account_holder_name = account_holder_name unless account_holder_name == SKIP
|
|
810
|
+
@account_number = account_number
|
|
811
|
+
@cvv = cvv unless cvv == SKIP
|
|
812
|
+
@entry_mode_id = entry_mode_id unless entry_mode_id == SKIP
|
|
813
|
+
@exp_date = exp_date
|
|
814
|
+
@track_data = track_data unless track_data == SKIP
|
|
815
|
+
@pin = pin unless pin == SKIP
|
|
816
|
+
@ksn = ksn unless ksn == SKIP
|
|
817
|
+
end
|
|
818
|
+
|
|
819
|
+
# Creates an instance of the object from a hash.
|
|
820
|
+
def self.from_hash(hash)
|
|
821
|
+
return nil unless hash
|
|
822
|
+
|
|
823
|
+
# Extract variables from the hash.
|
|
824
|
+
account_number =
|
|
825
|
+
hash.key?('account_number') ? hash['account_number'] : nil
|
|
826
|
+
exp_date = hash.key?('exp_date') ? hash['exp_date'] : nil
|
|
827
|
+
# Parameter is an array, so we need to iterate through it
|
|
828
|
+
additional_amounts = nil
|
|
829
|
+
unless hash['additional_amounts'].nil?
|
|
830
|
+
additional_amounts = []
|
|
831
|
+
hash['additional_amounts'].each do |structure|
|
|
832
|
+
additional_amounts << (AdditionalAmount.from_hash(structure) if structure)
|
|
833
|
+
end
|
|
834
|
+
end
|
|
835
|
+
|
|
836
|
+
additional_amounts = SKIP unless hash.key?('additional_amounts')
|
|
837
|
+
billing_address = BillingAddress1.from_hash(hash['billing_address']) if
|
|
838
|
+
hash['billing_address']
|
|
839
|
+
checkin_date = hash.key?('checkin_date') ? hash['checkin_date'] : SKIP
|
|
840
|
+
checkout_date = hash.key?('checkout_date') ? hash['checkout_date'] : SKIP
|
|
841
|
+
clerk_number = hash.key?('clerk_number') ? hash['clerk_number'] : SKIP
|
|
842
|
+
contact_api_id =
|
|
843
|
+
hash.key?('contact_api_id') ? hash['contact_api_id'] : SKIP
|
|
844
|
+
contact_id = hash.key?('contact_id') ? hash['contact_id'] : SKIP
|
|
845
|
+
custom_data = hash.key?('custom_data') ? hash['custom_data'] : SKIP
|
|
846
|
+
customer_id = hash.key?('customer_id') ? hash['customer_id'] : SKIP
|
|
847
|
+
description = hash.key?('description') ? hash['description'] : SKIP
|
|
848
|
+
identity_verification = IdentityVerification.from_hash(hash['identity_verification']) if
|
|
849
|
+
hash['identity_verification']
|
|
850
|
+
iias_ind = hash.key?('iias_ind') ? hash['iias_ind'] : SKIP
|
|
851
|
+
image_front = hash.key?('image_front') ? hash['image_front'] : SKIP
|
|
852
|
+
image_back = hash.key?('image_back') ? hash['image_back'] : SKIP
|
|
853
|
+
installment = hash.key?('installment') ? hash['installment'] : SKIP
|
|
854
|
+
installment_number =
|
|
855
|
+
hash.key?('installment_number') ? hash['installment_number'] : SKIP
|
|
856
|
+
installment_count =
|
|
857
|
+
hash.key?('installment_count') ? hash['installment_count'] : SKIP
|
|
858
|
+
recurring_flag =
|
|
859
|
+
hash.key?('recurring_flag') ? hash['recurring_flag'] : SKIP
|
|
860
|
+
installment_counter =
|
|
861
|
+
hash.key?('installment_counter') ? hash['installment_counter'] : SKIP
|
|
862
|
+
installment_total =
|
|
863
|
+
hash.key?('installment_total') ? hash['installment_total'] : SKIP
|
|
864
|
+
subscription = hash.key?('subscription') ? hash['subscription'] : SKIP
|
|
865
|
+
standing_order =
|
|
866
|
+
hash.key?('standing_order') ? hash['standing_order'] : SKIP
|
|
867
|
+
location_api_id =
|
|
868
|
+
hash.key?('location_api_id') ? hash['location_api_id'] : SKIP
|
|
869
|
+
location_id = hash.key?('location_id') ? hash['location_id'] : SKIP
|
|
870
|
+
product_transaction_id =
|
|
871
|
+
hash.key?('product_transaction_id') ? hash['product_transaction_id'] : SKIP
|
|
872
|
+
advance_deposit =
|
|
873
|
+
hash.key?('advance_deposit') ? hash['advance_deposit'] : SKIP
|
|
874
|
+
no_show = hash.key?('no_show') ? hash['no_show'] : SKIP
|
|
875
|
+
notification_email_address =
|
|
876
|
+
hash.key?('notification_email_address') ? hash['notification_email_address'] : SKIP
|
|
877
|
+
order_number = hash.key?('order_number') ? hash['order_number'] : SKIP
|
|
878
|
+
po_number = hash.key?('po_number') ? hash['po_number'] : SKIP
|
|
879
|
+
quick_invoice_id =
|
|
880
|
+
hash.key?('quick_invoice_id') ? hash['quick_invoice_id'] : SKIP
|
|
881
|
+
recurring = hash.key?('recurring') ? hash['recurring'] : SKIP
|
|
882
|
+
recurring_number =
|
|
883
|
+
hash.key?('recurring_number') ? hash['recurring_number'] : SKIP
|
|
884
|
+
room_num = hash.key?('room_num') ? hash['room_num'] : SKIP
|
|
885
|
+
room_rate = hash.key?('room_rate') ? hash['room_rate'] : SKIP
|
|
886
|
+
save_account = hash.key?('save_account') ? hash['save_account'] : SKIP
|
|
887
|
+
save_account_title =
|
|
888
|
+
hash.key?('save_account_title') ? hash['save_account_title'] : SKIP
|
|
889
|
+
subtotal_amount =
|
|
890
|
+
hash.key?('subtotal_amount') ? hash['subtotal_amount'] : SKIP
|
|
891
|
+
surcharge_amount =
|
|
892
|
+
hash.key?('surcharge_amount') ? hash['surcharge_amount'] : SKIP
|
|
893
|
+
tags = hash.key?('tags') ? hash['tags'] : SKIP
|
|
894
|
+
tax = hash.key?('tax') ? hash['tax'] : SKIP
|
|
895
|
+
tip_amount = hash.key?('tip_amount') ? hash['tip_amount'] : SKIP
|
|
896
|
+
transaction_amount =
|
|
897
|
+
hash.key?('transaction_amount') ? hash['transaction_amount'] : SKIP
|
|
898
|
+
secondary_amount =
|
|
899
|
+
hash.key?('secondary_amount') ? hash['secondary_amount'] : SKIP
|
|
900
|
+
transaction_api_id =
|
|
901
|
+
hash.key?('transaction_api_id') ? hash['transaction_api_id'] : SKIP
|
|
902
|
+
transaction_c1 =
|
|
903
|
+
hash.key?('transaction_c1') ? hash['transaction_c1'] : SKIP
|
|
904
|
+
transaction_c2 =
|
|
905
|
+
hash.key?('transaction_c2') ? hash['transaction_c2'] : SKIP
|
|
906
|
+
transaction_c3 =
|
|
907
|
+
hash.key?('transaction_c3') ? hash['transaction_c3'] : SKIP
|
|
908
|
+
bank_funded_only_override =
|
|
909
|
+
hash.key?('bank_funded_only_override') ? hash['bank_funded_only_override'] : SKIP
|
|
910
|
+
allow_partial_authorization_override =
|
|
911
|
+
hash.key?('allow_partial_authorization_override') ? hash['allow_partial_authorization_override'] : SKIP
|
|
912
|
+
auto_decline_cvv_override =
|
|
913
|
+
hash.key?('auto_decline_cvv_override') ? hash['auto_decline_cvv_override'] : SKIP
|
|
914
|
+
auto_decline_street_override =
|
|
915
|
+
hash.key?('auto_decline_street_override') ? hash['auto_decline_street_override'] : SKIP
|
|
916
|
+
auto_decline_zip_override =
|
|
917
|
+
hash.key?('auto_decline_zip_override') ? hash['auto_decline_zip_override'] : SKIP
|
|
918
|
+
ebt_type = hash.key?('ebt_type') ? hash['ebt_type'] : SKIP
|
|
919
|
+
cardholder_present =
|
|
920
|
+
hash.key?('cardholder_present') ? hash['cardholder_present'] : SKIP
|
|
921
|
+
card_present = hash.key?('card_present') ? hash['card_present'] : SKIP
|
|
922
|
+
secure_auth_data =
|
|
923
|
+
hash.key?('secure_auth_data') ? hash['secure_auth_data'] : SKIP
|
|
924
|
+
secure_protocol_version =
|
|
925
|
+
hash.key?('secure_protocol_version') ? hash['secure_protocol_version'] : SKIP
|
|
926
|
+
secure_collection_indicator =
|
|
927
|
+
hash.key?('secure_collection_indicator') ? hash['secure_collection_indicator'] : SKIP
|
|
928
|
+
secure_cryptogram =
|
|
929
|
+
hash.key?('secure_cryptogram') ? hash['secure_cryptogram'] : SKIP
|
|
930
|
+
secure_directory_server_transaction_id =
|
|
931
|
+
hash.key?('secure_directory_server_transaction_id') ? hash['secure_directory_server_transaction_id'] : SKIP
|
|
932
|
+
secure_ecomm_url =
|
|
933
|
+
hash.key?('secure_ecomm_url') ? hash['secure_ecomm_url'] : SKIP
|
|
934
|
+
terminal_serial_number =
|
|
935
|
+
hash.key?('terminal_serial_number') ? hash['terminal_serial_number'] : SKIP
|
|
936
|
+
threedsecure = hash.key?('threedsecure') ? hash['threedsecure'] : SKIP
|
|
937
|
+
three_ds_server_trans_id =
|
|
938
|
+
hash.key?('three_ds_server_trans_id') ? hash['three_ds_server_trans_id'] : SKIP
|
|
939
|
+
wallet_type = hash.key?('wallet_type') ? hash['wallet_type'] : SKIP
|
|
940
|
+
clerk_id = hash.key?('clerk_id') ? hash['clerk_id'] : SKIP
|
|
941
|
+
voucher_number =
|
|
942
|
+
hash.key?('voucher_number') ? hash['voucher_number'] : SKIP
|
|
943
|
+
initiation_type =
|
|
944
|
+
hash.key?('initiation_type') ? hash['initiation_type'] : SKIP
|
|
945
|
+
bill_payment = hash.key?('bill_payment') ? hash['bill_payment'] : SKIP
|
|
946
|
+
delay_charge = hash.key?('delay_charge') ? hash['delay_charge'] : SKIP
|
|
947
|
+
deferred_auth = hash.key?('deferred_auth') ? hash['deferred_auth'] : SKIP
|
|
948
|
+
mini_bar = hash.key?('mini_bar') ? hash['mini_bar'] : SKIP
|
|
949
|
+
ebt_food_eligible_amount =
|
|
950
|
+
hash.key?('ebt_food_eligible_amount') ? hash['ebt_food_eligible_amount'] : SKIP
|
|
951
|
+
ebt_cash_eligible_amount =
|
|
952
|
+
hash.key?('ebt_cash_eligible_amount') ? hash['ebt_cash_eligible_amount'] : SKIP
|
|
953
|
+
account_holder_name =
|
|
954
|
+
hash.key?('account_holder_name') ? hash['account_holder_name'] : SKIP
|
|
955
|
+
cvv = hash.key?('cvv') ? hash['cvv'] : SKIP
|
|
956
|
+
entry_mode_id = hash.key?('entry_mode_id') ? hash['entry_mode_id'] : SKIP
|
|
957
|
+
track_data = hash.key?('track_data') ? hash['track_data'] : SKIP
|
|
958
|
+
pin = hash.key?('pin') ? hash['pin'] : SKIP
|
|
959
|
+
ksn = hash.key?('ksn') ? hash['ksn'] : SKIP
|
|
960
|
+
|
|
961
|
+
# Clean out expected properties from Hash.
|
|
962
|
+
additional_properties = hash.reject { |k, _| names.value?(k) }
|
|
963
|
+
|
|
964
|
+
# Create object from extracted values.
|
|
965
|
+
V1TransactionsCcBalanceInquiryKeyedRequest.new(account_number,
|
|
966
|
+
exp_date,
|
|
967
|
+
additional_amounts,
|
|
968
|
+
billing_address,
|
|
969
|
+
checkin_date,
|
|
970
|
+
checkout_date,
|
|
971
|
+
clerk_number,
|
|
972
|
+
contact_api_id,
|
|
973
|
+
contact_id,
|
|
974
|
+
custom_data,
|
|
975
|
+
customer_id,
|
|
976
|
+
description,
|
|
977
|
+
identity_verification,
|
|
978
|
+
iias_ind,
|
|
979
|
+
image_front,
|
|
980
|
+
image_back,
|
|
981
|
+
installment,
|
|
982
|
+
installment_number,
|
|
983
|
+
installment_count,
|
|
984
|
+
recurring_flag,
|
|
985
|
+
installment_counter,
|
|
986
|
+
installment_total,
|
|
987
|
+
subscription,
|
|
988
|
+
standing_order,
|
|
989
|
+
location_api_id,
|
|
990
|
+
location_id,
|
|
991
|
+
product_transaction_id,
|
|
992
|
+
advance_deposit,
|
|
993
|
+
no_show,
|
|
994
|
+
notification_email_address,
|
|
995
|
+
order_number,
|
|
996
|
+
po_number,
|
|
997
|
+
quick_invoice_id,
|
|
998
|
+
recurring,
|
|
999
|
+
recurring_number,
|
|
1000
|
+
room_num,
|
|
1001
|
+
room_rate,
|
|
1002
|
+
save_account,
|
|
1003
|
+
save_account_title,
|
|
1004
|
+
subtotal_amount,
|
|
1005
|
+
surcharge_amount,
|
|
1006
|
+
tags,
|
|
1007
|
+
tax,
|
|
1008
|
+
tip_amount,
|
|
1009
|
+
transaction_amount,
|
|
1010
|
+
secondary_amount,
|
|
1011
|
+
transaction_api_id,
|
|
1012
|
+
transaction_c1,
|
|
1013
|
+
transaction_c2,
|
|
1014
|
+
transaction_c3,
|
|
1015
|
+
bank_funded_only_override,
|
|
1016
|
+
allow_partial_authorization_override,
|
|
1017
|
+
auto_decline_cvv_override,
|
|
1018
|
+
auto_decline_street_override,
|
|
1019
|
+
auto_decline_zip_override,
|
|
1020
|
+
ebt_type,
|
|
1021
|
+
cardholder_present,
|
|
1022
|
+
card_present,
|
|
1023
|
+
secure_auth_data,
|
|
1024
|
+
secure_protocol_version,
|
|
1025
|
+
secure_collection_indicator,
|
|
1026
|
+
secure_cryptogram,
|
|
1027
|
+
secure_directory_server_transaction_id,
|
|
1028
|
+
secure_ecomm_url,
|
|
1029
|
+
terminal_serial_number,
|
|
1030
|
+
threedsecure,
|
|
1031
|
+
three_ds_server_trans_id,
|
|
1032
|
+
wallet_type,
|
|
1033
|
+
clerk_id,
|
|
1034
|
+
voucher_number,
|
|
1035
|
+
initiation_type,
|
|
1036
|
+
bill_payment,
|
|
1037
|
+
delay_charge,
|
|
1038
|
+
deferred_auth,
|
|
1039
|
+
mini_bar,
|
|
1040
|
+
ebt_food_eligible_amount,
|
|
1041
|
+
ebt_cash_eligible_amount,
|
|
1042
|
+
account_holder_name,
|
|
1043
|
+
cvv,
|
|
1044
|
+
entry_mode_id,
|
|
1045
|
+
track_data,
|
|
1046
|
+
pin,
|
|
1047
|
+
ksn,
|
|
1048
|
+
additional_properties)
|
|
1049
|
+
end
|
|
1050
|
+
|
|
1051
|
+
# Provides a human-readable string representation of the object.
|
|
1052
|
+
def to_s
|
|
1053
|
+
class_name = self.class.name.split('::').last
|
|
1054
|
+
"<#{class_name} additional_amounts: #{@additional_amounts}, billing_address:"\
|
|
1055
|
+
" #{@billing_address}, checkin_date: #{@checkin_date}, checkout_date: #{@checkout_date},"\
|
|
1056
|
+
" clerk_number: #{@clerk_number}, contact_api_id: #{@contact_api_id}, contact_id:"\
|
|
1057
|
+
" #{@contact_id}, custom_data: #{@custom_data}, customer_id: #{@customer_id}, description:"\
|
|
1058
|
+
" #{@description}, identity_verification: #{@identity_verification}, iias_ind: #{@iias_ind},"\
|
|
1059
|
+
" image_front: #{@image_front}, image_back: #{@image_back}, installment: #{@installment},"\
|
|
1060
|
+
" installment_number: #{@installment_number}, installment_count: #{@installment_count},"\
|
|
1061
|
+
" recurring_flag: #{@recurring_flag}, installment_counter: #{@installment_counter},"\
|
|
1062
|
+
" installment_total: #{@installment_total}, subscription: #{@subscription}, standing_order:"\
|
|
1063
|
+
" #{@standing_order}, location_api_id: #{@location_api_id}, location_id: #{@location_id},"\
|
|
1064
|
+
" product_transaction_id: #{@product_transaction_id}, advance_deposit: #{@advance_deposit},"\
|
|
1065
|
+
" no_show: #{@no_show}, notification_email_address: #{@notification_email_address},"\
|
|
1066
|
+
" order_number: #{@order_number}, po_number: #{@po_number}, quick_invoice_id:"\
|
|
1067
|
+
" #{@quick_invoice_id}, recurring: #{@recurring}, recurring_number: #{@recurring_number},"\
|
|
1068
|
+
" room_num: #{@room_num}, room_rate: #{@room_rate}, save_account: #{@save_account},"\
|
|
1069
|
+
" save_account_title: #{@save_account_title}, subtotal_amount: #{@subtotal_amount},"\
|
|
1070
|
+
" surcharge_amount: #{@surcharge_amount}, tags: #{@tags}, tax: #{@tax}, tip_amount:"\
|
|
1071
|
+
" #{@tip_amount}, transaction_amount: #{@transaction_amount}, secondary_amount:"\
|
|
1072
|
+
" #{@secondary_amount}, transaction_api_id: #{@transaction_api_id}, transaction_c1:"\
|
|
1073
|
+
" #{@transaction_c1}, transaction_c2: #{@transaction_c2}, transaction_c3:"\
|
|
1074
|
+
" #{@transaction_c3}, bank_funded_only_override: #{@bank_funded_only_override},"\
|
|
1075
|
+
" allow_partial_authorization_override: #{@allow_partial_authorization_override},"\
|
|
1076
|
+
" auto_decline_cvv_override: #{@auto_decline_cvv_override}, auto_decline_street_override:"\
|
|
1077
|
+
" #{@auto_decline_street_override}, auto_decline_zip_override:"\
|
|
1078
|
+
" #{@auto_decline_zip_override}, ebt_type: #{@ebt_type}, cardholder_present:"\
|
|
1079
|
+
" #{@cardholder_present}, card_present: #{@card_present}, secure_auth_data:"\
|
|
1080
|
+
" #{@secure_auth_data}, secure_protocol_version: #{@secure_protocol_version},"\
|
|
1081
|
+
" secure_collection_indicator: #{@secure_collection_indicator}, secure_cryptogram:"\
|
|
1082
|
+
" #{@secure_cryptogram}, secure_directory_server_transaction_id:"\
|
|
1083
|
+
" #{@secure_directory_server_transaction_id}, secure_ecomm_url: #{@secure_ecomm_url},"\
|
|
1084
|
+
" terminal_serial_number: #{@terminal_serial_number}, threedsecure: #{@threedsecure},"\
|
|
1085
|
+
" three_ds_server_trans_id: #{@three_ds_server_trans_id}, wallet_type: #{@wallet_type},"\
|
|
1086
|
+
" clerk_id: #{@clerk_id}, voucher_number: #{@voucher_number}, initiation_type:"\
|
|
1087
|
+
" #{@initiation_type}, bill_payment: #{@bill_payment}, delay_charge: #{@delay_charge},"\
|
|
1088
|
+
" deferred_auth: #{@deferred_auth}, mini_bar: #{@mini_bar}, ebt_food_eligible_amount:"\
|
|
1089
|
+
" #{@ebt_food_eligible_amount}, ebt_cash_eligible_amount: #{@ebt_cash_eligible_amount},"\
|
|
1090
|
+
" account_holder_name: #{@account_holder_name}, account_number: #{@account_number}, cvv:"\
|
|
1091
|
+
" #{@cvv}, entry_mode_id: #{@entry_mode_id}, exp_date: #{@exp_date}, track_data:"\
|
|
1092
|
+
" #{@track_data}, pin: #{@pin}, ksn: #{@ksn}, additional_properties:"\
|
|
1093
|
+
" #{get_additional_properties}>"
|
|
1094
|
+
end
|
|
1095
|
+
|
|
1096
|
+
# Provides a debugging-friendly string with detailed object information.
|
|
1097
|
+
def inspect
|
|
1098
|
+
class_name = self.class.name.split('::').last
|
|
1099
|
+
"<#{class_name} additional_amounts: #{@additional_amounts.inspect}, billing_address:"\
|
|
1100
|
+
" #{@billing_address.inspect}, checkin_date: #{@checkin_date.inspect}, checkout_date:"\
|
|
1101
|
+
" #{@checkout_date.inspect}, clerk_number: #{@clerk_number.inspect}, contact_api_id:"\
|
|
1102
|
+
" #{@contact_api_id.inspect}, contact_id: #{@contact_id.inspect}, custom_data:"\
|
|
1103
|
+
" #{@custom_data.inspect}, customer_id: #{@customer_id.inspect}, description:"\
|
|
1104
|
+
" #{@description.inspect}, identity_verification: #{@identity_verification.inspect},"\
|
|
1105
|
+
" iias_ind: #{@iias_ind.inspect}, image_front: #{@image_front.inspect}, image_back:"\
|
|
1106
|
+
" #{@image_back.inspect}, installment: #{@installment.inspect}, installment_number:"\
|
|
1107
|
+
" #{@installment_number.inspect}, installment_count: #{@installment_count.inspect},"\
|
|
1108
|
+
" recurring_flag: #{@recurring_flag.inspect}, installment_counter:"\
|
|
1109
|
+
" #{@installment_counter.inspect}, installment_total: #{@installment_total.inspect},"\
|
|
1110
|
+
" subscription: #{@subscription.inspect}, standing_order: #{@standing_order.inspect},"\
|
|
1111
|
+
" location_api_id: #{@location_api_id.inspect}, location_id: #{@location_id.inspect},"\
|
|
1112
|
+
" product_transaction_id: #{@product_transaction_id.inspect}, advance_deposit:"\
|
|
1113
|
+
" #{@advance_deposit.inspect}, no_show: #{@no_show.inspect}, notification_email_address:"\
|
|
1114
|
+
" #{@notification_email_address.inspect}, order_number: #{@order_number.inspect}, po_number:"\
|
|
1115
|
+
" #{@po_number.inspect}, quick_invoice_id: #{@quick_invoice_id.inspect}, recurring:"\
|
|
1116
|
+
" #{@recurring.inspect}, recurring_number: #{@recurring_number.inspect}, room_num:"\
|
|
1117
|
+
" #{@room_num.inspect}, room_rate: #{@room_rate.inspect}, save_account:"\
|
|
1118
|
+
" #{@save_account.inspect}, save_account_title: #{@save_account_title.inspect},"\
|
|
1119
|
+
" subtotal_amount: #{@subtotal_amount.inspect}, surcharge_amount:"\
|
|
1120
|
+
" #{@surcharge_amount.inspect}, tags: #{@tags.inspect}, tax: #{@tax.inspect}, tip_amount:"\
|
|
1121
|
+
" #{@tip_amount.inspect}, transaction_amount: #{@transaction_amount.inspect},"\
|
|
1122
|
+
" secondary_amount: #{@secondary_amount.inspect}, transaction_api_id:"\
|
|
1123
|
+
" #{@transaction_api_id.inspect}, transaction_c1: #{@transaction_c1.inspect},"\
|
|
1124
|
+
" transaction_c2: #{@transaction_c2.inspect}, transaction_c3: #{@transaction_c3.inspect},"\
|
|
1125
|
+
" bank_funded_only_override: #{@bank_funded_only_override.inspect},"\
|
|
1126
|
+
" allow_partial_authorization_override: #{@allow_partial_authorization_override.inspect},"\
|
|
1127
|
+
" auto_decline_cvv_override: #{@auto_decline_cvv_override.inspect},"\
|
|
1128
|
+
" auto_decline_street_override: #{@auto_decline_street_override.inspect},"\
|
|
1129
|
+
" auto_decline_zip_override: #{@auto_decline_zip_override.inspect}, ebt_type:"\
|
|
1130
|
+
" #{@ebt_type.inspect}, cardholder_present: #{@cardholder_present.inspect}, card_present:"\
|
|
1131
|
+
" #{@card_present.inspect}, secure_auth_data: #{@secure_auth_data.inspect},"\
|
|
1132
|
+
" secure_protocol_version: #{@secure_protocol_version.inspect}, secure_collection_indicator:"\
|
|
1133
|
+
" #{@secure_collection_indicator.inspect}, secure_cryptogram: #{@secure_cryptogram.inspect},"\
|
|
1134
|
+
' secure_directory_server_transaction_id:'\
|
|
1135
|
+
" #{@secure_directory_server_transaction_id.inspect}, secure_ecomm_url:"\
|
|
1136
|
+
" #{@secure_ecomm_url.inspect}, terminal_serial_number: #{@terminal_serial_number.inspect},"\
|
|
1137
|
+
" threedsecure: #{@threedsecure.inspect}, three_ds_server_trans_id:"\
|
|
1138
|
+
" #{@three_ds_server_trans_id.inspect}, wallet_type: #{@wallet_type.inspect}, clerk_id:"\
|
|
1139
|
+
" #{@clerk_id.inspect}, voucher_number: #{@voucher_number.inspect}, initiation_type:"\
|
|
1140
|
+
" #{@initiation_type.inspect}, bill_payment: #{@bill_payment.inspect}, delay_charge:"\
|
|
1141
|
+
" #{@delay_charge.inspect}, deferred_auth: #{@deferred_auth.inspect}, mini_bar:"\
|
|
1142
|
+
" #{@mini_bar.inspect}, ebt_food_eligible_amount: #{@ebt_food_eligible_amount.inspect},"\
|
|
1143
|
+
" ebt_cash_eligible_amount: #{@ebt_cash_eligible_amount.inspect}, account_holder_name:"\
|
|
1144
|
+
" #{@account_holder_name.inspect}, account_number: #{@account_number.inspect}, cvv:"\
|
|
1145
|
+
" #{@cvv.inspect}, entry_mode_id: #{@entry_mode_id.inspect}, exp_date: #{@exp_date.inspect},"\
|
|
1146
|
+
" track_data: #{@track_data.inspect}, pin: #{@pin.inspect}, ksn: #{@ksn.inspect},"\
|
|
1147
|
+
" additional_properties: #{get_additional_properties}>"
|
|
1148
|
+
end
|
|
1149
|
+
end
|
|
1150
|
+
end
|