fortis-python-sdk 1.0.0__py3-none-any.whl
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.
- fortis_python_sdk-1.0.0.dist-info/METADATA +183 -0
- fortis_python_sdk-1.0.0.dist-info/RECORD +699 -0
- fortis_python_sdk-1.0.0.dist-info/WHEEL +5 -0
- fortis_python_sdk-1.0.0.dist-info/licenses/LICENSE +28 -0
- fortis_python_sdk-1.0.0.dist-info/top_level.txt +1 -0
- fortisapi/__init__.py +12 -0
- fortisapi/api_helper.py +19 -0
- fortisapi/configuration.py +294 -0
- fortisapi/controllers/__init__.py +40 -0
- fortisapi/controllers/apple_pay_validate_merchant_controller.py +84 -0
- fortisapi/controllers/async_processing_controller.py +78 -0
- fortisapi/controllers/base_controller.py +67 -0
- fortisapi/controllers/batches_controller.py +179 -0
- fortisapi/controllers/calculate_surcharge_controller.py +76 -0
- fortisapi/controllers/contacts_controller.py +398 -0
- fortisapi/controllers/declined_recurring_transactions_controller.py +326 -0
- fortisapi/controllers/device_terms_controller.py +242 -0
- fortisapi/controllers/elements_controller.py +129 -0
- fortisapi/controllers/enterprise_link_redirect_controller.py +81 -0
- fortisapi/controllers/full_boarding_controller.py +85 -0
- fortisapi/controllers/level_3_data_controller.py +219 -0
- fortisapi/controllers/locations_controller.py +478 -0
- fortisapi/controllers/m_3_ds_authentication_controller.py +90 -0
- fortisapi/controllers/m_3_ds_transactions_controller.py +84 -0
- fortisapi/controllers/merchant_deposits_controller.py +295 -0
- fortisapi/controllers/merchant_details_controller.py +82 -0
- fortisapi/controllers/on_boarding_controller.py +100 -0
- fortisapi/controllers/paylinks_controller.py +396 -0
- fortisapi/controllers/payment_card_reader_token_controller.py +76 -0
- fortisapi/controllers/quick_invoices_controller.py +531 -0
- fortisapi/controllers/recurring_controller.py +545 -0
- fortisapi/controllers/reports_controller.py +209 -0
- fortisapi/controllers/signatures_controller.py +249 -0
- fortisapi/controllers/tags_controller.py +328 -0
- fortisapi/controllers/terminals_controller.py +304 -0
- fortisapi/controllers/tickets_controller.py +249 -0
- fortisapi/controllers/tokens_controller.py +679 -0
- fortisapi/controllers/transaction_ach_retries_controller.py +250 -0
- fortisapi/controllers/transactions_ach_controller.py +398 -0
- fortisapi/controllers/transactions_cash_controller.py +123 -0
- fortisapi/controllers/transactions_credit_card_controller.py +1796 -0
- fortisapi/controllers/transactions_ebt_card_controller.py +147 -0
- fortisapi/controllers/transactions_read_controller.py +248 -0
- fortisapi/controllers/transactions_updates_controller.py +435 -0
- fortisapi/controllers/webhooks_controller.py +493 -0
- fortisapi/exceptions/__init__.py +8 -0
- fortisapi/exceptions/api_exception.py +36 -0
- fortisapi/exceptions/response_401_token_exception.py +77 -0
- fortisapi/exceptions/response_412_exception.py +109 -0
- fortisapi/exceptions/response_error_exception.py +109 -0
- fortisapi/fortisapi_client.py +360 -0
- fortisapi/http/__init__.py +11 -0
- fortisapi/http/auth/__init__.py +8 -0
- fortisapi/http/auth/access_token.py +100 -0
- fortisapi/http/auth/developer_id.py +100 -0
- fortisapi/http/auth/user_api_key.py +100 -0
- fortisapi/http/auth/user_id.py +100 -0
- fortisapi/http/http_call_back.py +20 -0
- fortisapi/http/http_client_provider.py +23 -0
- fortisapi/http/http_method_enum.py +25 -0
- fortisapi/http/http_request.py +55 -0
- fortisapi/http/http_response.py +45 -0
- fortisapi/http/proxy_settings.py +50 -0
- fortisapi/models/__init__.py +636 -0
- fortisapi/models/account_info.py +519 -0
- fortisapi/models/account_type_12_enum.py +47 -0
- fortisapi/models/account_type_13_enum.py +51 -0
- fortisapi/models/account_type_16_enum.py +51 -0
- fortisapi/models/account_type_enum.py +83 -0
- fortisapi/models/account_vault.py +1408 -0
- fortisapi/models/account_vault_cau_log.py +201 -0
- fortisapi/models/account_vault_cau_product_transaction.py +754 -0
- fortisapi/models/ach_product_transaction.py +3048 -0
- fortisapi/models/ach_sec_code_1_enum.py +59 -0
- fortisapi/models/ach_sec_code_31_enum.py +61 -0
- fortisapi/models/ach_sec_code_3_enum.py +59 -0
- fortisapi/models/ach_sec_code_enum.py +67 -0
- fortisapi/models/acs_challenge_mandated_enum.py +52 -0
- fortisapi/models/action_enum.py +70 -0
- fortisapi/models/active_recurring.py +975 -0
- fortisapi/models/additional_access.py +102 -0
- fortisapi/models/additional_amount.py +201 -0
- fortisapi/models/addon.py +222 -0
- fortisapi/models/addon_transaction_type_enum.py +57 -0
- fortisapi/models/address.py +205 -0
- fortisapi/models/address_1.py +228 -0
- fortisapi/models/address_2.py +204 -0
- fortisapi/models/address_71.py +186 -0
- fortisapi/models/address_match_enum.py +54 -0
- fortisapi/models/address_type_enum.py +50 -0
- fortisapi/models/all_tag.py +194 -0
- fortisapi/models/alt_bank_account.py +180 -0
- fortisapi/models/amount_ind_enum.py +121 -0
- fortisapi/models/app_delivery_enum.py +50 -0
- fortisapi/models/auth_currency_enum.py +168 -0
- fortisapi/models/avs_enum.py +56 -0
- fortisapi/models/balance.py +154 -0
- fortisapi/models/bank_account.py +156 -0
- fortisapi/models/bank_account_1.py +186 -0
- fortisapi/models/batch_risk_config.py +132 -0
- fortisapi/models/billing_address.py +233 -0
- fortisapi/models/billing_address_1.py +258 -0
- fortisapi/models/billing_address_24.py +263 -0
- fortisapi/models/billing_address_5.py +155 -0
- fortisapi/models/body.py +134 -0
- fortisapi/models/branding_domain.py +867 -0
- fortisapi/models/branding_domain_1.py +867 -0
- fortisapi/models/broad_info.py +241 -0
- fortisapi/models/browser_information.py +401 -0
- fortisapi/models/business_category_enum.py +77 -0
- fortisapi/models/business_type_enum.py +365 -0
- fortisapi/models/cardholder.py +324 -0
- fortisapi/models/cardholder_account.py +211 -0
- fortisapi/models/category_enum.py +133 -0
- fortisapi/models/cau_subscribe_type_code_enum.py +50 -0
- fortisapi/models/cau_subscribe_type_id_enum.py +50 -0
- fortisapi/models/cau_summary_status_id_enum.py +53 -0
- fortisapi/models/cc_product_transaction.py +3048 -0
- fortisapi/models/ch_acc_age_ind_enum.py +66 -0
- fortisapi/models/ch_acc_change_ind_enum.py +63 -0
- fortisapi/models/ch_acc_pw_change_ind_enum.py +67 -0
- fortisapi/models/challenge_message_extension.py +177 -0
- fortisapi/models/challenge_window_size_enum.py +73 -0
- fortisapi/models/changelog.py +280 -0
- fortisapi/models/changelog_detail.py +178 -0
- fortisapi/models/children.py +822 -0
- fortisapi/models/communication_type_enum.py +50 -0
- fortisapi/models/conditions.py +125 -0
- fortisapi/models/conditions_18.py +146 -0
- fortisapi/models/conditions_181.py +146 -0
- fortisapi/models/conditions_191.py +146 -0
- fortisapi/models/conditions_27.py +125 -0
- fortisapi/models/conditions_4.py +146 -0
- fortisapi/models/conditions_41.py +146 -0
- fortisapi/models/conditions_42.py +146 -0
- fortisapi/models/conditions_43.py +146 -0
- fortisapi/models/contact.py +179 -0
- fortisapi/models/contact_1.py +822 -0
- fortisapi/models/contact_9.py +169 -0
- fortisapi/models/contact_user_default_entry_page_enum.py +59 -0
- fortisapi/models/context.py +125 -0
- fortisapi/models/country_enum.py +47 -0
- fortisapi/models/created_user.py +1197 -0
- fortisapi/models/currency_code_enum.py +186 -0
- fortisapi/models/currency_type.py +131 -0
- fortisapi/models/data.py +225 -0
- fortisapi/models/data_1.py +105 -0
- fortisapi/models/data_10.py +1283 -0
- fortisapi/models/data_11.py +948 -0
- fortisapi/models/data_12.py +369 -0
- fortisapi/models/data_13.py +263 -0
- fortisapi/models/data_14.py +552 -0
- fortisapi/models/data_15.py +102 -0
- fortisapi/models/data_16.py +930 -0
- fortisapi/models/data_17.py +920 -0
- fortisapi/models/data_18.py +102 -0
- fortisapi/models/data_19.py +631 -0
- fortisapi/models/data_2.py +1134 -0
- fortisapi/models/data_20.py +1657 -0
- fortisapi/models/data_21.py +223 -0
- fortisapi/models/data_22.py +1341 -0
- fortisapi/models/data_23.py +245 -0
- fortisapi/models/data_24.py +219 -0
- fortisapi/models/data_25.py +1456 -0
- fortisapi/models/data_26.py +376 -0
- fortisapi/models/data_27.py +1681 -0
- fortisapi/models/data_28.py +380 -0
- fortisapi/models/data_29.py +4233 -0
- fortisapi/models/data_3.py +296 -0
- fortisapi/models/data_30.py +421 -0
- fortisapi/models/data_31.py +150 -0
- fortisapi/models/data_34.py +103 -0
- fortisapi/models/data_35.py +259 -0
- fortisapi/models/data_36.py +537 -0
- fortisapi/models/data_4.py +482 -0
- fortisapi/models/data_5.py +171 -0
- fortisapi/models/data_6.py +469 -0
- fortisapi/models/data_7.py +230 -0
- fortisapi/models/data_8.py +616 -0
- fortisapi/models/data_9.py +129 -0
- fortisapi/models/debit_credit_enum.py +48 -0
- fortisapi/models/declined_recurring_notification.py +251 -0
- fortisapi/models/default_transaction_type_enum.py +50 -0
- fortisapi/models/delivery_method_enum.py +61 -0
- fortisapi/models/delivery_timeframe_enum.py +61 -0
- fortisapi/models/deposit_type_enum.py +50 -0
- fortisapi/models/detail.py +173 -0
- fortisapi/models/detail_1.py +323 -0
- fortisapi/models/detail_2.py +273 -0
- fortisapi/models/developer_company.py +270 -0
- fortisapi/models/device.py +123 -0
- fortisapi/models/device_binding_status_enum.py +373 -0
- fortisapi/models/device_channel_enum.py +51 -0
- fortisapi/models/document.py +115 -0
- fortisapi/models/e_format_enum.py +62 -0
- fortisapi/models/ebt_plan_enum.py +50 -0
- fortisapi/models/ebt_type_enum.py +61 -0
- fortisapi/models/email_blacklist.py +178 -0
- fortisapi/models/email_enum.py +47 -0
- fortisapi/models/emv_receipt_data.py +244 -0
- fortisapi/models/entry_mode_id_enum.py +73 -0
- fortisapi/models/expand_108_enum.py +48 -0
- fortisapi/models/expand_10_enum.py +42 -0
- fortisapi/models/expand_11_enum.py +99 -0
- fortisapi/models/expand_15_enum.py +42 -0
- fortisapi/models/expand_17_enum.py +96 -0
- fortisapi/models/expand_18_enum.py +84 -0
- fortisapi/models/expand_1_enum.py +75 -0
- fortisapi/models/expand_26_enum.py +87 -0
- fortisapi/models/expand_34_enum.py +42 -0
- fortisapi/models/expand_37_enum.py +42 -0
- fortisapi/models/expand_40_enum.py +63 -0
- fortisapi/models/expand_44_enum.py +48 -0
- fortisapi/models/expand_47_enum.py +69 -0
- fortisapi/models/expand_57_enum.py +54 -0
- fortisapi/models/expand_5_enum.py +48 -0
- fortisapi/models/expand_60_enum.py +171 -0
- fortisapi/models/expand_8_enum.py +57 -0
- fortisapi/models/expand_enum.py +51 -0
- fortisapi/models/field.py +125 -0
- fortisapi/models/field_20.py +267 -0
- fortisapi/models/field_27_enum.py +129 -0
- fortisapi/models/field_28_enum.py +168 -0
- fortisapi/models/field_30_enum.py +75 -0
- fortisapi/models/field_31_enum.py +87 -0
- fortisapi/models/field_33_enum.py +183 -0
- fortisapi/models/field_34_enum.py +195 -0
- fortisapi/models/field_35_enum.py +180 -0
- fortisapi/models/field_36_enum.py +192 -0
- fortisapi/models/field_37_enum.py +102 -0
- fortisapi/models/field_39_enum.py +186 -0
- fortisapi/models/field_41_enum.py +237 -0
- fortisapi/models/field_43_enum.py +198 -0
- fortisapi/models/field_45_enum.py +78 -0
- fortisapi/models/field_46_enum.py +126 -0
- fortisapi/models/field_47_enum.py +60 -0
- fortisapi/models/field_49_enum.py +57 -0
- fortisapi/models/field_51_enum.py +210 -0
- fortisapi/models/field_53_enum.py +84 -0
- fortisapi/models/field_55_enum.py +231 -0
- fortisapi/models/field_57_enum.py +75 -0
- fortisapi/models/field_59_enum.py +510 -0
- fortisapi/models/field_configuration.py +202 -0
- fortisapi/models/file.py +412 -0
- fortisapi/models/file_2.py +125 -0
- fortisapi/models/file_5.py +130 -0
- fortisapi/models/filter_by.py +171 -0
- fortisapi/models/footer.py +134 -0
- fortisapi/models/forecast.py +250 -0
- fortisapi/models/format_1_enum.py +47 -0
- fortisapi/models/format_enum.py +47 -0
- fortisapi/models/header.py +134 -0
- fortisapi/models/helppage.py +270 -0
- fortisapi/models/home_phone.py +130 -0
- fortisapi/models/hosted_payment_page.py +558 -0
- fortisapi/models/identity_verification.py +183 -0
- fortisapi/models/identity_verification_2.py +183 -0
- fortisapi/models/identity_verification_27.py +165 -0
- fortisapi/models/idtype_enum.py +47 -0
- fortisapi/models/iias_ind_enum.py +64 -0
- fortisapi/models/industry_type_enum.py +59 -0
- fortisapi/models/initiation_type_enum.py +92 -0
- fortisapi/models/interval_type_enum.py +50 -0
- fortisapi/models/item_list.py +125 -0
- fortisapi/models/item_list_4.py +99 -0
- fortisapi/models/item_list_5.py +130 -0
- fortisapi/models/joi.py +104 -0
- fortisapi/models/joi_18.py +111 -0
- fortisapi/models/joi_19.py +111 -0
- fortisapi/models/joi_27.py +104 -0
- fortisapi/models/joi_4.py +110 -0
- fortisapi/models/kyc_response_object.py +101 -0
- fortisapi/models/level_3_data.py +481 -0
- fortisapi/models/level_3_data_5.py +324 -0
- fortisapi/models/level_3_data_6.py +469 -0
- fortisapi/models/level_3_default.py +481 -0
- fortisapi/models/line_item.py +450 -0
- fortisapi/models/line_item_13.py +449 -0
- fortisapi/models/line_item_19.py +360 -0
- fortisapi/models/line_item_20.py +273 -0
- fortisapi/models/links.py +196 -0
- fortisapi/models/list.py +650 -0
- fortisapi/models/list_1.py +1134 -0
- fortisapi/models/list_10.py +1657 -0
- fortisapi/models/list_11.py +1341 -0
- fortisapi/models/list_12.py +336 -0
- fortisapi/models/list_13.py +731 -0
- fortisapi/models/list_14.py +245 -0
- fortisapi/models/list_15.py +219 -0
- fortisapi/models/list_16.py +1456 -0
- fortisapi/models/list_17.py +376 -0
- fortisapi/models/list_18.py +1681 -0
- fortisapi/models/list_19.py +380 -0
- fortisapi/models/list_20.py +4233 -0
- fortisapi/models/list_3.py +296 -0
- fortisapi/models/list_4.py +469 -0
- fortisapi/models/list_5.py +948 -0
- fortisapi/models/list_6.py +1283 -0
- fortisapi/models/list_8.py +552 -0
- fortisapi/models/list_9.py +920 -0
- fortisapi/models/location.py +756 -0
- fortisapi/models/location_18.py +217 -0
- fortisapi/models/location_5.py +227 -0
- fortisapi/models/location_billing_account.py +509 -0
- fortisapi/models/location_type_26_enum.py +51 -0
- fortisapi/models/location_type_enum.py +50 -0
- fortisapi/models/locationmarketplace.py +247 -0
- fortisapi/models/log_email.py +364 -0
- fortisapi/models/log_sms.py +315 -0
- fortisapi/models/marketplace.py +247 -0
- fortisapi/models/masync.py +128 -0
- fortisapi/models/merchant_list.py +193 -0
- fortisapi/models/merchant_risk_indicator.py +341 -0
- fortisapi/models/message_category_enum.py +119 -0
- fortisapi/models/message_extension.py +177 -0
- fortisapi/models/meta.py +107 -0
- fortisapi/models/method_3.py +147 -0
- fortisapi/models/method_50.py +145 -0
- fortisapi/models/method_53_enum.py +56 -0
- fortisapi/models/method_5_enum.py +56 -0
- fortisapi/models/method_enum.py +56 -0
- fortisapi/models/mobile_phone.py +130 -0
- fortisapi/models/modified_user.py +1197 -0
- fortisapi/models/multi_transaction.py +147 -0
- fortisapi/models/operator_1_enum.py +59 -0
- fortisapi/models/operator_enum.py +47 -0
- fortisapi/models/order_21.py +99 -0
- fortisapi/models/order_enum.py +47 -0
- fortisapi/models/owner.py +322 -0
- fortisapi/models/ownership_type_enum.py +71 -0
- fortisapi/models/page.py +132 -0
- fortisapi/models/pagination.py +196 -0
- fortisapi/models/parent.py +822 -0
- fortisapi/models/parent_3.py +756 -0
- fortisapi/models/partner_enum.py +71 -0
- fortisapi/models/paylink_action_enum.py +47 -0
- fortisapi/models/payment_acc_ind_enum.py +67 -0
- fortisapi/models/payment_method_16_enum.py +47 -0
- fortisapi/models/payment_method_1_enum.py +47 -0
- fortisapi/models/payment_method_9_enum.py +50 -0
- fortisapi/models/payment_method_enum.py +50 -0
- fortisapi/models/payment_recurring_notification.py +251 -0
- fortisapi/models/payment_type_priority_enum.py +47 -0
- fortisapi/models/postback_log.py +295 -0
- fortisapi/models/postback_status_id_enum.py +53 -0
- fortisapi/models/pre_order_purchase_ind_enum.py +52 -0
- fortisapi/models/preferred_language_enum.py +51 -0
- fortisapi/models/preferred_protocol_version_enum.py +65 -0
- fortisapi/models/pricing_element.py +147 -0
- fortisapi/models/primary_principal.py +396 -0
- fortisapi/models/primary_principal_1.py +376 -0
- fortisapi/models/process_method_enum.py +47 -0
- fortisapi/models/processor_enum.py +59 -0
- fortisapi/models/product_accountvault.py +317 -0
- fortisapi/models/product_file.py +416 -0
- fortisapi/models/product_file_1.py +414 -0
- fortisapi/models/product_invoice.py +651 -0
- fortisapi/models/product_recurring.py +387 -0
- fortisapi/models/product_token.py +317 -0
- fortisapi/models/product_transaction.py +3048 -0
- fortisapi/models/product_transaction_1.py +3046 -0
- fortisapi/models/purchase.py +501 -0
- fortisapi/models/quick_invoice.py +1256 -0
- fortisapi/models/quick_invoice_setting.py +299 -0
- fortisapi/models/quick_invoice_view.py +176 -0
- fortisapi/models/reason_code.py +131 -0
- fortisapi/models/reason_code_id_1_enum.py +935 -0
- fortisapi/models/reason_code_id_enum.py +578 -0
- fortisapi/models/reason_model_enum.py +74 -0
- fortisapi/models/received_email.py +364 -0
- fortisapi/models/recipients_enum.py +62 -0
- fortisapi/models/recurring.py +975 -0
- fortisapi/models/recurring_3.py +977 -0
- fortisapi/models/recurring_flag_enum.py +64 -0
- fortisapi/models/recurring_split.py +200 -0
- fortisapi/models/recurring_type_id_enum.py +47 -0
- fortisapi/models/registration_field_enum.py +87 -0
- fortisapi/models/rejected_transaction.py +3198 -0
- fortisapi/models/rejected_transaction_ach_retry.py +244 -0
- fortisapi/models/relationship_enum.py +50 -0
- fortisapi/models/reorder_items_ind_enum.py +51 -0
- fortisapi/models/report_export_type_enum.py +53 -0
- fortisapi/models/resource_12_enum.py +52 -0
- fortisapi/models/resource_2_enum.py +50 -0
- fortisapi/models/resource_enum.py +55 -0
- fortisapi/models/response_416_date_range.py +148 -0
- fortisapi/models/response_417_filter_channels.py +148 -0
- fortisapi/models/response_apple_pay_validate_merchant.py +126 -0
- fortisapi/models/response_async_status.py +126 -0
- fortisapi/models/response_batchs_collection.py +228 -0
- fortisapi/models/response_calculate_surcharge.py +126 -0
- fortisapi/models/response_contact.py +126 -0
- fortisapi/models/response_contact_searchs_collection.py +228 -0
- fortisapi/models/response_contacts_collection.py +228 -0
- fortisapi/models/response_declined_recurring_transaction.py +126 -0
- fortisapi/models/response_declined_recurring_transaction_payment.py +126 -0
- fortisapi/models/response_declined_recurring_transaction_resend.py +126 -0
- fortisapi/models/response_declined_recurring_transactions_collection.py +228 -0
- fortisapi/models/response_device_term.py +126 -0
- fortisapi/models/response_device_terms_collection.py +228 -0
- fortisapi/models/response_fullboarding.py +126 -0
- fortisapi/models/response_location.py +126 -0
- fortisapi/models/response_location_info.py +126 -0
- fortisapi/models/response_location_infos_collection.py +228 -0
- fortisapi/models/response_location_searchs_collection.py +228 -0
- fortisapi/models/response_locations_collection.py +228 -0
- fortisapi/models/response_merchant.py +126 -0
- fortisapi/models/response_merchant_deposit.py +126 -0
- fortisapi/models/response_merchant_deposits_collection.py +228 -0
- fortisapi/models/response_merchant_details.py +126 -0
- fortisapi/models/response_onboarding.py +126 -0
- fortisapi/models/response_paylink.py +126 -0
- fortisapi/models/response_paylinks_collection.py +228 -0
- fortisapi/models/response_payment_card_reader_token.py +126 -0
- fortisapi/models/response_quick_invoice.py +126 -0
- fortisapi/models/response_quick_invoice_resend.py +126 -0
- fortisapi/models/response_quick_invoices_collection.py +228 -0
- fortisapi/models/response_recurring.py +126 -0
- fortisapi/models/response_recurrings_collection.py +228 -0
- fortisapi/models/response_reporting_reports_cc_settled_transactions_collection.py +231 -0
- fortisapi/models/response_reporting_reports_chargebacks_collection.py +228 -0
- fortisapi/models/response_signature.py +126 -0
- fortisapi/models/response_signatures_collection.py +228 -0
- fortisapi/models/response_tag.py +126 -0
- fortisapi/models/response_tags_collection.py +228 -0
- fortisapi/models/response_terminal.py +126 -0
- fortisapi/models/response_terminals_collection.py +228 -0
- fortisapi/models/response_three_ds_authentication.py +126 -0
- fortisapi/models/response_three_ds_transaction.py +126 -0
- fortisapi/models/response_ticket.py +126 -0
- fortisapi/models/response_ticket_intention.py +126 -0
- fortisapi/models/response_tickets_collection.py +228 -0
- fortisapi/models/response_token.py +126 -0
- fortisapi/models/response_tokens_collection.py +228 -0
- fortisapi/models/response_transaction.py +126 -0
- fortisapi/models/response_transaction_ach_retry.py +126 -0
- fortisapi/models/response_transaction_ach_retrys_collection.py +228 -0
- fortisapi/models/response_transaction_bin_info.py +126 -0
- fortisapi/models/response_transaction_intention.py +126 -0
- fortisapi/models/response_transaction_level_3.py +126 -0
- fortisapi/models/response_transaction_level_3_master.py +126 -0
- fortisapi/models/response_transaction_level_3_visa.py +126 -0
- fortisapi/models/response_transaction_processing.py +126 -0
- fortisapi/models/response_transactions_collection.py +228 -0
- fortisapi/models/response_webhook.py +126 -0
- fortisapi/models/result.py +152 -0
- fortisapi/models/retry_transaction.py +3198 -0
- fortisapi/models/retry_transaction_ach_retry.py +246 -0
- fortisapi/models/return_fee_transaction.py +3198 -0
- fortisapi/models/return_fee_transaction_ach_retry.py +246 -0
- fortisapi/models/saved_account.py +1408 -0
- fortisapi/models/scheme_id_enum.py +54 -0
- fortisapi/models/sec_code_enum.py +51 -0
- fortisapi/models/settings.py +148 -0
- fortisapi/models/settled_currency_enum.py +168 -0
- fortisapi/models/severity_enum.py +62 -0
- fortisapi/models/ship_address_usage_ind_enum.py +62 -0
- fortisapi/models/ship_indicator_enum.py +101 -0
- fortisapi/models/ship_name_indicator_enum.py +52 -0
- fortisapi/models/shipping_address.py +264 -0
- fortisapi/models/signature.py +220 -0
- fortisapi/models/sms_blacklist.py +178 -0
- fortisapi/models/sms_enum.py +47 -0
- fortisapi/models/sort.py +132 -0
- fortisapi/models/source_enum.py +56 -0
- fortisapi/models/stack_enum.py +47 -0
- fortisapi/models/status_11.py +131 -0
- fortisapi/models/status_3_enum.py +47 -0
- fortisapi/models/status_5.py +102 -0
- fortisapi/models/status_code_12_enum.py +47 -0
- fortisapi/models/status_code_17_enum.py +102 -0
- fortisapi/models/status_code_enum.py +50 -0
- fortisapi/models/status_enum.py +50 -0
- fortisapi/models/status_id_enum.py +47 -0
- fortisapi/models/surcharge.py +574 -0
- fortisapi/models/surcharge_transaction.py +367 -0
- fortisapi/models/suspicious_acc_activity_enum.py +52 -0
- fortisapi/models/tag.py +194 -0
- fortisapi/models/tag_transaction.py +319 -0
- fortisapi/models/tax_exempt_enum.py +61 -0
- fortisapi/models/tax_surcharge_config_enum.py +47 -0
- fortisapi/models/terminal.py +1245 -0
- fortisapi/models/terminal_2.py +1243 -0
- fortisapi/models/terminal_application.py +411 -0
- fortisapi/models/terminal_cvm.py +293 -0
- fortisapi/models/terminal_manufacturer.py +249 -0
- fortisapi/models/terminal_manufacturer_code_enum.py +55 -0
- fortisapi/models/terminal_router.py +245 -0
- fortisapi/models/terminal_timeouts.py +304 -0
- fortisapi/models/terminal_timeouts_12.py +314 -0
- fortisapi/models/three_ds_req_auth_method_enum.py +154 -0
- fortisapi/models/three_ds_req_prior_auth_method_enum.py +123 -0
- fortisapi/models/three_ds_requestor.py +345 -0
- fortisapi/models/three_ds_requestor_authentication_ind_enum.py +141 -0
- fortisapi/models/three_ds_requestor_authentication_info.py +179 -0
- fortisapi/models/three_ds_requestor_challenge_ind_enum.py +126 -0
- fortisapi/models/three_ds_requestor_dec_req_ind_enum.py +72 -0
- fortisapi/models/three_ds_requestor_prior_authentication_info.py +188 -0
- fortisapi/models/three_ds_requestor_spc_support_enum.py +49 -0
- fortisapi/models/three_ri_ind_enum.py +180 -0
- fortisapi/models/tip_percents.py +160 -0
- fortisapi/models/trans_char_enum.py +45 -0
- fortisapi/models/transaction.py +3196 -0
- fortisapi/models/transaction_batch.py +537 -0
- fortisapi/models/transaction_batch_settlement.py +202 -0
- fortisapi/models/transaction_history.py +246 -0
- fortisapi/models/transaction_level_3.py +152 -0
- fortisapi/models/transaction_reference.py +298 -0
- fortisapi/models/transaction_split.py +221 -0
- fortisapi/models/transaction_status_enum.py +88 -0
- fortisapi/models/transaction_type_enum.py +68 -0
- fortisapi/models/trx_source_code_enum.py +155 -0
- fortisapi/models/trx_source_id_enum.py +155 -0
- fortisapi/models/type_103_enum.py +44 -0
- fortisapi/models/type_105_enum.py +44 -0
- fortisapi/models/type_10_enum.py +44 -0
- fortisapi/models/type_110_enum.py +44 -0
- fortisapi/models/type_114_enum.py +44 -0
- fortisapi/models/type_11_enum.py +44 -0
- fortisapi/models/type_121_enum.py +44 -0
- fortisapi/models/type_123.py +131 -0
- fortisapi/models/type_124_enum.py +44 -0
- fortisapi/models/type_125_enum.py +44 -0
- fortisapi/models/type_126_enum.py +44 -0
- fortisapi/models/type_127_enum.py +44 -0
- fortisapi/models/type_128_enum.py +44 -0
- fortisapi/models/type_134_enum.py +44 -0
- fortisapi/models/type_135_enum.py +44 -0
- fortisapi/models/type_136_enum.py +44 -0
- fortisapi/models/type_15_enum.py +44 -0
- fortisapi/models/type_16_enum.py +44 -0
- fortisapi/models/type_1_enum.py +44 -0
- fortisapi/models/type_20_enum.py +44 -0
- fortisapi/models/type_21_enum.py +44 -0
- fortisapi/models/type_22_enum.py +44 -0
- fortisapi/models/type_23_enum.py +44 -0
- fortisapi/models/type_27_enum.py +44 -0
- fortisapi/models/type_28_enum.py +44 -0
- fortisapi/models/type_29_enum.py +64 -0
- fortisapi/models/type_2_enum.py +44 -0
- fortisapi/models/type_30_enum.py +44 -0
- fortisapi/models/type_31_enum.py +44 -0
- fortisapi/models/type_35_enum.py +44 -0
- fortisapi/models/type_39_enum.py +44 -0
- fortisapi/models/type_3_enum.py +44 -0
- fortisapi/models/type_43_enum.py +44 -0
- fortisapi/models/type_44_enum.py +44 -0
- fortisapi/models/type_45_enum.py +44 -0
- fortisapi/models/type_46_enum.py +44 -0
- fortisapi/models/type_47_enum.py +44 -0
- fortisapi/models/type_48_enum.py +44 -0
- fortisapi/models/type_4_enum.py +44 -0
- fortisapi/models/type_52_enum.py +44 -0
- fortisapi/models/type_53_enum.py +44 -0
- fortisapi/models/type_54_enum.py +44 -0
- fortisapi/models/type_55_enum.py +44 -0
- fortisapi/models/type_59_enum.py +44 -0
- fortisapi/models/type_5_enum.py +44 -0
- fortisapi/models/type_60_enum.py +44 -0
- fortisapi/models/type_61_enum.py +45 -0
- fortisapi/models/type_62_enum.py +44 -0
- fortisapi/models/type_63_enum.py +91 -0
- fortisapi/models/type_64_enum.py +44 -0
- fortisapi/models/type_65_enum.py +44 -0
- fortisapi/models/type_6_enum.py +44 -0
- fortisapi/models/type_70_enum.py +44 -0
- fortisapi/models/type_71_enum.py +44 -0
- fortisapi/models/type_75_enum.py +44 -0
- fortisapi/models/type_79_enum.py +44 -0
- fortisapi/models/type_83_enum.py +44 -0
- fortisapi/models/type_84_enum.py +44 -0
- fortisapi/models/type_88_enum.py +44 -0
- fortisapi/models/type_89_enum.py +44 -0
- fortisapi/models/type_93_enum.py +44 -0
- fortisapi/models/type_94_enum.py +44 -0
- fortisapi/models/type_98_enum.py +44 -0
- fortisapi/models/type_99_enum.py +44 -0
- fortisapi/models/type_enum.py +44 -0
- fortisapi/models/type_id_enum.py +59 -0
- fortisapi/models/ui_prefs.py +204 -0
- fortisapi/models/update_if_exists_enum.py +44 -0
- fortisapi/models/user.py +180 -0
- fortisapi/models/user_1.py +1197 -0
- fortisapi/models/user_9.py +1195 -0
- fortisapi/models/user_type_code_enum.py +74 -0
- fortisapi/models/v_1_contacts_request.py +685 -0
- fortisapi/models/v_1_contacts_request_1.py +707 -0
- fortisapi/models/v_1_declined_recurring_transaction_payments_request.py +354 -0
- fortisapi/models/v_1_device_terms_request.py +161 -0
- fortisapi/models/v_1_elements_ticket_intention_request.py +195 -0
- fortisapi/models/v_1_elements_transaction_intention_request.py +591 -0
- fortisapi/models/v_1_fullboarding_request.py +827 -0
- fortisapi/models/v_1_merchant_threedsecure_authentication_request.py +696 -0
- fortisapi/models/v_1_onboarding_request.py +833 -0
- fortisapi/models/v_1_paylinks_request.py +723 -0
- fortisapi/models/v_1_paylinks_request_1.py +735 -0
- fortisapi/models/v_1_public_calculate_surcharge_request.py +527 -0
- fortisapi/models/v_1_quick_invoices_request.py +1035 -0
- fortisapi/models/v_1_quick_invoices_request_1.py +1070 -0
- fortisapi/models/v_1_quick_invoices_transaction_request.py +86 -0
- fortisapi/models/v_1_recurrings_defer_payment_request.py +86 -0
- fortisapi/models/v_1_recurrings_request.py +742 -0
- fortisapi/models/v_1_recurrings_request_1.py +750 -0
- fortisapi/models/v_1_recurrings_skip_payment_request.py +86 -0
- fortisapi/models/v_1_signatures_request.py +113 -0
- fortisapi/models/v_1_tags_request.py +99 -0
- fortisapi/models/v_1_tags_request_1.py +130 -0
- fortisapi/models/v_1_terminals_request.py +1005 -0
- fortisapi/models/v_1_terminals_request_1.py +1112 -0
- fortisapi/models/v_1_tickets_request.py +286 -0
- fortisapi/models/v_1_tokens_ach_request.py +945 -0
- fortisapi/models/v_1_tokens_ach_request_1.py +907 -0
- fortisapi/models/v_1_tokens_cc_request.py +1071 -0
- fortisapi/models/v_1_tokens_cc_request_1.py +905 -0
- fortisapi/models/v_1_tokens_previous_transaction_request.py +858 -0
- fortisapi/models/v_1_tokens_terminal_async_request.py +889 -0
- fortisapi/models/v_1_tokens_terminal_request.py +889 -0
- fortisapi/models/v_1_tokens_ticket_request.py +882 -0
- fortisapi/models/v_1_tokens_wallet_request.py +919 -0
- fortisapi/models/v_1_transaction_ach_retries_request.py +119 -0
- fortisapi/models/v_1_transactions_ach_credit_keyed_request.py +1600 -0
- fortisapi/models/v_1_transactions_ach_credit_prev_trxn_request.py +1616 -0
- fortisapi/models/v_1_transactions_ach_credit_token_request.py +1660 -0
- fortisapi/models/v_1_transactions_ach_debit_keyed_request.py +1600 -0
- fortisapi/models/v_1_transactions_ach_debit_prev_trxn_request.py +1616 -0
- fortisapi/models/v_1_transactions_ach_debit_token_request.py +1660 -0
- fortisapi/models/v_1_transactions_ach_refund_prev_trxn_request.py +1616 -0
- fortisapi/models/v_1_transactions_auth_complete_request.py +1519 -0
- fortisapi/models/v_1_transactions_auth_increment_request.py +1533 -0
- fortisapi/models/v_1_transactions_cash_refund_request.py +1515 -0
- fortisapi/models/v_1_transactions_cash_sale_request.py +1489 -0
- fortisapi/models/v_1_transactions_cc_auth_only_keyed_request.py +2164 -0
- fortisapi/models/v_1_transactions_cc_auth_only_prev_trxn_request.py +2124 -0
- fortisapi/models/v_1_transactions_cc_auth_only_taptopay_request.py +1843 -0
- fortisapi/models/v_1_transactions_cc_auth_only_terminal_request.py +2082 -0
- fortisapi/models/v_1_transactions_cc_auth_only_ticket_request.py +2050 -0
- fortisapi/models/v_1_transactions_cc_auth_only_token_request.py +2129 -0
- fortisapi/models/v_1_transactions_cc_auth_only_wallet_request.py +2062 -0
- fortisapi/models/v_1_transactions_cc_avs_only_keyed_request.py +2175 -0
- fortisapi/models/v_1_transactions_cc_avs_only_prev_trxn_request.py +2124 -0
- fortisapi/models/v_1_transactions_cc_avs_only_swiped_request.py +2086 -0
- fortisapi/models/v_1_transactions_cc_avs_only_terminal_request.py +2093 -0
- fortisapi/models/v_1_transactions_cc_avs_only_ticket_request.py +2061 -0
- fortisapi/models/v_1_transactions_cc_avs_only_token_request.py +2140 -0
- fortisapi/models/v_1_transactions_cc_avs_only_wallet_request.py +2073 -0
- fortisapi/models/v_1_transactions_cc_balance_inquiry_keyed_request.py +2176 -0
- fortisapi/models/v_1_transactions_cc_balance_inquiry_prev_trxn_request.py +2125 -0
- fortisapi/models/v_1_transactions_cc_balance_inquiry_swiped_request.py +2087 -0
- fortisapi/models/v_1_transactions_cc_balance_inquiry_terminal_request.py +2094 -0
- fortisapi/models/v_1_transactions_cc_balance_inquiry_ticket_request.py +2062 -0
- fortisapi/models/v_1_transactions_cc_balance_inquiry_token_request.py +2141 -0
- fortisapi/models/v_1_transactions_cc_balance_inquiry_wallet_request.py +2074 -0
- fortisapi/models/v_1_transactions_cc_refund_keyed_request.py +2218 -0
- fortisapi/models/v_1_transactions_cc_refund_prev_trxn_request.py +2124 -0
- fortisapi/models/v_1_transactions_cc_refund_taptopay_request.py +1869 -0
- fortisapi/models/v_1_transactions_cc_refund_terminal_request.py +2082 -0
- fortisapi/models/v_1_transactions_cc_refund_ticket_request.py +2050 -0
- fortisapi/models/v_1_transactions_cc_refund_token_request.py +2129 -0
- fortisapi/models/v_1_transactions_cc_refund_wallet_request.py +2062 -0
- fortisapi/models/v_1_transactions_cc_sale_keyed_request.py +2164 -0
- fortisapi/models/v_1_transactions_cc_sale_prev_trxn_request.py +2124 -0
- fortisapi/models/v_1_transactions_cc_sale_taptopay_request.py +1843 -0
- fortisapi/models/v_1_transactions_cc_sale_terminal_request.py +2082 -0
- fortisapi/models/v_1_transactions_cc_sale_ticket_request.py +2050 -0
- fortisapi/models/v_1_transactions_cc_sale_token_request.py +2129 -0
- fortisapi/models/v_1_transactions_cc_sale_wallet_request.py +2062 -0
- fortisapi/models/v_1_transactions_ebt_voucher_clear_refund_keyed_request.py +2190 -0
- fortisapi/models/v_1_transactions_ebt_voucher_clear_sale_keyed_request.py +2190 -0
- fortisapi/models/v_1_transactions_level_3_master_card_request.py +91 -0
- fortisapi/models/v_1_transactions_level_3_visa_request.py +91 -0
- fortisapi/models/v_1_transactions_partial_reversal_request.py +1462 -0
- fortisapi/models/v_1_transactions_refund_request.py +1448 -0
- fortisapi/models/v_1_transactions_tip_adjust_request.py +1973 -0
- fortisapi/models/v_1_transactions_void_request.py +130 -0
- fortisapi/models/v_1_wallet_provider_apple_pay_validate_merchant_request.py +127 -0
- fortisapi/models/v_1_wallet_provider_merchant_details_request.py +87 -0
- fortisapi/models/v_1_webhooks_apm_onboarding_request.py +421 -0
- fortisapi/models/v_1_webhooks_apm_onboarding_request_1.py +494 -0
- fortisapi/models/v_1_webhooks_batch_request.py +410 -0
- fortisapi/models/v_1_webhooks_batch_request_1.py +494 -0
- fortisapi/models/v_1_webhooks_contact_request.py +421 -0
- fortisapi/models/v_1_webhooks_contact_request_1.py +494 -0
- fortisapi/models/v_1_webhooks_transaction_request.py +410 -0
- fortisapi/models/v_1_webhooks_transaction_request_1.py +494 -0
- fortisapi/models/values_4_enum.py +59 -0
- fortisapi/models/values_50_enum.py +59 -0
- fortisapi/models/values_51_enum.py +62 -0
- fortisapi/models/values_58_enum.py +59 -0
- fortisapi/models/values_5_enum.py +59 -0
- fortisapi/models/values_6_enum.py +59 -0
- fortisapi/models/values_7_enum.py +59 -0
- fortisapi/models/values_99_enum.py +45 -0
- fortisapi/models/values_enum.py +51 -0
- fortisapi/models/wallet_provider_enum.py +47 -0
- fortisapi/models/wallet_type_enum.py +86 -0
- fortisapi/models/work_phone.py +130 -0
- fortisapi/utilities/__init__.py +6 -0
- fortisapi/utilities/file_wrapper.py +45 -0
- fortisapi/utilities/union_type_lookup.py +436 -0
|
@@ -0,0 +1,3046 @@
|
|
|
1
|
+
"""fortisapi.
|
|
2
|
+
|
|
3
|
+
This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
# ruff: noqa: E501
|
|
7
|
+
from fortisapi.api_helper import APIHelper
|
|
8
|
+
from fortisapi.models.batch_risk_config import (
|
|
9
|
+
BatchRiskConfig,
|
|
10
|
+
)
|
|
11
|
+
from fortisapi.models.level_3_default import (
|
|
12
|
+
Level3Default,
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class ProductTransaction1(object):
|
|
17
|
+
"""Implementation of the 'ProductTransaction1' model.
|
|
18
|
+
|
|
19
|
+
Attributes:
|
|
20
|
+
processor_version (str): Processor Version
|
|
21
|
+
industry_type (IndustryTypeEnum): Industry Type
|
|
22
|
+
title (str): Title
|
|
23
|
+
payment_method (PaymentMethodEnum): Payment method
|
|
24
|
+
processor (ProcessorEnum): Processor
|
|
25
|
+
mcc (str): MCC
|
|
26
|
+
tax_surcharge_config (TaxSurchargeConfigEnum): Tax Surcharge Config
|
|
27
|
+
terminal_id (str): Terminal ID
|
|
28
|
+
partner (PartnerEnum): Partner
|
|
29
|
+
product_ach_pv_store_id (str): Product Ach Pv Store ID
|
|
30
|
+
invoice_adjustment_title (str): Invoice Adjustment Title
|
|
31
|
+
location_id (str): Location ID
|
|
32
|
+
location_api_id (str): Location Api ID
|
|
33
|
+
billing_location_api_id (str): Billing Location API ID
|
|
34
|
+
portfolio_id (str): Portfolio ID
|
|
35
|
+
portfolio_validation_rule (str): Product Validation Rule
|
|
36
|
+
sub_processor (str): Sub Processor
|
|
37
|
+
surcharge (Any): Surcharge
|
|
38
|
+
processor_data (Any): The model property of type Any.
|
|
39
|
+
vt_clerk_number (bool): Vt Clerk Number
|
|
40
|
+
vt_billing_phone (bool): Card Type JCB
|
|
41
|
+
vt_enable_tip (bool): VT Enable Tip
|
|
42
|
+
ach_allow_debit (bool): Ach Allow Debit
|
|
43
|
+
ach_allow_credit (bool): Ach Allow Credit
|
|
44
|
+
ach_allow_refund (bool): Ach Allow Refund
|
|
45
|
+
vt_cvv (bool): VT CVV
|
|
46
|
+
vt_street (bool): VT Street
|
|
47
|
+
vt_zip (bool): VT Zip
|
|
48
|
+
vt_order_num (bool): VT Order Num
|
|
49
|
+
vt_enable (bool): VT Enable
|
|
50
|
+
receipt_show_contact_name (bool): Receipt Show Contact Name
|
|
51
|
+
display_avs (bool): Display Avs
|
|
52
|
+
card_type_visa (bool): Card Type Visa
|
|
53
|
+
card_type_mc (bool): Card Type Mc
|
|
54
|
+
card_type_disc (bool): Card Type Disc
|
|
55
|
+
card_type_amex (bool): Card Type Amex
|
|
56
|
+
card_type_diners (bool): Card Type Dinners
|
|
57
|
+
card_type_jcb (bool): The model property of type bool.
|
|
58
|
+
card_type_ebt (bool): Card Type EBT
|
|
59
|
+
allow_ebt_cash_benefit (bool): Allow EBT Cash Benefit
|
|
60
|
+
allow_ebt_food_stamp (bool): Allow EBT Food Stamp
|
|
61
|
+
invoice_location (bool): Invoice Location
|
|
62
|
+
allow_partial_authorization (bool): Allow Partial Authorization
|
|
63
|
+
allow_recurring_partial_authorization (bool): Allow Recurring Partial
|
|
64
|
+
Authorization
|
|
65
|
+
auto_decline_cvv (bool): Auto Decline Cvv
|
|
66
|
+
auto_decline_street (bool): Auto Decline Street
|
|
67
|
+
auto_decline_zip (bool): Auto Decline ZIP
|
|
68
|
+
split_payments_allow (bool): Split Payments Allow
|
|
69
|
+
vt_show_custom_fields (bool): Vt Show Custom Fields
|
|
70
|
+
receipt_show_custom_fields (bool): Receipt Show Custom Fields
|
|
71
|
+
vt_override_sales_tax_allowed (bool): Vt Override Sales Tax Allowed
|
|
72
|
+
vt_enable_sales_tax (bool): Vt Enable Sales Tax
|
|
73
|
+
vt_require_zip (bool): Vt Require ZIP
|
|
74
|
+
vt_require_street (bool): Vt Require Street
|
|
75
|
+
auto_decline_cavv (bool): Auto Decline Cavv
|
|
76
|
+
merchant_id (str): Merchant ID
|
|
77
|
+
receipt_header (str): Receipt Header
|
|
78
|
+
receipt_footer (str): Receipt Footer
|
|
79
|
+
receipt_add_account_above_signature (str): Receipt Add Account Above Signature
|
|
80
|
+
receipt_add_recurring_above_signature (str): Receipt Add Recurring Above
|
|
81
|
+
Signature
|
|
82
|
+
receipt_vt_above_signature (str): Receipt VT Above Signature
|
|
83
|
+
default_transaction_type (DefaultTransactionTypeEnum): Default Transaction
|
|
84
|
+
Type
|
|
85
|
+
username (str): Username
|
|
86
|
+
password (str): Passowrd
|
|
87
|
+
current_batch (float): Current Batch
|
|
88
|
+
dup_check_per_batch (str): Dup Check Per Batch
|
|
89
|
+
agent_code (str): Agent Code
|
|
90
|
+
paylink_allow (bool): Paylink Allow
|
|
91
|
+
quick_invoice_allow (bool): Quick Invoice Allow
|
|
92
|
+
level_3_allow (bool): Level3 Allow
|
|
93
|
+
payfac_enable (bool): Payfac Enable
|
|
94
|
+
enable_3_ds (bool): Enable 3DS
|
|
95
|
+
sales_office_id (str): Sales Office ID
|
|
96
|
+
hosted_payment_page_max_allowed (float): Hosted Payment Page Max Allowed
|
|
97
|
+
hosted_payment_page_allow (bool): Hosted Payment Page Allow
|
|
98
|
+
surcharge_id (str): Surcharge ID
|
|
99
|
+
allow_big_commerce (bool): Allow Big Commerce
|
|
100
|
+
allow_shopify (bool): Allow Shopify
|
|
101
|
+
level_3_default (Level3Default): Level3 Default
|
|
102
|
+
cau_subscribe_type_id (CauSubscribeTypeIdEnum): Cau Subscribe Type ID
|
|
103
|
+
cau_account_number (str): Cau Account Number
|
|
104
|
+
location_billing_account_id (str): Location Billing Account ID
|
|
105
|
+
product_billing_group_id (str): Product Billing Group ID
|
|
106
|
+
account_number (str): Account number
|
|
107
|
+
run_avs_on_accountvault_create (bool): Run Avs On Accountvault Create
|
|
108
|
+
accountvault_expire_notification_email_enable (bool): Accountvault Expire
|
|
109
|
+
Notification Email Enable
|
|
110
|
+
debit_allow_void (bool): Debit Allow Void
|
|
111
|
+
quick_invoice_text_to_pay (bool): Quick Invoice Text To Pay
|
|
112
|
+
authentication_code (str): Authentication Code
|
|
113
|
+
sms_enable (bool): SMS Enable
|
|
114
|
+
vt_show_currency (bool): Vt Show Currency
|
|
115
|
+
receipt_show_currency (bool): Receipt Show Currency
|
|
116
|
+
allow_blind_refund (bool): Allow Blind Refund
|
|
117
|
+
vt_show_company_name (bool): Vt Show Company Name
|
|
118
|
+
receipt_show_company_name (bool): Receipt Show Company Name
|
|
119
|
+
bank_funded_only (bool): Bank Funded Only
|
|
120
|
+
require_cvv_on_keyed_cnp (bool): Require CVV on keyed CNP
|
|
121
|
+
require_cvv_on_tokenized_cnp (bool): Require CVV on tokenized CNP
|
|
122
|
+
show_secondary_amount (bool): Show Retained Amount
|
|
123
|
+
allow_secondary_amount (bool): Allow Retained Amount
|
|
124
|
+
show_google_pay (bool): Vt Require Street
|
|
125
|
+
show_apple_pay (bool): Vt Require Street
|
|
126
|
+
batch_risk_config (BatchRiskConfig): Batch Risk Config
|
|
127
|
+
currency_code (CurrencyCodeEnum): The currency code, in ISO 4217 format. It
|
|
128
|
+
can be either the 3-letter code (e.g., USD) or the numeric code (e.g.,
|
|
129
|
+
840).
|
|
130
|
+
enable_ach_validation (bool): Enable ACH Validation
|
|
131
|
+
enable_ach_retry (bool): Enable ACH Retry
|
|
132
|
+
allow_softpos (bool): Allow Soft POS
|
|
133
|
+
allow_multi_currency (bool): Allow Multi Currency
|
|
134
|
+
allow_unapplied_payments (bool): Allow Unapplied Payments
|
|
135
|
+
id (str): User Reports ID
|
|
136
|
+
receipt_logo (str): Receipt Logo
|
|
137
|
+
active (bool): Active
|
|
138
|
+
tz (str): TZ
|
|
139
|
+
current_stan (float): Current Stan
|
|
140
|
+
created_ts (int): Created Time Stamp
|
|
141
|
+
modified_ts (int): Modified Time Stamp
|
|
142
|
+
created_user_id (str): User ID Created the register
|
|
143
|
+
modified_user_id (str): Last User ID that updated the register
|
|
144
|
+
product_transaction_api_id (str): Product Transaction API ID
|
|
145
|
+
transaction_amount_notification_threshold (int): Transaction Amount
|
|
146
|
+
Notification Treshold
|
|
147
|
+
is_secondary_amount_allowed (bool): Allow Retained Amount
|
|
148
|
+
fortis_id (str): The model property of type str.
|
|
149
|
+
product_billing_group_code (str): Product Billing Group Code
|
|
150
|
+
cau_subscribe_type_code (CauSubscribeTypeCodeEnum): Cau Subscribe Type Code
|
|
151
|
+
merchant_code (str): Merchant Code
|
|
152
|
+
currency (str): Currency
|
|
153
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
154
|
+
model.
|
|
155
|
+
|
|
156
|
+
"""
|
|
157
|
+
|
|
158
|
+
# Create a mapping from Model property names to API property names
|
|
159
|
+
_names = {
|
|
160
|
+
"processor_version": "processor_version",
|
|
161
|
+
"industry_type": "industry_type",
|
|
162
|
+
"title": "title",
|
|
163
|
+
"payment_method": "payment_method",
|
|
164
|
+
"processor": "processor",
|
|
165
|
+
"mcc": "mcc",
|
|
166
|
+
"tax_surcharge_config": "tax_surcharge_config",
|
|
167
|
+
"terminal_id": "terminal_id",
|
|
168
|
+
"partner": "partner",
|
|
169
|
+
"product_ach_pv_store_id": "product_ach_pv_store_id",
|
|
170
|
+
"invoice_adjustment_title": "invoice_adjustment_title",
|
|
171
|
+
"location_id": "location_id",
|
|
172
|
+
"location_api_id": "location_api_id",
|
|
173
|
+
"billing_location_api_id": "billing_location_api_id",
|
|
174
|
+
"portfolio_id": "portfolio_id",
|
|
175
|
+
"portfolio_validation_rule": "portfolioValidationRule",
|
|
176
|
+
"sub_processor": "sub_processor",
|
|
177
|
+
"surcharge": "surcharge",
|
|
178
|
+
"processor_data": "processor_data",
|
|
179
|
+
"vt_clerk_number": "vt_clerk_number",
|
|
180
|
+
"vt_billing_phone": "vt_billing_phone",
|
|
181
|
+
"vt_enable_tip": "vt_enable_tip",
|
|
182
|
+
"ach_allow_debit": "ach_allow_debit",
|
|
183
|
+
"ach_allow_credit": "ach_allow_credit",
|
|
184
|
+
"ach_allow_refund": "ach_allow_refund",
|
|
185
|
+
"vt_cvv": "vt_cvv",
|
|
186
|
+
"vt_street": "vt_street",
|
|
187
|
+
"vt_zip": "vt_zip",
|
|
188
|
+
"vt_order_num": "vt_order_num",
|
|
189
|
+
"vt_enable": "vt_enable",
|
|
190
|
+
"receipt_show_contact_name": "receipt_show_contact_name",
|
|
191
|
+
"display_avs": "display_avs",
|
|
192
|
+
"card_type_visa": "card_type_visa",
|
|
193
|
+
"card_type_mc": "card_type_mc",
|
|
194
|
+
"card_type_disc": "card_type_disc",
|
|
195
|
+
"card_type_amex": "card_type_amex",
|
|
196
|
+
"card_type_diners": "card_type_diners",
|
|
197
|
+
"card_type_jcb": "card_type_jcb",
|
|
198
|
+
"card_type_ebt": "card_type_ebt",
|
|
199
|
+
"allow_ebt_cash_benefit": "allow_ebt_cash_benefit",
|
|
200
|
+
"allow_ebt_food_stamp": "allow_ebt_food_stamp",
|
|
201
|
+
"invoice_location": "invoice_location",
|
|
202
|
+
"allow_partial_authorization": "allow_partial_authorization",
|
|
203
|
+
"allow_recurring_partial_authorization":
|
|
204
|
+
"allow_recurring_partial_authorization",
|
|
205
|
+
"auto_decline_cvv": "auto_decline_cvv",
|
|
206
|
+
"auto_decline_street": "auto_decline_street",
|
|
207
|
+
"auto_decline_zip": "auto_decline_zip",
|
|
208
|
+
"split_payments_allow": "split_payments_allow",
|
|
209
|
+
"vt_show_custom_fields": "vt_show_custom_fields",
|
|
210
|
+
"receipt_show_custom_fields": "receipt_show_custom_fields",
|
|
211
|
+
"vt_override_sales_tax_allowed": "vt_override_sales_tax_allowed",
|
|
212
|
+
"vt_enable_sales_tax": "vt_enable_sales_tax",
|
|
213
|
+
"vt_require_zip": "vt_require_zip",
|
|
214
|
+
"vt_require_street": "vt_require_street",
|
|
215
|
+
"auto_decline_cavv": "auto_decline_cavv",
|
|
216
|
+
"merchant_id": "merchant_id",
|
|
217
|
+
"receipt_header": "receipt_header",
|
|
218
|
+
"receipt_footer": "receipt_footer",
|
|
219
|
+
"receipt_add_account_above_signature": "receipt_add_account_above_signature",
|
|
220
|
+
"receipt_add_recurring_above_signature":
|
|
221
|
+
"receipt_add_recurring_above_signature",
|
|
222
|
+
"receipt_vt_above_signature": "receipt_vt_above_signature",
|
|
223
|
+
"default_transaction_type": "default_transaction_type",
|
|
224
|
+
"username": "username",
|
|
225
|
+
"password": "password",
|
|
226
|
+
"current_batch": "current_batch",
|
|
227
|
+
"dup_check_per_batch": "dup_check_per_batch",
|
|
228
|
+
"agent_code": "agent_code",
|
|
229
|
+
"paylink_allow": "paylink_allow",
|
|
230
|
+
"quick_invoice_allow": "quick_invoice_allow",
|
|
231
|
+
"level_3_allow": "level3_allow",
|
|
232
|
+
"payfac_enable": "payfac_enable",
|
|
233
|
+
"enable_3_ds": "enable_3ds",
|
|
234
|
+
"sales_office_id": "sales_office_id",
|
|
235
|
+
"hosted_payment_page_max_allowed": "hosted_payment_page_max_allowed",
|
|
236
|
+
"hosted_payment_page_allow": "hosted_payment_page_allow",
|
|
237
|
+
"surcharge_id": "surcharge_id",
|
|
238
|
+
"allow_big_commerce": "allow_big_commerce",
|
|
239
|
+
"allow_shopify": "allow_shopify",
|
|
240
|
+
"level_3_default": "level3_default",
|
|
241
|
+
"cau_subscribe_type_id": "cau_subscribe_type_id",
|
|
242
|
+
"cau_account_number": "cau_account_number",
|
|
243
|
+
"location_billing_account_id": "location_billing_account_id",
|
|
244
|
+
"product_billing_group_id": "product_billing_group_id",
|
|
245
|
+
"account_number": "account_number",
|
|
246
|
+
"run_avs_on_accountvault_create": "run_avs_on_accountvault_create",
|
|
247
|
+
"accountvault_expire_notification_email_enable":
|
|
248
|
+
"accountvault_expire_notification_email_enable",
|
|
249
|
+
"debit_allow_void": "debit_allow_void",
|
|
250
|
+
"quick_invoice_text_to_pay": "quick_invoice_text_to_pay",
|
|
251
|
+
"authentication_code": "authentication_code",
|
|
252
|
+
"sms_enable": "sms_enable",
|
|
253
|
+
"vt_show_currency": "vt_show_currency",
|
|
254
|
+
"receipt_show_currency": "receipt_show_currency",
|
|
255
|
+
"allow_blind_refund": "allow_blind_refund",
|
|
256
|
+
"vt_show_company_name": "vt_show_company_name",
|
|
257
|
+
"receipt_show_company_name": "receipt_show_company_name",
|
|
258
|
+
"bank_funded_only": "bank_funded_only",
|
|
259
|
+
"require_cvv_on_keyed_cnp": "require_cvv_on_keyed_cnp",
|
|
260
|
+
"require_cvv_on_tokenized_cnp": "require_cvv_on_tokenized_cnp",
|
|
261
|
+
"show_secondary_amount": "show_secondary_amount",
|
|
262
|
+
"allow_secondary_amount": "allow_secondary_amount",
|
|
263
|
+
"show_google_pay": "show_google_pay",
|
|
264
|
+
"show_apple_pay": "show_apple_pay",
|
|
265
|
+
"batch_risk_config": "batch_risk_config",
|
|
266
|
+
"currency_code": "currency_code",
|
|
267
|
+
"enable_ach_validation": "enable_ach_validation",
|
|
268
|
+
"enable_ach_retry": "enable_ach_retry",
|
|
269
|
+
"allow_softpos": "allow_softpos",
|
|
270
|
+
"allow_multi_currency": "allow_multi_currency",
|
|
271
|
+
"allow_unapplied_payments": "allow_unapplied_payments",
|
|
272
|
+
"id": "id",
|
|
273
|
+
"receipt_logo": "receipt_logo",
|
|
274
|
+
"active": "active",
|
|
275
|
+
"tz": "tz",
|
|
276
|
+
"current_stan": "current_stan",
|
|
277
|
+
"created_ts": "created_ts",
|
|
278
|
+
"modified_ts": "modified_ts",
|
|
279
|
+
"created_user_id": "created_user_id",
|
|
280
|
+
"modified_user_id": "modified_user_id",
|
|
281
|
+
"product_transaction_api_id": "product_transaction_api_id",
|
|
282
|
+
"transaction_amount_notification_threshold":
|
|
283
|
+
"transaction_amount_notification_threshold",
|
|
284
|
+
"is_secondary_amount_allowed": "is_secondary_amount_allowed",
|
|
285
|
+
"fortis_id": "fortis_id",
|
|
286
|
+
"product_billing_group_code": "product_billing_group_code",
|
|
287
|
+
"cau_subscribe_type_code": "cau_subscribe_type_code",
|
|
288
|
+
"merchant_code": "merchant_code",
|
|
289
|
+
"currency": "currency",
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
_optionals = [
|
|
293
|
+
"processor_version",
|
|
294
|
+
"industry_type",
|
|
295
|
+
"title",
|
|
296
|
+
"payment_method",
|
|
297
|
+
"processor",
|
|
298
|
+
"mcc",
|
|
299
|
+
"tax_surcharge_config",
|
|
300
|
+
"terminal_id",
|
|
301
|
+
"partner",
|
|
302
|
+
"product_ach_pv_store_id",
|
|
303
|
+
"invoice_adjustment_title",
|
|
304
|
+
"location_id",
|
|
305
|
+
"location_api_id",
|
|
306
|
+
"billing_location_api_id",
|
|
307
|
+
"portfolio_id",
|
|
308
|
+
"portfolio_validation_rule",
|
|
309
|
+
"sub_processor",
|
|
310
|
+
"surcharge",
|
|
311
|
+
"processor_data",
|
|
312
|
+
"vt_clerk_number",
|
|
313
|
+
"vt_billing_phone",
|
|
314
|
+
"vt_enable_tip",
|
|
315
|
+
"ach_allow_debit",
|
|
316
|
+
"ach_allow_credit",
|
|
317
|
+
"ach_allow_refund",
|
|
318
|
+
"vt_cvv",
|
|
319
|
+
"vt_street",
|
|
320
|
+
"vt_zip",
|
|
321
|
+
"vt_order_num",
|
|
322
|
+
"vt_enable",
|
|
323
|
+
"receipt_show_contact_name",
|
|
324
|
+
"display_avs",
|
|
325
|
+
"card_type_visa",
|
|
326
|
+
"card_type_mc",
|
|
327
|
+
"card_type_disc",
|
|
328
|
+
"card_type_amex",
|
|
329
|
+
"card_type_diners",
|
|
330
|
+
"card_type_jcb",
|
|
331
|
+
"card_type_ebt",
|
|
332
|
+
"allow_ebt_cash_benefit",
|
|
333
|
+
"allow_ebt_food_stamp",
|
|
334
|
+
"invoice_location",
|
|
335
|
+
"allow_partial_authorization",
|
|
336
|
+
"allow_recurring_partial_authorization",
|
|
337
|
+
"auto_decline_cvv",
|
|
338
|
+
"auto_decline_street",
|
|
339
|
+
"auto_decline_zip",
|
|
340
|
+
"split_payments_allow",
|
|
341
|
+
"vt_show_custom_fields",
|
|
342
|
+
"receipt_show_custom_fields",
|
|
343
|
+
"vt_override_sales_tax_allowed",
|
|
344
|
+
"vt_enable_sales_tax",
|
|
345
|
+
"vt_require_zip",
|
|
346
|
+
"vt_require_street",
|
|
347
|
+
"auto_decline_cavv",
|
|
348
|
+
"merchant_id",
|
|
349
|
+
"receipt_header",
|
|
350
|
+
"receipt_footer",
|
|
351
|
+
"receipt_add_account_above_signature",
|
|
352
|
+
"receipt_add_recurring_above_signature",
|
|
353
|
+
"receipt_vt_above_signature",
|
|
354
|
+
"default_transaction_type",
|
|
355
|
+
"username",
|
|
356
|
+
"password",
|
|
357
|
+
"current_batch",
|
|
358
|
+
"dup_check_per_batch",
|
|
359
|
+
"agent_code",
|
|
360
|
+
"paylink_allow",
|
|
361
|
+
"quick_invoice_allow",
|
|
362
|
+
"level_3_allow",
|
|
363
|
+
"payfac_enable",
|
|
364
|
+
"enable_3_ds",
|
|
365
|
+
"sales_office_id",
|
|
366
|
+
"hosted_payment_page_max_allowed",
|
|
367
|
+
"hosted_payment_page_allow",
|
|
368
|
+
"surcharge_id",
|
|
369
|
+
"allow_big_commerce",
|
|
370
|
+
"allow_shopify",
|
|
371
|
+
"level_3_default",
|
|
372
|
+
"cau_subscribe_type_id",
|
|
373
|
+
"cau_account_number",
|
|
374
|
+
"location_billing_account_id",
|
|
375
|
+
"product_billing_group_id",
|
|
376
|
+
"account_number",
|
|
377
|
+
"run_avs_on_accountvault_create",
|
|
378
|
+
"accountvault_expire_notification_email_enable",
|
|
379
|
+
"debit_allow_void",
|
|
380
|
+
"quick_invoice_text_to_pay",
|
|
381
|
+
"authentication_code",
|
|
382
|
+
"sms_enable",
|
|
383
|
+
"vt_show_currency",
|
|
384
|
+
"receipt_show_currency",
|
|
385
|
+
"allow_blind_refund",
|
|
386
|
+
"vt_show_company_name",
|
|
387
|
+
"receipt_show_company_name",
|
|
388
|
+
"bank_funded_only",
|
|
389
|
+
"require_cvv_on_keyed_cnp",
|
|
390
|
+
"require_cvv_on_tokenized_cnp",
|
|
391
|
+
"show_secondary_amount",
|
|
392
|
+
"allow_secondary_amount",
|
|
393
|
+
"show_google_pay",
|
|
394
|
+
"show_apple_pay",
|
|
395
|
+
"batch_risk_config",
|
|
396
|
+
"currency_code",
|
|
397
|
+
"enable_ach_validation",
|
|
398
|
+
"enable_ach_retry",
|
|
399
|
+
"allow_softpos",
|
|
400
|
+
"allow_multi_currency",
|
|
401
|
+
"allow_unapplied_payments",
|
|
402
|
+
"id",
|
|
403
|
+
"receipt_logo",
|
|
404
|
+
"active",
|
|
405
|
+
"tz",
|
|
406
|
+
"current_stan",
|
|
407
|
+
"created_ts",
|
|
408
|
+
"modified_ts",
|
|
409
|
+
"created_user_id",
|
|
410
|
+
"modified_user_id",
|
|
411
|
+
"product_transaction_api_id",
|
|
412
|
+
"transaction_amount_notification_threshold",
|
|
413
|
+
"is_secondary_amount_allowed",
|
|
414
|
+
"fortis_id",
|
|
415
|
+
"product_billing_group_code",
|
|
416
|
+
"cau_subscribe_type_code",
|
|
417
|
+
"merchant_code",
|
|
418
|
+
"currency",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
_nullables = [
|
|
422
|
+
"processor_version",
|
|
423
|
+
"industry_type",
|
|
424
|
+
"processor",
|
|
425
|
+
"mcc",
|
|
426
|
+
"tax_surcharge_config",
|
|
427
|
+
"terminal_id",
|
|
428
|
+
"partner",
|
|
429
|
+
"product_ach_pv_store_id",
|
|
430
|
+
"invoice_adjustment_title",
|
|
431
|
+
"location_api_id",
|
|
432
|
+
"billing_location_api_id",
|
|
433
|
+
"portfolio_id",
|
|
434
|
+
"portfolio_validation_rule",
|
|
435
|
+
"sub_processor",
|
|
436
|
+
"merchant_id",
|
|
437
|
+
"receipt_header",
|
|
438
|
+
"receipt_footer",
|
|
439
|
+
"receipt_add_account_above_signature",
|
|
440
|
+
"receipt_add_recurring_above_signature",
|
|
441
|
+
"receipt_vt_above_signature",
|
|
442
|
+
"default_transaction_type",
|
|
443
|
+
"username",
|
|
444
|
+
"password",
|
|
445
|
+
"current_batch",
|
|
446
|
+
"dup_check_per_batch",
|
|
447
|
+
"agent_code",
|
|
448
|
+
"sales_office_id",
|
|
449
|
+
"hosted_payment_page_max_allowed",
|
|
450
|
+
"surcharge_id",
|
|
451
|
+
"cau_subscribe_type_id",
|
|
452
|
+
"cau_account_number",
|
|
453
|
+
"location_billing_account_id",
|
|
454
|
+
"product_billing_group_id",
|
|
455
|
+
"account_number",
|
|
456
|
+
"authentication_code",
|
|
457
|
+
"tz",
|
|
458
|
+
"current_stan",
|
|
459
|
+
"created_ts",
|
|
460
|
+
"modified_ts",
|
|
461
|
+
"created_user_id",
|
|
462
|
+
"modified_user_id",
|
|
463
|
+
"product_transaction_api_id",
|
|
464
|
+
"fortis_id",
|
|
465
|
+
"product_billing_group_code",
|
|
466
|
+
"cau_subscribe_type_code",
|
|
467
|
+
"merchant_code",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
def __init__(
|
|
471
|
+
self,
|
|
472
|
+
processor_version=APIHelper.SKIP,
|
|
473
|
+
industry_type=APIHelper.SKIP,
|
|
474
|
+
title=APIHelper.SKIP,
|
|
475
|
+
payment_method=APIHelper.SKIP,
|
|
476
|
+
processor=APIHelper.SKIP,
|
|
477
|
+
mcc=APIHelper.SKIP,
|
|
478
|
+
tax_surcharge_config=2,
|
|
479
|
+
terminal_id=APIHelper.SKIP,
|
|
480
|
+
partner=APIHelper.SKIP,
|
|
481
|
+
product_ach_pv_store_id=APIHelper.SKIP,
|
|
482
|
+
invoice_adjustment_title=APIHelper.SKIP,
|
|
483
|
+
location_id=APIHelper.SKIP,
|
|
484
|
+
location_api_id=APIHelper.SKIP,
|
|
485
|
+
billing_location_api_id=APIHelper.SKIP,
|
|
486
|
+
portfolio_id=APIHelper.SKIP,
|
|
487
|
+
portfolio_validation_rule=APIHelper.SKIP,
|
|
488
|
+
sub_processor=APIHelper.SKIP,
|
|
489
|
+
surcharge=APIHelper.SKIP,
|
|
490
|
+
processor_data=APIHelper.SKIP,
|
|
491
|
+
vt_clerk_number=APIHelper.SKIP,
|
|
492
|
+
vt_billing_phone=APIHelper.SKIP,
|
|
493
|
+
vt_enable_tip=APIHelper.SKIP,
|
|
494
|
+
ach_allow_debit=APIHelper.SKIP,
|
|
495
|
+
ach_allow_credit=APIHelper.SKIP,
|
|
496
|
+
ach_allow_refund=APIHelper.SKIP,
|
|
497
|
+
vt_cvv=APIHelper.SKIP,
|
|
498
|
+
vt_street=APIHelper.SKIP,
|
|
499
|
+
vt_zip=APIHelper.SKIP,
|
|
500
|
+
vt_order_num=APIHelper.SKIP,
|
|
501
|
+
vt_enable=APIHelper.SKIP,
|
|
502
|
+
receipt_show_contact_name=APIHelper.SKIP,
|
|
503
|
+
display_avs=APIHelper.SKIP,
|
|
504
|
+
card_type_visa=APIHelper.SKIP,
|
|
505
|
+
card_type_mc=APIHelper.SKIP,
|
|
506
|
+
card_type_disc=APIHelper.SKIP,
|
|
507
|
+
card_type_amex=APIHelper.SKIP,
|
|
508
|
+
card_type_diners=APIHelper.SKIP,
|
|
509
|
+
card_type_jcb=APIHelper.SKIP,
|
|
510
|
+
card_type_ebt=APIHelper.SKIP,
|
|
511
|
+
allow_ebt_cash_benefit=APIHelper.SKIP,
|
|
512
|
+
allow_ebt_food_stamp=APIHelper.SKIP,
|
|
513
|
+
invoice_location=APIHelper.SKIP,
|
|
514
|
+
allow_partial_authorization=APIHelper.SKIP,
|
|
515
|
+
allow_recurring_partial_authorization=APIHelper.SKIP,
|
|
516
|
+
auto_decline_cvv=APIHelper.SKIP,
|
|
517
|
+
auto_decline_street=APIHelper.SKIP,
|
|
518
|
+
auto_decline_zip=APIHelper.SKIP,
|
|
519
|
+
split_payments_allow=APIHelper.SKIP,
|
|
520
|
+
vt_show_custom_fields=APIHelper.SKIP,
|
|
521
|
+
receipt_show_custom_fields=APIHelper.SKIP,
|
|
522
|
+
vt_override_sales_tax_allowed=APIHelper.SKIP,
|
|
523
|
+
vt_enable_sales_tax=APIHelper.SKIP,
|
|
524
|
+
vt_require_zip=APIHelper.SKIP,
|
|
525
|
+
vt_require_street=APIHelper.SKIP,
|
|
526
|
+
auto_decline_cavv=APIHelper.SKIP,
|
|
527
|
+
merchant_id=APIHelper.SKIP,
|
|
528
|
+
receipt_header=APIHelper.SKIP,
|
|
529
|
+
receipt_footer=APIHelper.SKIP,
|
|
530
|
+
receipt_add_account_above_signature=APIHelper.SKIP,
|
|
531
|
+
receipt_add_recurring_above_signature=APIHelper.SKIP,
|
|
532
|
+
receipt_vt_above_signature=APIHelper.SKIP,
|
|
533
|
+
default_transaction_type=APIHelper.SKIP,
|
|
534
|
+
username=APIHelper.SKIP,
|
|
535
|
+
password=APIHelper.SKIP,
|
|
536
|
+
current_batch=1,
|
|
537
|
+
dup_check_per_batch=APIHelper.SKIP,
|
|
538
|
+
agent_code=APIHelper.SKIP,
|
|
539
|
+
paylink_allow=APIHelper.SKIP,
|
|
540
|
+
quick_invoice_allow=APIHelper.SKIP,
|
|
541
|
+
level_3_allow=APIHelper.SKIP,
|
|
542
|
+
payfac_enable=APIHelper.SKIP,
|
|
543
|
+
enable_3_ds=APIHelper.SKIP,
|
|
544
|
+
sales_office_id=APIHelper.SKIP,
|
|
545
|
+
hosted_payment_page_max_allowed=5,
|
|
546
|
+
hosted_payment_page_allow=APIHelper.SKIP,
|
|
547
|
+
surcharge_id=APIHelper.SKIP,
|
|
548
|
+
allow_big_commerce=APIHelper.SKIP,
|
|
549
|
+
allow_shopify=APIHelper.SKIP,
|
|
550
|
+
level_3_default=APIHelper.SKIP,
|
|
551
|
+
cau_subscribe_type_id=APIHelper.SKIP,
|
|
552
|
+
cau_account_number=APIHelper.SKIP,
|
|
553
|
+
location_billing_account_id=APIHelper.SKIP,
|
|
554
|
+
product_billing_group_id=APIHelper.SKIP,
|
|
555
|
+
account_number=APIHelper.SKIP,
|
|
556
|
+
run_avs_on_accountvault_create=APIHelper.SKIP,
|
|
557
|
+
accountvault_expire_notification_email_enable=APIHelper.SKIP,
|
|
558
|
+
debit_allow_void=APIHelper.SKIP,
|
|
559
|
+
quick_invoice_text_to_pay=APIHelper.SKIP,
|
|
560
|
+
authentication_code=APIHelper.SKIP,
|
|
561
|
+
sms_enable=APIHelper.SKIP,
|
|
562
|
+
vt_show_currency=APIHelper.SKIP,
|
|
563
|
+
receipt_show_currency=APIHelper.SKIP,
|
|
564
|
+
allow_blind_refund=APIHelper.SKIP,
|
|
565
|
+
vt_show_company_name=APIHelper.SKIP,
|
|
566
|
+
receipt_show_company_name=APIHelper.SKIP,
|
|
567
|
+
bank_funded_only=APIHelper.SKIP,
|
|
568
|
+
require_cvv_on_keyed_cnp=APIHelper.SKIP,
|
|
569
|
+
require_cvv_on_tokenized_cnp=APIHelper.SKIP,
|
|
570
|
+
show_secondary_amount=APIHelper.SKIP,
|
|
571
|
+
allow_secondary_amount=APIHelper.SKIP,
|
|
572
|
+
show_google_pay=APIHelper.SKIP,
|
|
573
|
+
show_apple_pay=APIHelper.SKIP,
|
|
574
|
+
batch_risk_config=APIHelper.SKIP,
|
|
575
|
+
currency_code=APIHelper.SKIP,
|
|
576
|
+
enable_ach_validation=APIHelper.SKIP,
|
|
577
|
+
enable_ach_retry=APIHelper.SKIP,
|
|
578
|
+
allow_softpos=APIHelper.SKIP,
|
|
579
|
+
allow_multi_currency=APIHelper.SKIP,
|
|
580
|
+
allow_unapplied_payments=APIHelper.SKIP,
|
|
581
|
+
id=APIHelper.SKIP,
|
|
582
|
+
receipt_logo=APIHelper.SKIP,
|
|
583
|
+
active=APIHelper.SKIP,
|
|
584
|
+
tz=APIHelper.SKIP,
|
|
585
|
+
current_stan=1,
|
|
586
|
+
created_ts=APIHelper.SKIP,
|
|
587
|
+
modified_ts=APIHelper.SKIP,
|
|
588
|
+
created_user_id=APIHelper.SKIP,
|
|
589
|
+
modified_user_id=APIHelper.SKIP,
|
|
590
|
+
product_transaction_api_id=APIHelper.SKIP,
|
|
591
|
+
transaction_amount_notification_threshold=APIHelper.SKIP,
|
|
592
|
+
is_secondary_amount_allowed=APIHelper.SKIP,
|
|
593
|
+
fortis_id=APIHelper.SKIP,
|
|
594
|
+
product_billing_group_code=APIHelper.SKIP,
|
|
595
|
+
cau_subscribe_type_code=APIHelper.SKIP,
|
|
596
|
+
merchant_code=APIHelper.SKIP,
|
|
597
|
+
currency=APIHelper.SKIP,
|
|
598
|
+
additional_properties=None):
|
|
599
|
+
"""Initialize a ProductTransaction1 instance."""
|
|
600
|
+
# Initialize members of the class
|
|
601
|
+
if processor_version is not APIHelper.SKIP:
|
|
602
|
+
self.processor_version = processor_version
|
|
603
|
+
if industry_type is not APIHelper.SKIP:
|
|
604
|
+
self.industry_type = industry_type
|
|
605
|
+
if title is not APIHelper.SKIP:
|
|
606
|
+
self.title = title
|
|
607
|
+
if payment_method is not APIHelper.SKIP:
|
|
608
|
+
self.payment_method = payment_method
|
|
609
|
+
if processor is not APIHelper.SKIP:
|
|
610
|
+
self.processor = processor
|
|
611
|
+
if mcc is not APIHelper.SKIP:
|
|
612
|
+
self.mcc = mcc
|
|
613
|
+
self.tax_surcharge_config = tax_surcharge_config
|
|
614
|
+
if terminal_id is not APIHelper.SKIP:
|
|
615
|
+
self.terminal_id = terminal_id
|
|
616
|
+
if partner is not APIHelper.SKIP:
|
|
617
|
+
self.partner = partner
|
|
618
|
+
if product_ach_pv_store_id is not APIHelper.SKIP:
|
|
619
|
+
self.product_ach_pv_store_id = product_ach_pv_store_id
|
|
620
|
+
if invoice_adjustment_title is not APIHelper.SKIP:
|
|
621
|
+
self.invoice_adjustment_title = invoice_adjustment_title
|
|
622
|
+
if location_id is not APIHelper.SKIP:
|
|
623
|
+
self.location_id = location_id
|
|
624
|
+
if location_api_id is not APIHelper.SKIP:
|
|
625
|
+
self.location_api_id = location_api_id
|
|
626
|
+
if billing_location_api_id is not APIHelper.SKIP:
|
|
627
|
+
self.billing_location_api_id = billing_location_api_id
|
|
628
|
+
if portfolio_id is not APIHelper.SKIP:
|
|
629
|
+
self.portfolio_id = portfolio_id
|
|
630
|
+
if portfolio_validation_rule is not APIHelper.SKIP:
|
|
631
|
+
self.portfolio_validation_rule = portfolio_validation_rule
|
|
632
|
+
if sub_processor is not APIHelper.SKIP:
|
|
633
|
+
self.sub_processor = sub_processor
|
|
634
|
+
if surcharge is not APIHelper.SKIP:
|
|
635
|
+
self.surcharge = surcharge
|
|
636
|
+
if processor_data is not APIHelper.SKIP:
|
|
637
|
+
self.processor_data = processor_data
|
|
638
|
+
if vt_clerk_number is not APIHelper.SKIP:
|
|
639
|
+
self.vt_clerk_number = vt_clerk_number
|
|
640
|
+
if vt_billing_phone is not APIHelper.SKIP:
|
|
641
|
+
self.vt_billing_phone = vt_billing_phone
|
|
642
|
+
if vt_enable_tip is not APIHelper.SKIP:
|
|
643
|
+
self.vt_enable_tip = vt_enable_tip
|
|
644
|
+
if ach_allow_debit is not APIHelper.SKIP:
|
|
645
|
+
self.ach_allow_debit = ach_allow_debit
|
|
646
|
+
if ach_allow_credit is not APIHelper.SKIP:
|
|
647
|
+
self.ach_allow_credit = ach_allow_credit
|
|
648
|
+
if ach_allow_refund is not APIHelper.SKIP:
|
|
649
|
+
self.ach_allow_refund = ach_allow_refund
|
|
650
|
+
if vt_cvv is not APIHelper.SKIP:
|
|
651
|
+
self.vt_cvv = vt_cvv
|
|
652
|
+
if vt_street is not APIHelper.SKIP:
|
|
653
|
+
self.vt_street = vt_street
|
|
654
|
+
if vt_zip is not APIHelper.SKIP:
|
|
655
|
+
self.vt_zip = vt_zip
|
|
656
|
+
if vt_order_num is not APIHelper.SKIP:
|
|
657
|
+
self.vt_order_num = vt_order_num
|
|
658
|
+
if vt_enable is not APIHelper.SKIP:
|
|
659
|
+
self.vt_enable = vt_enable
|
|
660
|
+
if receipt_show_contact_name is not APIHelper.SKIP:
|
|
661
|
+
self.receipt_show_contact_name = receipt_show_contact_name
|
|
662
|
+
if display_avs is not APIHelper.SKIP:
|
|
663
|
+
self.display_avs = display_avs
|
|
664
|
+
if card_type_visa is not APIHelper.SKIP:
|
|
665
|
+
self.card_type_visa = card_type_visa
|
|
666
|
+
if card_type_mc is not APIHelper.SKIP:
|
|
667
|
+
self.card_type_mc = card_type_mc
|
|
668
|
+
if card_type_disc is not APIHelper.SKIP:
|
|
669
|
+
self.card_type_disc = card_type_disc
|
|
670
|
+
if card_type_amex is not APIHelper.SKIP:
|
|
671
|
+
self.card_type_amex = card_type_amex
|
|
672
|
+
if card_type_diners is not APIHelper.SKIP:
|
|
673
|
+
self.card_type_diners = card_type_diners
|
|
674
|
+
if card_type_jcb is not APIHelper.SKIP:
|
|
675
|
+
self.card_type_jcb = card_type_jcb
|
|
676
|
+
if card_type_ebt is not APIHelper.SKIP:
|
|
677
|
+
self.card_type_ebt = card_type_ebt
|
|
678
|
+
if allow_ebt_cash_benefit is not APIHelper.SKIP:
|
|
679
|
+
self.allow_ebt_cash_benefit = allow_ebt_cash_benefit
|
|
680
|
+
if allow_ebt_food_stamp is not APIHelper.SKIP:
|
|
681
|
+
self.allow_ebt_food_stamp = allow_ebt_food_stamp
|
|
682
|
+
if invoice_location is not APIHelper.SKIP:
|
|
683
|
+
self.invoice_location = invoice_location
|
|
684
|
+
if allow_partial_authorization is not APIHelper.SKIP:
|
|
685
|
+
self.allow_partial_authorization = allow_partial_authorization
|
|
686
|
+
if allow_recurring_partial_authorization is not APIHelper.SKIP:
|
|
687
|
+
self.allow_recurring_partial_authorization =\
|
|
688
|
+
allow_recurring_partial_authorization
|
|
689
|
+
if auto_decline_cvv is not APIHelper.SKIP:
|
|
690
|
+
self.auto_decline_cvv = auto_decline_cvv
|
|
691
|
+
if auto_decline_street is not APIHelper.SKIP:
|
|
692
|
+
self.auto_decline_street = auto_decline_street
|
|
693
|
+
if auto_decline_zip is not APIHelper.SKIP:
|
|
694
|
+
self.auto_decline_zip = auto_decline_zip
|
|
695
|
+
if split_payments_allow is not APIHelper.SKIP:
|
|
696
|
+
self.split_payments_allow = split_payments_allow
|
|
697
|
+
if vt_show_custom_fields is not APIHelper.SKIP:
|
|
698
|
+
self.vt_show_custom_fields = vt_show_custom_fields
|
|
699
|
+
if receipt_show_custom_fields is not APIHelper.SKIP:
|
|
700
|
+
self.receipt_show_custom_fields = receipt_show_custom_fields
|
|
701
|
+
if vt_override_sales_tax_allowed is not APIHelper.SKIP:
|
|
702
|
+
self.vt_override_sales_tax_allowed = vt_override_sales_tax_allowed
|
|
703
|
+
if vt_enable_sales_tax is not APIHelper.SKIP:
|
|
704
|
+
self.vt_enable_sales_tax = vt_enable_sales_tax
|
|
705
|
+
if vt_require_zip is not APIHelper.SKIP:
|
|
706
|
+
self.vt_require_zip = vt_require_zip
|
|
707
|
+
if vt_require_street is not APIHelper.SKIP:
|
|
708
|
+
self.vt_require_street = vt_require_street
|
|
709
|
+
if auto_decline_cavv is not APIHelper.SKIP:
|
|
710
|
+
self.auto_decline_cavv = auto_decline_cavv
|
|
711
|
+
if merchant_id is not APIHelper.SKIP:
|
|
712
|
+
self.merchant_id = merchant_id
|
|
713
|
+
if receipt_header is not APIHelper.SKIP:
|
|
714
|
+
self.receipt_header = receipt_header
|
|
715
|
+
if receipt_footer is not APIHelper.SKIP:
|
|
716
|
+
self.receipt_footer = receipt_footer
|
|
717
|
+
if receipt_add_account_above_signature is not APIHelper.SKIP:
|
|
718
|
+
self.receipt_add_account_above_signature =\
|
|
719
|
+
receipt_add_account_above_signature
|
|
720
|
+
if receipt_add_recurring_above_signature is not APIHelper.SKIP:
|
|
721
|
+
self.receipt_add_recurring_above_signature =\
|
|
722
|
+
receipt_add_recurring_above_signature
|
|
723
|
+
if receipt_vt_above_signature is not APIHelper.SKIP:
|
|
724
|
+
self.receipt_vt_above_signature = receipt_vt_above_signature
|
|
725
|
+
if default_transaction_type is not APIHelper.SKIP:
|
|
726
|
+
self.default_transaction_type = default_transaction_type
|
|
727
|
+
if username is not APIHelper.SKIP:
|
|
728
|
+
self.username = username
|
|
729
|
+
if password is not APIHelper.SKIP:
|
|
730
|
+
self.password = password
|
|
731
|
+
self.current_batch = current_batch
|
|
732
|
+
if dup_check_per_batch is not APIHelper.SKIP:
|
|
733
|
+
self.dup_check_per_batch = dup_check_per_batch
|
|
734
|
+
if agent_code is not APIHelper.SKIP:
|
|
735
|
+
self.agent_code = agent_code
|
|
736
|
+
if paylink_allow is not APIHelper.SKIP:
|
|
737
|
+
self.paylink_allow = paylink_allow
|
|
738
|
+
if quick_invoice_allow is not APIHelper.SKIP:
|
|
739
|
+
self.quick_invoice_allow = quick_invoice_allow
|
|
740
|
+
if level_3_allow is not APIHelper.SKIP:
|
|
741
|
+
self.level_3_allow = level_3_allow
|
|
742
|
+
if payfac_enable is not APIHelper.SKIP:
|
|
743
|
+
self.payfac_enable = payfac_enable
|
|
744
|
+
if enable_3_ds is not APIHelper.SKIP:
|
|
745
|
+
self.enable_3_ds = enable_3_ds
|
|
746
|
+
if sales_office_id is not APIHelper.SKIP:
|
|
747
|
+
self.sales_office_id = sales_office_id
|
|
748
|
+
self.hosted_payment_page_max_allowed = hosted_payment_page_max_allowed
|
|
749
|
+
if hosted_payment_page_allow is not APIHelper.SKIP:
|
|
750
|
+
self.hosted_payment_page_allow = hosted_payment_page_allow
|
|
751
|
+
if surcharge_id is not APIHelper.SKIP:
|
|
752
|
+
self.surcharge_id = surcharge_id
|
|
753
|
+
if allow_big_commerce is not APIHelper.SKIP:
|
|
754
|
+
self.allow_big_commerce = allow_big_commerce
|
|
755
|
+
if allow_shopify is not APIHelper.SKIP:
|
|
756
|
+
self.allow_shopify = allow_shopify
|
|
757
|
+
if level_3_default is not APIHelper.SKIP:
|
|
758
|
+
self.level_3_default = level_3_default
|
|
759
|
+
if cau_subscribe_type_id is not APIHelper.SKIP:
|
|
760
|
+
self.cau_subscribe_type_id = cau_subscribe_type_id
|
|
761
|
+
if cau_account_number is not APIHelper.SKIP:
|
|
762
|
+
self.cau_account_number = cau_account_number
|
|
763
|
+
if location_billing_account_id is not APIHelper.SKIP:
|
|
764
|
+
self.location_billing_account_id = location_billing_account_id
|
|
765
|
+
if product_billing_group_id is not APIHelper.SKIP:
|
|
766
|
+
self.product_billing_group_id = product_billing_group_id
|
|
767
|
+
if account_number is not APIHelper.SKIP:
|
|
768
|
+
self.account_number = account_number
|
|
769
|
+
if run_avs_on_accountvault_create is not APIHelper.SKIP:
|
|
770
|
+
self.run_avs_on_accountvault_create = run_avs_on_accountvault_create
|
|
771
|
+
if accountvault_expire_notification_email_enable is not APIHelper.SKIP:
|
|
772
|
+
self.accountvault_expire_notification_email_enable =\
|
|
773
|
+
accountvault_expire_notification_email_enable
|
|
774
|
+
if debit_allow_void is not APIHelper.SKIP:
|
|
775
|
+
self.debit_allow_void = debit_allow_void
|
|
776
|
+
if quick_invoice_text_to_pay is not APIHelper.SKIP:
|
|
777
|
+
self.quick_invoice_text_to_pay = quick_invoice_text_to_pay
|
|
778
|
+
if authentication_code is not APIHelper.SKIP:
|
|
779
|
+
self.authentication_code = authentication_code
|
|
780
|
+
if sms_enable is not APIHelper.SKIP:
|
|
781
|
+
self.sms_enable = sms_enable
|
|
782
|
+
if vt_show_currency is not APIHelper.SKIP:
|
|
783
|
+
self.vt_show_currency = vt_show_currency
|
|
784
|
+
if receipt_show_currency is not APIHelper.SKIP:
|
|
785
|
+
self.receipt_show_currency = receipt_show_currency
|
|
786
|
+
if allow_blind_refund is not APIHelper.SKIP:
|
|
787
|
+
self.allow_blind_refund = allow_blind_refund
|
|
788
|
+
if vt_show_company_name is not APIHelper.SKIP:
|
|
789
|
+
self.vt_show_company_name = vt_show_company_name
|
|
790
|
+
if receipt_show_company_name is not APIHelper.SKIP:
|
|
791
|
+
self.receipt_show_company_name = receipt_show_company_name
|
|
792
|
+
if bank_funded_only is not APIHelper.SKIP:
|
|
793
|
+
self.bank_funded_only = bank_funded_only
|
|
794
|
+
if require_cvv_on_keyed_cnp is not APIHelper.SKIP:
|
|
795
|
+
self.require_cvv_on_keyed_cnp = require_cvv_on_keyed_cnp
|
|
796
|
+
if require_cvv_on_tokenized_cnp is not APIHelper.SKIP:
|
|
797
|
+
self.require_cvv_on_tokenized_cnp = require_cvv_on_tokenized_cnp
|
|
798
|
+
if show_secondary_amount is not APIHelper.SKIP:
|
|
799
|
+
self.show_secondary_amount = show_secondary_amount
|
|
800
|
+
if allow_secondary_amount is not APIHelper.SKIP:
|
|
801
|
+
self.allow_secondary_amount = allow_secondary_amount
|
|
802
|
+
if show_google_pay is not APIHelper.SKIP:
|
|
803
|
+
self.show_google_pay = show_google_pay
|
|
804
|
+
if show_apple_pay is not APIHelper.SKIP:
|
|
805
|
+
self.show_apple_pay = show_apple_pay
|
|
806
|
+
if batch_risk_config is not APIHelper.SKIP:
|
|
807
|
+
self.batch_risk_config = batch_risk_config
|
|
808
|
+
if currency_code is not APIHelper.SKIP:
|
|
809
|
+
self.currency_code = currency_code
|
|
810
|
+
if enable_ach_validation is not APIHelper.SKIP:
|
|
811
|
+
self.enable_ach_validation = enable_ach_validation
|
|
812
|
+
if enable_ach_retry is not APIHelper.SKIP:
|
|
813
|
+
self.enable_ach_retry = enable_ach_retry
|
|
814
|
+
if allow_softpos is not APIHelper.SKIP:
|
|
815
|
+
self.allow_softpos = allow_softpos
|
|
816
|
+
if allow_multi_currency is not APIHelper.SKIP:
|
|
817
|
+
self.allow_multi_currency = allow_multi_currency
|
|
818
|
+
if allow_unapplied_payments is not APIHelper.SKIP:
|
|
819
|
+
self.allow_unapplied_payments = allow_unapplied_payments
|
|
820
|
+
if id is not APIHelper.SKIP:
|
|
821
|
+
self.id = id
|
|
822
|
+
if receipt_logo is not APIHelper.SKIP:
|
|
823
|
+
self.receipt_logo = receipt_logo
|
|
824
|
+
if active is not APIHelper.SKIP:
|
|
825
|
+
self.active = active
|
|
826
|
+
if tz is not APIHelper.SKIP:
|
|
827
|
+
self.tz = tz
|
|
828
|
+
self.current_stan = current_stan
|
|
829
|
+
if created_ts is not APIHelper.SKIP:
|
|
830
|
+
self.created_ts = created_ts
|
|
831
|
+
if modified_ts is not APIHelper.SKIP:
|
|
832
|
+
self.modified_ts = modified_ts
|
|
833
|
+
if created_user_id is not APIHelper.SKIP:
|
|
834
|
+
self.created_user_id = created_user_id
|
|
835
|
+
if modified_user_id is not APIHelper.SKIP:
|
|
836
|
+
self.modified_user_id = modified_user_id
|
|
837
|
+
if product_transaction_api_id is not APIHelper.SKIP:
|
|
838
|
+
self.product_transaction_api_id = product_transaction_api_id
|
|
839
|
+
if transaction_amount_notification_threshold is not APIHelper.SKIP:
|
|
840
|
+
self.transaction_amount_notification_threshold =\
|
|
841
|
+
transaction_amount_notification_threshold
|
|
842
|
+
if is_secondary_amount_allowed is not APIHelper.SKIP:
|
|
843
|
+
self.is_secondary_amount_allowed = is_secondary_amount_allowed
|
|
844
|
+
if fortis_id is not APIHelper.SKIP:
|
|
845
|
+
self.fortis_id = fortis_id
|
|
846
|
+
if product_billing_group_code is not APIHelper.SKIP:
|
|
847
|
+
self.product_billing_group_code = product_billing_group_code
|
|
848
|
+
if cau_subscribe_type_code is not APIHelper.SKIP:
|
|
849
|
+
self.cau_subscribe_type_code = cau_subscribe_type_code
|
|
850
|
+
if merchant_code is not APIHelper.SKIP:
|
|
851
|
+
self.merchant_code = merchant_code
|
|
852
|
+
if currency is not APIHelper.SKIP:
|
|
853
|
+
self.currency = currency
|
|
854
|
+
|
|
855
|
+
# Add additional model properties to the instance
|
|
856
|
+
if additional_properties is None:
|
|
857
|
+
additional_properties = {}
|
|
858
|
+
self.additional_properties = additional_properties
|
|
859
|
+
|
|
860
|
+
@classmethod
|
|
861
|
+
def from_dictionary(cls,
|
|
862
|
+
dictionary):
|
|
863
|
+
"""Create an instance of this model from a dictionary
|
|
864
|
+
|
|
865
|
+
Args:
|
|
866
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
867
|
+
as obtained from the deserialization of the server's response. The
|
|
868
|
+
keys MUST match property names in the API description.
|
|
869
|
+
|
|
870
|
+
Returns:
|
|
871
|
+
object: An instance of this structure class.
|
|
872
|
+
|
|
873
|
+
"""
|
|
874
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
875
|
+
return None
|
|
876
|
+
|
|
877
|
+
# Extract variables from the dictionary
|
|
878
|
+
processor_version =\
|
|
879
|
+
dictionary.get("processor_version")\
|
|
880
|
+
if "processor_version" in dictionary.keys()\
|
|
881
|
+
else APIHelper.SKIP
|
|
882
|
+
industry_type =\
|
|
883
|
+
dictionary.get("industry_type")\
|
|
884
|
+
if "industry_type" in dictionary.keys()\
|
|
885
|
+
else APIHelper.SKIP
|
|
886
|
+
title =\
|
|
887
|
+
dictionary.get("title")\
|
|
888
|
+
if dictionary.get("title")\
|
|
889
|
+
else APIHelper.SKIP
|
|
890
|
+
payment_method =\
|
|
891
|
+
dictionary.get("payment_method")\
|
|
892
|
+
if dictionary.get("payment_method")\
|
|
893
|
+
else APIHelper.SKIP
|
|
894
|
+
processor =\
|
|
895
|
+
dictionary.get("processor")\
|
|
896
|
+
if "processor" in dictionary.keys()\
|
|
897
|
+
else APIHelper.SKIP
|
|
898
|
+
mcc =\
|
|
899
|
+
dictionary.get("mcc")\
|
|
900
|
+
if "mcc" in dictionary.keys()\
|
|
901
|
+
else APIHelper.SKIP
|
|
902
|
+
tax_surcharge_config =\
|
|
903
|
+
dictionary.get("tax_surcharge_config")\
|
|
904
|
+
if dictionary.get("tax_surcharge_config")\
|
|
905
|
+
else 2
|
|
906
|
+
terminal_id =\
|
|
907
|
+
dictionary.get("terminal_id")\
|
|
908
|
+
if "terminal_id" in dictionary.keys()\
|
|
909
|
+
else APIHelper.SKIP
|
|
910
|
+
partner =\
|
|
911
|
+
dictionary.get("partner")\
|
|
912
|
+
if "partner" in dictionary.keys()\
|
|
913
|
+
else APIHelper.SKIP
|
|
914
|
+
product_ach_pv_store_id =\
|
|
915
|
+
dictionary.get("product_ach_pv_store_id")\
|
|
916
|
+
if "product_ach_pv_store_id" in dictionary.keys()\
|
|
917
|
+
else APIHelper.SKIP
|
|
918
|
+
invoice_adjustment_title =\
|
|
919
|
+
dictionary.get("invoice_adjustment_title")\
|
|
920
|
+
if "invoice_adjustment_title" in dictionary.keys()\
|
|
921
|
+
else APIHelper.SKIP
|
|
922
|
+
location_id =\
|
|
923
|
+
dictionary.get("location_id")\
|
|
924
|
+
if dictionary.get("location_id")\
|
|
925
|
+
else APIHelper.SKIP
|
|
926
|
+
location_api_id =\
|
|
927
|
+
dictionary.get("location_api_id")\
|
|
928
|
+
if "location_api_id" in dictionary.keys()\
|
|
929
|
+
else APIHelper.SKIP
|
|
930
|
+
billing_location_api_id =\
|
|
931
|
+
dictionary.get("billing_location_api_id")\
|
|
932
|
+
if "billing_location_api_id" in dictionary.keys()\
|
|
933
|
+
else APIHelper.SKIP
|
|
934
|
+
portfolio_id =\
|
|
935
|
+
dictionary.get("portfolio_id")\
|
|
936
|
+
if "portfolio_id" in dictionary.keys()\
|
|
937
|
+
else APIHelper.SKIP
|
|
938
|
+
portfolio_validation_rule =\
|
|
939
|
+
dictionary.get("portfolioValidationRule")\
|
|
940
|
+
if "portfolioValidationRule" in dictionary.keys()\
|
|
941
|
+
else APIHelper.SKIP
|
|
942
|
+
sub_processor =\
|
|
943
|
+
dictionary.get("sub_processor")\
|
|
944
|
+
if "sub_processor" in dictionary.keys()\
|
|
945
|
+
else APIHelper.SKIP
|
|
946
|
+
surcharge =\
|
|
947
|
+
dictionary.get("surcharge")\
|
|
948
|
+
if dictionary.get("surcharge")\
|
|
949
|
+
else APIHelper.SKIP
|
|
950
|
+
processor_data =\
|
|
951
|
+
dictionary.get("processor_data")\
|
|
952
|
+
if dictionary.get("processor_data")\
|
|
953
|
+
else APIHelper.SKIP
|
|
954
|
+
vt_clerk_number =\
|
|
955
|
+
dictionary.get("vt_clerk_number")\
|
|
956
|
+
if "vt_clerk_number" in dictionary.keys()\
|
|
957
|
+
else APIHelper.SKIP
|
|
958
|
+
vt_billing_phone =\
|
|
959
|
+
dictionary.get("vt_billing_phone")\
|
|
960
|
+
if "vt_billing_phone" in dictionary.keys()\
|
|
961
|
+
else APIHelper.SKIP
|
|
962
|
+
vt_enable_tip =\
|
|
963
|
+
dictionary.get("vt_enable_tip")\
|
|
964
|
+
if "vt_enable_tip" in dictionary.keys()\
|
|
965
|
+
else APIHelper.SKIP
|
|
966
|
+
ach_allow_debit =\
|
|
967
|
+
dictionary.get("ach_allow_debit")\
|
|
968
|
+
if "ach_allow_debit" in dictionary.keys()\
|
|
969
|
+
else APIHelper.SKIP
|
|
970
|
+
ach_allow_credit =\
|
|
971
|
+
dictionary.get("ach_allow_credit")\
|
|
972
|
+
if "ach_allow_credit" in dictionary.keys()\
|
|
973
|
+
else APIHelper.SKIP
|
|
974
|
+
ach_allow_refund =\
|
|
975
|
+
dictionary.get("ach_allow_refund")\
|
|
976
|
+
if "ach_allow_refund" in dictionary.keys()\
|
|
977
|
+
else APIHelper.SKIP
|
|
978
|
+
vt_cvv =\
|
|
979
|
+
dictionary.get("vt_cvv")\
|
|
980
|
+
if "vt_cvv" in dictionary.keys()\
|
|
981
|
+
else APIHelper.SKIP
|
|
982
|
+
vt_street =\
|
|
983
|
+
dictionary.get("vt_street")\
|
|
984
|
+
if "vt_street" in dictionary.keys()\
|
|
985
|
+
else APIHelper.SKIP
|
|
986
|
+
vt_zip =\
|
|
987
|
+
dictionary.get("vt_zip")\
|
|
988
|
+
if "vt_zip" in dictionary.keys()\
|
|
989
|
+
else APIHelper.SKIP
|
|
990
|
+
vt_order_num =\
|
|
991
|
+
dictionary.get("vt_order_num")\
|
|
992
|
+
if "vt_order_num" in dictionary.keys()\
|
|
993
|
+
else APIHelper.SKIP
|
|
994
|
+
vt_enable =\
|
|
995
|
+
dictionary.get("vt_enable")\
|
|
996
|
+
if "vt_enable" in dictionary.keys()\
|
|
997
|
+
else APIHelper.SKIP
|
|
998
|
+
receipt_show_contact_name =\
|
|
999
|
+
dictionary.get("receipt_show_contact_name")\
|
|
1000
|
+
if "receipt_show_contact_name" in dictionary.keys()\
|
|
1001
|
+
else APIHelper.SKIP
|
|
1002
|
+
display_avs =\
|
|
1003
|
+
dictionary.get("display_avs")\
|
|
1004
|
+
if "display_avs" in dictionary.keys()\
|
|
1005
|
+
else APIHelper.SKIP
|
|
1006
|
+
card_type_visa =\
|
|
1007
|
+
dictionary.get("card_type_visa")\
|
|
1008
|
+
if "card_type_visa" in dictionary.keys()\
|
|
1009
|
+
else APIHelper.SKIP
|
|
1010
|
+
card_type_mc =\
|
|
1011
|
+
dictionary.get("card_type_mc")\
|
|
1012
|
+
if "card_type_mc" in dictionary.keys()\
|
|
1013
|
+
else APIHelper.SKIP
|
|
1014
|
+
card_type_disc =\
|
|
1015
|
+
dictionary.get("card_type_disc")\
|
|
1016
|
+
if "card_type_disc" in dictionary.keys()\
|
|
1017
|
+
else APIHelper.SKIP
|
|
1018
|
+
card_type_amex =\
|
|
1019
|
+
dictionary.get("card_type_amex")\
|
|
1020
|
+
if "card_type_amex" in dictionary.keys()\
|
|
1021
|
+
else APIHelper.SKIP
|
|
1022
|
+
card_type_diners =\
|
|
1023
|
+
dictionary.get("card_type_diners")\
|
|
1024
|
+
if "card_type_diners" in dictionary.keys()\
|
|
1025
|
+
else APIHelper.SKIP
|
|
1026
|
+
card_type_jcb =\
|
|
1027
|
+
dictionary.get("card_type_jcb")\
|
|
1028
|
+
if "card_type_jcb" in dictionary.keys()\
|
|
1029
|
+
else APIHelper.SKIP
|
|
1030
|
+
card_type_ebt =\
|
|
1031
|
+
dictionary.get("card_type_ebt")\
|
|
1032
|
+
if "card_type_ebt" in dictionary.keys()\
|
|
1033
|
+
else APIHelper.SKIP
|
|
1034
|
+
allow_ebt_cash_benefit =\
|
|
1035
|
+
dictionary.get("allow_ebt_cash_benefit")\
|
|
1036
|
+
if "allow_ebt_cash_benefit" in dictionary.keys()\
|
|
1037
|
+
else APIHelper.SKIP
|
|
1038
|
+
allow_ebt_food_stamp =\
|
|
1039
|
+
dictionary.get("allow_ebt_food_stamp")\
|
|
1040
|
+
if "allow_ebt_food_stamp" in dictionary.keys()\
|
|
1041
|
+
else APIHelper.SKIP
|
|
1042
|
+
invoice_location =\
|
|
1043
|
+
dictionary.get("invoice_location")\
|
|
1044
|
+
if "invoice_location" in dictionary.keys()\
|
|
1045
|
+
else APIHelper.SKIP
|
|
1046
|
+
allow_partial_authorization =\
|
|
1047
|
+
dictionary.get("allow_partial_authorization")\
|
|
1048
|
+
if "allow_partial_authorization" in dictionary.keys()\
|
|
1049
|
+
else APIHelper.SKIP
|
|
1050
|
+
allow_recurring_partial_authorization =\
|
|
1051
|
+
dictionary.get("allow_recurring_partial_authorization")\
|
|
1052
|
+
if "allow_recurring_partial_authorization" in dictionary.keys()\
|
|
1053
|
+
else APIHelper.SKIP
|
|
1054
|
+
auto_decline_cvv =\
|
|
1055
|
+
dictionary.get("auto_decline_cvv")\
|
|
1056
|
+
if "auto_decline_cvv" in dictionary.keys()\
|
|
1057
|
+
else APIHelper.SKIP
|
|
1058
|
+
auto_decline_street =\
|
|
1059
|
+
dictionary.get("auto_decline_street")\
|
|
1060
|
+
if "auto_decline_street" in dictionary.keys()\
|
|
1061
|
+
else APIHelper.SKIP
|
|
1062
|
+
auto_decline_zip =\
|
|
1063
|
+
dictionary.get("auto_decline_zip")\
|
|
1064
|
+
if "auto_decline_zip" in dictionary.keys()\
|
|
1065
|
+
else APIHelper.SKIP
|
|
1066
|
+
split_payments_allow =\
|
|
1067
|
+
dictionary.get("split_payments_allow")\
|
|
1068
|
+
if "split_payments_allow" in dictionary.keys()\
|
|
1069
|
+
else APIHelper.SKIP
|
|
1070
|
+
vt_show_custom_fields =\
|
|
1071
|
+
dictionary.get("vt_show_custom_fields")\
|
|
1072
|
+
if "vt_show_custom_fields" in dictionary.keys()\
|
|
1073
|
+
else APIHelper.SKIP
|
|
1074
|
+
receipt_show_custom_fields =\
|
|
1075
|
+
dictionary.get("receipt_show_custom_fields")\
|
|
1076
|
+
if "receipt_show_custom_fields" in dictionary.keys()\
|
|
1077
|
+
else APIHelper.SKIP
|
|
1078
|
+
vt_override_sales_tax_allowed =\
|
|
1079
|
+
dictionary.get("vt_override_sales_tax_allowed")\
|
|
1080
|
+
if "vt_override_sales_tax_allowed" in dictionary.keys()\
|
|
1081
|
+
else APIHelper.SKIP
|
|
1082
|
+
vt_enable_sales_tax =\
|
|
1083
|
+
dictionary.get("vt_enable_sales_tax")\
|
|
1084
|
+
if "vt_enable_sales_tax" in dictionary.keys()\
|
|
1085
|
+
else APIHelper.SKIP
|
|
1086
|
+
vt_require_zip =\
|
|
1087
|
+
dictionary.get("vt_require_zip")\
|
|
1088
|
+
if "vt_require_zip" in dictionary.keys()\
|
|
1089
|
+
else APIHelper.SKIP
|
|
1090
|
+
vt_require_street =\
|
|
1091
|
+
dictionary.get("vt_require_street")\
|
|
1092
|
+
if "vt_require_street" in dictionary.keys()\
|
|
1093
|
+
else APIHelper.SKIP
|
|
1094
|
+
auto_decline_cavv =\
|
|
1095
|
+
dictionary.get("auto_decline_cavv")\
|
|
1096
|
+
if "auto_decline_cavv" in dictionary.keys()\
|
|
1097
|
+
else APIHelper.SKIP
|
|
1098
|
+
merchant_id =\
|
|
1099
|
+
dictionary.get("merchant_id")\
|
|
1100
|
+
if "merchant_id" in dictionary.keys()\
|
|
1101
|
+
else APIHelper.SKIP
|
|
1102
|
+
receipt_header =\
|
|
1103
|
+
dictionary.get("receipt_header")\
|
|
1104
|
+
if "receipt_header" in dictionary.keys()\
|
|
1105
|
+
else APIHelper.SKIP
|
|
1106
|
+
receipt_footer =\
|
|
1107
|
+
dictionary.get("receipt_footer")\
|
|
1108
|
+
if "receipt_footer" in dictionary.keys()\
|
|
1109
|
+
else APIHelper.SKIP
|
|
1110
|
+
receipt_add_account_above_signature =\
|
|
1111
|
+
dictionary.get("receipt_add_account_above_signature")\
|
|
1112
|
+
if "receipt_add_account_above_signature" in dictionary.keys()\
|
|
1113
|
+
else APIHelper.SKIP
|
|
1114
|
+
receipt_add_recurring_above_signature =\
|
|
1115
|
+
dictionary.get("receipt_add_recurring_above_signature")\
|
|
1116
|
+
if "receipt_add_recurring_above_signature" in dictionary.keys()\
|
|
1117
|
+
else APIHelper.SKIP
|
|
1118
|
+
receipt_vt_above_signature =\
|
|
1119
|
+
dictionary.get("receipt_vt_above_signature")\
|
|
1120
|
+
if "receipt_vt_above_signature" in dictionary.keys()\
|
|
1121
|
+
else APIHelper.SKIP
|
|
1122
|
+
default_transaction_type =\
|
|
1123
|
+
dictionary.get("default_transaction_type")\
|
|
1124
|
+
if "default_transaction_type" in dictionary.keys()\
|
|
1125
|
+
else APIHelper.SKIP
|
|
1126
|
+
username =\
|
|
1127
|
+
dictionary.get("username")\
|
|
1128
|
+
if "username" in dictionary.keys()\
|
|
1129
|
+
else APIHelper.SKIP
|
|
1130
|
+
password =\
|
|
1131
|
+
dictionary.get("password")\
|
|
1132
|
+
if "password" in dictionary.keys()\
|
|
1133
|
+
else APIHelper.SKIP
|
|
1134
|
+
current_batch =\
|
|
1135
|
+
dictionary.get("current_batch")\
|
|
1136
|
+
if dictionary.get("current_batch")\
|
|
1137
|
+
else 1
|
|
1138
|
+
dup_check_per_batch =\
|
|
1139
|
+
dictionary.get("dup_check_per_batch")\
|
|
1140
|
+
if "dup_check_per_batch" in dictionary.keys()\
|
|
1141
|
+
else APIHelper.SKIP
|
|
1142
|
+
agent_code =\
|
|
1143
|
+
dictionary.get("agent_code")\
|
|
1144
|
+
if "agent_code" in dictionary.keys()\
|
|
1145
|
+
else APIHelper.SKIP
|
|
1146
|
+
paylink_allow =\
|
|
1147
|
+
dictionary.get("paylink_allow")\
|
|
1148
|
+
if "paylink_allow" in dictionary.keys()\
|
|
1149
|
+
else APIHelper.SKIP
|
|
1150
|
+
quick_invoice_allow =\
|
|
1151
|
+
dictionary.get("quick_invoice_allow")\
|
|
1152
|
+
if "quick_invoice_allow" in dictionary.keys()\
|
|
1153
|
+
else APIHelper.SKIP
|
|
1154
|
+
level_3_allow =\
|
|
1155
|
+
dictionary.get("level3_allow")\
|
|
1156
|
+
if "level3_allow" in dictionary.keys()\
|
|
1157
|
+
else APIHelper.SKIP
|
|
1158
|
+
payfac_enable =\
|
|
1159
|
+
dictionary.get("payfac_enable")\
|
|
1160
|
+
if "payfac_enable" in dictionary.keys()\
|
|
1161
|
+
else APIHelper.SKIP
|
|
1162
|
+
enable_3_ds =\
|
|
1163
|
+
dictionary.get("enable_3ds")\
|
|
1164
|
+
if "enable_3ds" in dictionary.keys()\
|
|
1165
|
+
else APIHelper.SKIP
|
|
1166
|
+
sales_office_id =\
|
|
1167
|
+
dictionary.get("sales_office_id")\
|
|
1168
|
+
if "sales_office_id" in dictionary.keys()\
|
|
1169
|
+
else APIHelper.SKIP
|
|
1170
|
+
hosted_payment_page_max_allowed =\
|
|
1171
|
+
dictionary.get("hosted_payment_page_max_allowed")\
|
|
1172
|
+
if dictionary.get("hosted_payment_page_max_allowed")\
|
|
1173
|
+
else 5
|
|
1174
|
+
hosted_payment_page_allow =\
|
|
1175
|
+
dictionary.get("hosted_payment_page_allow")\
|
|
1176
|
+
if "hosted_payment_page_allow" in dictionary.keys()\
|
|
1177
|
+
else APIHelper.SKIP
|
|
1178
|
+
surcharge_id =\
|
|
1179
|
+
dictionary.get("surcharge_id")\
|
|
1180
|
+
if "surcharge_id" in dictionary.keys()\
|
|
1181
|
+
else APIHelper.SKIP
|
|
1182
|
+
allow_big_commerce =\
|
|
1183
|
+
dictionary.get("allow_big_commerce")\
|
|
1184
|
+
if "allow_big_commerce" in dictionary.keys()\
|
|
1185
|
+
else APIHelper.SKIP
|
|
1186
|
+
allow_shopify =\
|
|
1187
|
+
dictionary.get("allow_shopify")\
|
|
1188
|
+
if "allow_shopify" in dictionary.keys()\
|
|
1189
|
+
else APIHelper.SKIP
|
|
1190
|
+
level_3_default =\
|
|
1191
|
+
Level3Default.from_dictionary(
|
|
1192
|
+
dictionary.get("level3_default"))\
|
|
1193
|
+
if "level3_default" in dictionary.keys()\
|
|
1194
|
+
else APIHelper.SKIP
|
|
1195
|
+
cau_subscribe_type_id =\
|
|
1196
|
+
dictionary.get("cau_subscribe_type_id")\
|
|
1197
|
+
if "cau_subscribe_type_id" in dictionary.keys()\
|
|
1198
|
+
else APIHelper.SKIP
|
|
1199
|
+
cau_account_number =\
|
|
1200
|
+
dictionary.get("cau_account_number")\
|
|
1201
|
+
if "cau_account_number" in dictionary.keys()\
|
|
1202
|
+
else APIHelper.SKIP
|
|
1203
|
+
location_billing_account_id =\
|
|
1204
|
+
dictionary.get("location_billing_account_id")\
|
|
1205
|
+
if "location_billing_account_id" in dictionary.keys()\
|
|
1206
|
+
else APIHelper.SKIP
|
|
1207
|
+
product_billing_group_id =\
|
|
1208
|
+
dictionary.get("product_billing_group_id")\
|
|
1209
|
+
if "product_billing_group_id" in dictionary.keys()\
|
|
1210
|
+
else APIHelper.SKIP
|
|
1211
|
+
account_number =\
|
|
1212
|
+
dictionary.get("account_number")\
|
|
1213
|
+
if "account_number" in dictionary.keys()\
|
|
1214
|
+
else APIHelper.SKIP
|
|
1215
|
+
run_avs_on_accountvault_create =\
|
|
1216
|
+
dictionary.get("run_avs_on_accountvault_create")\
|
|
1217
|
+
if "run_avs_on_accountvault_create" in dictionary.keys()\
|
|
1218
|
+
else APIHelper.SKIP
|
|
1219
|
+
accountvault_expire_notification_email_enable =\
|
|
1220
|
+
dictionary.get("accountvault_expire_notification_email_enable")\
|
|
1221
|
+
if "accountvault_expire_notification_email_enable" in dictionary.keys()\
|
|
1222
|
+
else APIHelper.SKIP
|
|
1223
|
+
debit_allow_void =\
|
|
1224
|
+
dictionary.get("debit_allow_void")\
|
|
1225
|
+
if "debit_allow_void" in dictionary.keys()\
|
|
1226
|
+
else APIHelper.SKIP
|
|
1227
|
+
quick_invoice_text_to_pay =\
|
|
1228
|
+
dictionary.get("quick_invoice_text_to_pay")\
|
|
1229
|
+
if "quick_invoice_text_to_pay" in dictionary.keys()\
|
|
1230
|
+
else APIHelper.SKIP
|
|
1231
|
+
authentication_code =\
|
|
1232
|
+
dictionary.get("authentication_code")\
|
|
1233
|
+
if "authentication_code" in dictionary.keys()\
|
|
1234
|
+
else APIHelper.SKIP
|
|
1235
|
+
sms_enable =\
|
|
1236
|
+
dictionary.get("sms_enable")\
|
|
1237
|
+
if "sms_enable" in dictionary.keys()\
|
|
1238
|
+
else APIHelper.SKIP
|
|
1239
|
+
vt_show_currency =\
|
|
1240
|
+
dictionary.get("vt_show_currency")\
|
|
1241
|
+
if "vt_show_currency" in dictionary.keys()\
|
|
1242
|
+
else APIHelper.SKIP
|
|
1243
|
+
receipt_show_currency =\
|
|
1244
|
+
dictionary.get("receipt_show_currency")\
|
|
1245
|
+
if "receipt_show_currency" in dictionary.keys()\
|
|
1246
|
+
else APIHelper.SKIP
|
|
1247
|
+
allow_blind_refund =\
|
|
1248
|
+
dictionary.get("allow_blind_refund")\
|
|
1249
|
+
if "allow_blind_refund" in dictionary.keys()\
|
|
1250
|
+
else APIHelper.SKIP
|
|
1251
|
+
vt_show_company_name =\
|
|
1252
|
+
dictionary.get("vt_show_company_name")\
|
|
1253
|
+
if "vt_show_company_name" in dictionary.keys()\
|
|
1254
|
+
else APIHelper.SKIP
|
|
1255
|
+
receipt_show_company_name =\
|
|
1256
|
+
dictionary.get("receipt_show_company_name")\
|
|
1257
|
+
if "receipt_show_company_name" in dictionary.keys()\
|
|
1258
|
+
else APIHelper.SKIP
|
|
1259
|
+
bank_funded_only =\
|
|
1260
|
+
dictionary.get("bank_funded_only")\
|
|
1261
|
+
if "bank_funded_only" in dictionary.keys()\
|
|
1262
|
+
else APIHelper.SKIP
|
|
1263
|
+
require_cvv_on_keyed_cnp =\
|
|
1264
|
+
dictionary.get("require_cvv_on_keyed_cnp")\
|
|
1265
|
+
if "require_cvv_on_keyed_cnp" in dictionary.keys()\
|
|
1266
|
+
else APIHelper.SKIP
|
|
1267
|
+
require_cvv_on_tokenized_cnp =\
|
|
1268
|
+
dictionary.get("require_cvv_on_tokenized_cnp")\
|
|
1269
|
+
if "require_cvv_on_tokenized_cnp" in dictionary.keys()\
|
|
1270
|
+
else APIHelper.SKIP
|
|
1271
|
+
show_secondary_amount =\
|
|
1272
|
+
dictionary.get("show_secondary_amount")\
|
|
1273
|
+
if "show_secondary_amount" in dictionary.keys()\
|
|
1274
|
+
else APIHelper.SKIP
|
|
1275
|
+
allow_secondary_amount =\
|
|
1276
|
+
dictionary.get("allow_secondary_amount")\
|
|
1277
|
+
if "allow_secondary_amount" in dictionary.keys()\
|
|
1278
|
+
else APIHelper.SKIP
|
|
1279
|
+
show_google_pay =\
|
|
1280
|
+
dictionary.get("show_google_pay")\
|
|
1281
|
+
if "show_google_pay" in dictionary.keys()\
|
|
1282
|
+
else APIHelper.SKIP
|
|
1283
|
+
show_apple_pay =\
|
|
1284
|
+
dictionary.get("show_apple_pay")\
|
|
1285
|
+
if "show_apple_pay" in dictionary.keys()\
|
|
1286
|
+
else APIHelper.SKIP
|
|
1287
|
+
batch_risk_config =\
|
|
1288
|
+
BatchRiskConfig.from_dictionary(
|
|
1289
|
+
dictionary.get("batch_risk_config"))\
|
|
1290
|
+
if "batch_risk_config" in dictionary.keys()\
|
|
1291
|
+
else APIHelper.SKIP
|
|
1292
|
+
currency_code =\
|
|
1293
|
+
dictionary.get("currency_code")\
|
|
1294
|
+
if dictionary.get("currency_code")\
|
|
1295
|
+
else APIHelper.SKIP
|
|
1296
|
+
enable_ach_validation =\
|
|
1297
|
+
dictionary.get("enable_ach_validation")\
|
|
1298
|
+
if "enable_ach_validation" in dictionary.keys()\
|
|
1299
|
+
else APIHelper.SKIP
|
|
1300
|
+
enable_ach_retry =\
|
|
1301
|
+
dictionary.get("enable_ach_retry")\
|
|
1302
|
+
if "enable_ach_retry" in dictionary.keys()\
|
|
1303
|
+
else APIHelper.SKIP
|
|
1304
|
+
allow_softpos =\
|
|
1305
|
+
dictionary.get("allow_softpos")\
|
|
1306
|
+
if "allow_softpos" in dictionary.keys()\
|
|
1307
|
+
else APIHelper.SKIP
|
|
1308
|
+
allow_multi_currency =\
|
|
1309
|
+
dictionary.get("allow_multi_currency")\
|
|
1310
|
+
if "allow_multi_currency" in dictionary.keys()\
|
|
1311
|
+
else APIHelper.SKIP
|
|
1312
|
+
allow_unapplied_payments =\
|
|
1313
|
+
dictionary.get("allow_unapplied_payments")\
|
|
1314
|
+
if "allow_unapplied_payments" in dictionary.keys()\
|
|
1315
|
+
else APIHelper.SKIP
|
|
1316
|
+
id =\
|
|
1317
|
+
dictionary.get("id")\
|
|
1318
|
+
if dictionary.get("id")\
|
|
1319
|
+
else APIHelper.SKIP
|
|
1320
|
+
receipt_logo =\
|
|
1321
|
+
dictionary.get("receipt_logo")\
|
|
1322
|
+
if dictionary.get("receipt_logo")\
|
|
1323
|
+
else APIHelper.SKIP
|
|
1324
|
+
active =\
|
|
1325
|
+
dictionary.get("active")\
|
|
1326
|
+
if "active" in dictionary.keys()\
|
|
1327
|
+
else APIHelper.SKIP
|
|
1328
|
+
tz =\
|
|
1329
|
+
dictionary.get("tz")\
|
|
1330
|
+
if "tz" in dictionary.keys()\
|
|
1331
|
+
else APIHelper.SKIP
|
|
1332
|
+
current_stan =\
|
|
1333
|
+
dictionary.get("current_stan")\
|
|
1334
|
+
if dictionary.get("current_stan")\
|
|
1335
|
+
else 1
|
|
1336
|
+
created_ts =\
|
|
1337
|
+
dictionary.get("created_ts")\
|
|
1338
|
+
if "created_ts" in dictionary.keys()\
|
|
1339
|
+
else APIHelper.SKIP
|
|
1340
|
+
modified_ts =\
|
|
1341
|
+
dictionary.get("modified_ts")\
|
|
1342
|
+
if "modified_ts" in dictionary.keys()\
|
|
1343
|
+
else APIHelper.SKIP
|
|
1344
|
+
created_user_id =\
|
|
1345
|
+
dictionary.get("created_user_id")\
|
|
1346
|
+
if "created_user_id" in dictionary.keys()\
|
|
1347
|
+
else APIHelper.SKIP
|
|
1348
|
+
modified_user_id =\
|
|
1349
|
+
dictionary.get("modified_user_id")\
|
|
1350
|
+
if "modified_user_id" in dictionary.keys()\
|
|
1351
|
+
else APIHelper.SKIP
|
|
1352
|
+
product_transaction_api_id =\
|
|
1353
|
+
dictionary.get("product_transaction_api_id")\
|
|
1354
|
+
if "product_transaction_api_id" in dictionary.keys()\
|
|
1355
|
+
else APIHelper.SKIP
|
|
1356
|
+
transaction_amount_notification_threshold =\
|
|
1357
|
+
dictionary.get("transaction_amount_notification_threshold")\
|
|
1358
|
+
if dictionary.get("transaction_amount_notification_threshold")\
|
|
1359
|
+
else APIHelper.SKIP
|
|
1360
|
+
is_secondary_amount_allowed =\
|
|
1361
|
+
dictionary.get("is_secondary_amount_allowed")\
|
|
1362
|
+
if "is_secondary_amount_allowed" in dictionary.keys()\
|
|
1363
|
+
else APIHelper.SKIP
|
|
1364
|
+
fortis_id =\
|
|
1365
|
+
dictionary.get("fortis_id")\
|
|
1366
|
+
if "fortis_id" in dictionary.keys()\
|
|
1367
|
+
else APIHelper.SKIP
|
|
1368
|
+
product_billing_group_code =\
|
|
1369
|
+
dictionary.get("product_billing_group_code")\
|
|
1370
|
+
if "product_billing_group_code" in dictionary.keys()\
|
|
1371
|
+
else APIHelper.SKIP
|
|
1372
|
+
cau_subscribe_type_code =\
|
|
1373
|
+
dictionary.get("cau_subscribe_type_code")\
|
|
1374
|
+
if "cau_subscribe_type_code" in dictionary.keys()\
|
|
1375
|
+
else APIHelper.SKIP
|
|
1376
|
+
merchant_code =\
|
|
1377
|
+
dictionary.get("merchant_code")\
|
|
1378
|
+
if "merchant_code" in dictionary.keys()\
|
|
1379
|
+
else APIHelper.SKIP
|
|
1380
|
+
currency =\
|
|
1381
|
+
dictionary.get("currency")\
|
|
1382
|
+
if dictionary.get("currency")\
|
|
1383
|
+
else APIHelper.SKIP
|
|
1384
|
+
|
|
1385
|
+
# Clean out expected properties from dictionary
|
|
1386
|
+
additional_properties =\
|
|
1387
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
1388
|
+
|
|
1389
|
+
# Return an object of this model
|
|
1390
|
+
return cls(processor_version,
|
|
1391
|
+
industry_type,
|
|
1392
|
+
title,
|
|
1393
|
+
payment_method,
|
|
1394
|
+
processor,
|
|
1395
|
+
mcc,
|
|
1396
|
+
tax_surcharge_config,
|
|
1397
|
+
terminal_id,
|
|
1398
|
+
partner,
|
|
1399
|
+
product_ach_pv_store_id,
|
|
1400
|
+
invoice_adjustment_title,
|
|
1401
|
+
location_id,
|
|
1402
|
+
location_api_id,
|
|
1403
|
+
billing_location_api_id,
|
|
1404
|
+
portfolio_id,
|
|
1405
|
+
portfolio_validation_rule,
|
|
1406
|
+
sub_processor,
|
|
1407
|
+
surcharge,
|
|
1408
|
+
processor_data,
|
|
1409
|
+
vt_clerk_number,
|
|
1410
|
+
vt_billing_phone,
|
|
1411
|
+
vt_enable_tip,
|
|
1412
|
+
ach_allow_debit,
|
|
1413
|
+
ach_allow_credit,
|
|
1414
|
+
ach_allow_refund,
|
|
1415
|
+
vt_cvv,
|
|
1416
|
+
vt_street,
|
|
1417
|
+
vt_zip,
|
|
1418
|
+
vt_order_num,
|
|
1419
|
+
vt_enable,
|
|
1420
|
+
receipt_show_contact_name,
|
|
1421
|
+
display_avs,
|
|
1422
|
+
card_type_visa,
|
|
1423
|
+
card_type_mc,
|
|
1424
|
+
card_type_disc,
|
|
1425
|
+
card_type_amex,
|
|
1426
|
+
card_type_diners,
|
|
1427
|
+
card_type_jcb,
|
|
1428
|
+
card_type_ebt,
|
|
1429
|
+
allow_ebt_cash_benefit,
|
|
1430
|
+
allow_ebt_food_stamp,
|
|
1431
|
+
invoice_location,
|
|
1432
|
+
allow_partial_authorization,
|
|
1433
|
+
allow_recurring_partial_authorization,
|
|
1434
|
+
auto_decline_cvv,
|
|
1435
|
+
auto_decline_street,
|
|
1436
|
+
auto_decline_zip,
|
|
1437
|
+
split_payments_allow,
|
|
1438
|
+
vt_show_custom_fields,
|
|
1439
|
+
receipt_show_custom_fields,
|
|
1440
|
+
vt_override_sales_tax_allowed,
|
|
1441
|
+
vt_enable_sales_tax,
|
|
1442
|
+
vt_require_zip,
|
|
1443
|
+
vt_require_street,
|
|
1444
|
+
auto_decline_cavv,
|
|
1445
|
+
merchant_id,
|
|
1446
|
+
receipt_header,
|
|
1447
|
+
receipt_footer,
|
|
1448
|
+
receipt_add_account_above_signature,
|
|
1449
|
+
receipt_add_recurring_above_signature,
|
|
1450
|
+
receipt_vt_above_signature,
|
|
1451
|
+
default_transaction_type,
|
|
1452
|
+
username,
|
|
1453
|
+
password,
|
|
1454
|
+
current_batch,
|
|
1455
|
+
dup_check_per_batch,
|
|
1456
|
+
agent_code,
|
|
1457
|
+
paylink_allow,
|
|
1458
|
+
quick_invoice_allow,
|
|
1459
|
+
level_3_allow,
|
|
1460
|
+
payfac_enable,
|
|
1461
|
+
enable_3_ds,
|
|
1462
|
+
sales_office_id,
|
|
1463
|
+
hosted_payment_page_max_allowed,
|
|
1464
|
+
hosted_payment_page_allow,
|
|
1465
|
+
surcharge_id,
|
|
1466
|
+
allow_big_commerce,
|
|
1467
|
+
allow_shopify,
|
|
1468
|
+
level_3_default,
|
|
1469
|
+
cau_subscribe_type_id,
|
|
1470
|
+
cau_account_number,
|
|
1471
|
+
location_billing_account_id,
|
|
1472
|
+
product_billing_group_id,
|
|
1473
|
+
account_number,
|
|
1474
|
+
run_avs_on_accountvault_create,
|
|
1475
|
+
accountvault_expire_notification_email_enable,
|
|
1476
|
+
debit_allow_void,
|
|
1477
|
+
quick_invoice_text_to_pay,
|
|
1478
|
+
authentication_code,
|
|
1479
|
+
sms_enable,
|
|
1480
|
+
vt_show_currency,
|
|
1481
|
+
receipt_show_currency,
|
|
1482
|
+
allow_blind_refund,
|
|
1483
|
+
vt_show_company_name,
|
|
1484
|
+
receipt_show_company_name,
|
|
1485
|
+
bank_funded_only,
|
|
1486
|
+
require_cvv_on_keyed_cnp,
|
|
1487
|
+
require_cvv_on_tokenized_cnp,
|
|
1488
|
+
show_secondary_amount,
|
|
1489
|
+
allow_secondary_amount,
|
|
1490
|
+
show_google_pay,
|
|
1491
|
+
show_apple_pay,
|
|
1492
|
+
batch_risk_config,
|
|
1493
|
+
currency_code,
|
|
1494
|
+
enable_ach_validation,
|
|
1495
|
+
enable_ach_retry,
|
|
1496
|
+
allow_softpos,
|
|
1497
|
+
allow_multi_currency,
|
|
1498
|
+
allow_unapplied_payments,
|
|
1499
|
+
id,
|
|
1500
|
+
receipt_logo,
|
|
1501
|
+
active,
|
|
1502
|
+
tz,
|
|
1503
|
+
current_stan,
|
|
1504
|
+
created_ts,
|
|
1505
|
+
modified_ts,
|
|
1506
|
+
created_user_id,
|
|
1507
|
+
modified_user_id,
|
|
1508
|
+
product_transaction_api_id,
|
|
1509
|
+
transaction_amount_notification_threshold,
|
|
1510
|
+
is_secondary_amount_allowed,
|
|
1511
|
+
fortis_id,
|
|
1512
|
+
product_billing_group_code,
|
|
1513
|
+
cau_subscribe_type_code,
|
|
1514
|
+
merchant_code,
|
|
1515
|
+
currency,
|
|
1516
|
+
additional_properties)
|
|
1517
|
+
|
|
1518
|
+
def __repr__(self):
|
|
1519
|
+
"""Return a unambiguous string representation."""
|
|
1520
|
+
_processor_version=(
|
|
1521
|
+
self.processor_version
|
|
1522
|
+
if hasattr(self, "processor_version")
|
|
1523
|
+
else None
|
|
1524
|
+
)
|
|
1525
|
+
_industry_type=(
|
|
1526
|
+
self.industry_type
|
|
1527
|
+
if hasattr(self, "industry_type")
|
|
1528
|
+
else None
|
|
1529
|
+
)
|
|
1530
|
+
_title=(
|
|
1531
|
+
self.title
|
|
1532
|
+
if hasattr(self, "title")
|
|
1533
|
+
else None
|
|
1534
|
+
)
|
|
1535
|
+
_payment_method=(
|
|
1536
|
+
self.payment_method
|
|
1537
|
+
if hasattr(self, "payment_method")
|
|
1538
|
+
else None
|
|
1539
|
+
)
|
|
1540
|
+
_processor=(
|
|
1541
|
+
self.processor
|
|
1542
|
+
if hasattr(self, "processor")
|
|
1543
|
+
else None
|
|
1544
|
+
)
|
|
1545
|
+
_mcc=(
|
|
1546
|
+
self.mcc
|
|
1547
|
+
if hasattr(self, "mcc")
|
|
1548
|
+
else None
|
|
1549
|
+
)
|
|
1550
|
+
_tax_surcharge_config=(
|
|
1551
|
+
self.tax_surcharge_config
|
|
1552
|
+
if hasattr(self, "tax_surcharge_config")
|
|
1553
|
+
else None
|
|
1554
|
+
)
|
|
1555
|
+
_terminal_id=(
|
|
1556
|
+
self.terminal_id
|
|
1557
|
+
if hasattr(self, "terminal_id")
|
|
1558
|
+
else None
|
|
1559
|
+
)
|
|
1560
|
+
_partner=(
|
|
1561
|
+
self.partner
|
|
1562
|
+
if hasattr(self, "partner")
|
|
1563
|
+
else None
|
|
1564
|
+
)
|
|
1565
|
+
_product_ach_pv_store_id=(
|
|
1566
|
+
self.product_ach_pv_store_id
|
|
1567
|
+
if hasattr(self, "product_ach_pv_store_id")
|
|
1568
|
+
else None
|
|
1569
|
+
)
|
|
1570
|
+
_invoice_adjustment_title=(
|
|
1571
|
+
self.invoice_adjustment_title
|
|
1572
|
+
if hasattr(self, "invoice_adjustment_title")
|
|
1573
|
+
else None
|
|
1574
|
+
)
|
|
1575
|
+
_location_id=(
|
|
1576
|
+
self.location_id
|
|
1577
|
+
if hasattr(self, "location_id")
|
|
1578
|
+
else None
|
|
1579
|
+
)
|
|
1580
|
+
_location_api_id=(
|
|
1581
|
+
self.location_api_id
|
|
1582
|
+
if hasattr(self, "location_api_id")
|
|
1583
|
+
else None
|
|
1584
|
+
)
|
|
1585
|
+
_billing_location_api_id=(
|
|
1586
|
+
self.billing_location_api_id
|
|
1587
|
+
if hasattr(self, "billing_location_api_id")
|
|
1588
|
+
else None
|
|
1589
|
+
)
|
|
1590
|
+
_portfolio_id=(
|
|
1591
|
+
self.portfolio_id
|
|
1592
|
+
if hasattr(self, "portfolio_id")
|
|
1593
|
+
else None
|
|
1594
|
+
)
|
|
1595
|
+
_portfolio_validation_rule=(
|
|
1596
|
+
self.portfolio_validation_rule
|
|
1597
|
+
if hasattr(self, "portfolio_validation_rule")
|
|
1598
|
+
else None
|
|
1599
|
+
)
|
|
1600
|
+
_sub_processor=(
|
|
1601
|
+
self.sub_processor
|
|
1602
|
+
if hasattr(self, "sub_processor")
|
|
1603
|
+
else None
|
|
1604
|
+
)
|
|
1605
|
+
_surcharge=(
|
|
1606
|
+
self.surcharge
|
|
1607
|
+
if hasattr(self, "surcharge")
|
|
1608
|
+
else None
|
|
1609
|
+
)
|
|
1610
|
+
_processor_data=(
|
|
1611
|
+
self.processor_data
|
|
1612
|
+
if hasattr(self, "processor_data")
|
|
1613
|
+
else None
|
|
1614
|
+
)
|
|
1615
|
+
_vt_clerk_number=(
|
|
1616
|
+
self.vt_clerk_number
|
|
1617
|
+
if hasattr(self, "vt_clerk_number")
|
|
1618
|
+
else None
|
|
1619
|
+
)
|
|
1620
|
+
_vt_billing_phone=(
|
|
1621
|
+
self.vt_billing_phone
|
|
1622
|
+
if hasattr(self, "vt_billing_phone")
|
|
1623
|
+
else None
|
|
1624
|
+
)
|
|
1625
|
+
_vt_enable_tip=(
|
|
1626
|
+
self.vt_enable_tip
|
|
1627
|
+
if hasattr(self, "vt_enable_tip")
|
|
1628
|
+
else None
|
|
1629
|
+
)
|
|
1630
|
+
_ach_allow_debit=(
|
|
1631
|
+
self.ach_allow_debit
|
|
1632
|
+
if hasattr(self, "ach_allow_debit")
|
|
1633
|
+
else None
|
|
1634
|
+
)
|
|
1635
|
+
_ach_allow_credit=(
|
|
1636
|
+
self.ach_allow_credit
|
|
1637
|
+
if hasattr(self, "ach_allow_credit")
|
|
1638
|
+
else None
|
|
1639
|
+
)
|
|
1640
|
+
_ach_allow_refund=(
|
|
1641
|
+
self.ach_allow_refund
|
|
1642
|
+
if hasattr(self, "ach_allow_refund")
|
|
1643
|
+
else None
|
|
1644
|
+
)
|
|
1645
|
+
_vt_cvv=(
|
|
1646
|
+
self.vt_cvv
|
|
1647
|
+
if hasattr(self, "vt_cvv")
|
|
1648
|
+
else None
|
|
1649
|
+
)
|
|
1650
|
+
_vt_street=(
|
|
1651
|
+
self.vt_street
|
|
1652
|
+
if hasattr(self, "vt_street")
|
|
1653
|
+
else None
|
|
1654
|
+
)
|
|
1655
|
+
_vt_zip=(
|
|
1656
|
+
self.vt_zip
|
|
1657
|
+
if hasattr(self, "vt_zip")
|
|
1658
|
+
else None
|
|
1659
|
+
)
|
|
1660
|
+
_vt_order_num=(
|
|
1661
|
+
self.vt_order_num
|
|
1662
|
+
if hasattr(self, "vt_order_num")
|
|
1663
|
+
else None
|
|
1664
|
+
)
|
|
1665
|
+
_vt_enable=(
|
|
1666
|
+
self.vt_enable
|
|
1667
|
+
if hasattr(self, "vt_enable")
|
|
1668
|
+
else None
|
|
1669
|
+
)
|
|
1670
|
+
_receipt_show_contact_name=(
|
|
1671
|
+
self.receipt_show_contact_name
|
|
1672
|
+
if hasattr(self, "receipt_show_contact_name")
|
|
1673
|
+
else None
|
|
1674
|
+
)
|
|
1675
|
+
_display_avs=(
|
|
1676
|
+
self.display_avs
|
|
1677
|
+
if hasattr(self, "display_avs")
|
|
1678
|
+
else None
|
|
1679
|
+
)
|
|
1680
|
+
_card_type_visa=(
|
|
1681
|
+
self.card_type_visa
|
|
1682
|
+
if hasattr(self, "card_type_visa")
|
|
1683
|
+
else None
|
|
1684
|
+
)
|
|
1685
|
+
_card_type_mc=(
|
|
1686
|
+
self.card_type_mc
|
|
1687
|
+
if hasattr(self, "card_type_mc")
|
|
1688
|
+
else None
|
|
1689
|
+
)
|
|
1690
|
+
_card_type_disc=(
|
|
1691
|
+
self.card_type_disc
|
|
1692
|
+
if hasattr(self, "card_type_disc")
|
|
1693
|
+
else None
|
|
1694
|
+
)
|
|
1695
|
+
_card_type_amex=(
|
|
1696
|
+
self.card_type_amex
|
|
1697
|
+
if hasattr(self, "card_type_amex")
|
|
1698
|
+
else None
|
|
1699
|
+
)
|
|
1700
|
+
_card_type_diners=(
|
|
1701
|
+
self.card_type_diners
|
|
1702
|
+
if hasattr(self, "card_type_diners")
|
|
1703
|
+
else None
|
|
1704
|
+
)
|
|
1705
|
+
_card_type_jcb=(
|
|
1706
|
+
self.card_type_jcb
|
|
1707
|
+
if hasattr(self, "card_type_jcb")
|
|
1708
|
+
else None
|
|
1709
|
+
)
|
|
1710
|
+
_card_type_ebt=(
|
|
1711
|
+
self.card_type_ebt
|
|
1712
|
+
if hasattr(self, "card_type_ebt")
|
|
1713
|
+
else None
|
|
1714
|
+
)
|
|
1715
|
+
_allow_ebt_cash_benefit=(
|
|
1716
|
+
self.allow_ebt_cash_benefit
|
|
1717
|
+
if hasattr(self, "allow_ebt_cash_benefit")
|
|
1718
|
+
else None
|
|
1719
|
+
)
|
|
1720
|
+
_allow_ebt_food_stamp=(
|
|
1721
|
+
self.allow_ebt_food_stamp
|
|
1722
|
+
if hasattr(self, "allow_ebt_food_stamp")
|
|
1723
|
+
else None
|
|
1724
|
+
)
|
|
1725
|
+
_invoice_location=(
|
|
1726
|
+
self.invoice_location
|
|
1727
|
+
if hasattr(self, "invoice_location")
|
|
1728
|
+
else None
|
|
1729
|
+
)
|
|
1730
|
+
_allow_partial_authorization=(
|
|
1731
|
+
self.allow_partial_authorization
|
|
1732
|
+
if hasattr(self, "allow_partial_authorization")
|
|
1733
|
+
else None
|
|
1734
|
+
)
|
|
1735
|
+
_allow_recurring_partial_authorization=(
|
|
1736
|
+
self.allow_recurring_partial_authorization
|
|
1737
|
+
if hasattr(self, "allow_recurring_partial_authorization")
|
|
1738
|
+
else None
|
|
1739
|
+
)
|
|
1740
|
+
_auto_decline_cvv=(
|
|
1741
|
+
self.auto_decline_cvv
|
|
1742
|
+
if hasattr(self, "auto_decline_cvv")
|
|
1743
|
+
else None
|
|
1744
|
+
)
|
|
1745
|
+
_auto_decline_street=(
|
|
1746
|
+
self.auto_decline_street
|
|
1747
|
+
if hasattr(self, "auto_decline_street")
|
|
1748
|
+
else None
|
|
1749
|
+
)
|
|
1750
|
+
_auto_decline_zip=(
|
|
1751
|
+
self.auto_decline_zip
|
|
1752
|
+
if hasattr(self, "auto_decline_zip")
|
|
1753
|
+
else None
|
|
1754
|
+
)
|
|
1755
|
+
_split_payments_allow=(
|
|
1756
|
+
self.split_payments_allow
|
|
1757
|
+
if hasattr(self, "split_payments_allow")
|
|
1758
|
+
else None
|
|
1759
|
+
)
|
|
1760
|
+
_vt_show_custom_fields=(
|
|
1761
|
+
self.vt_show_custom_fields
|
|
1762
|
+
if hasattr(self, "vt_show_custom_fields")
|
|
1763
|
+
else None
|
|
1764
|
+
)
|
|
1765
|
+
_receipt_show_custom_fields=(
|
|
1766
|
+
self.receipt_show_custom_fields
|
|
1767
|
+
if hasattr(self, "receipt_show_custom_fields")
|
|
1768
|
+
else None
|
|
1769
|
+
)
|
|
1770
|
+
_vt_override_sales_tax_allowed=(
|
|
1771
|
+
self.vt_override_sales_tax_allowed
|
|
1772
|
+
if hasattr(self, "vt_override_sales_tax_allowed")
|
|
1773
|
+
else None
|
|
1774
|
+
)
|
|
1775
|
+
_vt_enable_sales_tax=(
|
|
1776
|
+
self.vt_enable_sales_tax
|
|
1777
|
+
if hasattr(self, "vt_enable_sales_tax")
|
|
1778
|
+
else None
|
|
1779
|
+
)
|
|
1780
|
+
_vt_require_zip=(
|
|
1781
|
+
self.vt_require_zip
|
|
1782
|
+
if hasattr(self, "vt_require_zip")
|
|
1783
|
+
else None
|
|
1784
|
+
)
|
|
1785
|
+
_vt_require_street=(
|
|
1786
|
+
self.vt_require_street
|
|
1787
|
+
if hasattr(self, "vt_require_street")
|
|
1788
|
+
else None
|
|
1789
|
+
)
|
|
1790
|
+
_auto_decline_cavv=(
|
|
1791
|
+
self.auto_decline_cavv
|
|
1792
|
+
if hasattr(self, "auto_decline_cavv")
|
|
1793
|
+
else None
|
|
1794
|
+
)
|
|
1795
|
+
_merchant_id=(
|
|
1796
|
+
self.merchant_id
|
|
1797
|
+
if hasattr(self, "merchant_id")
|
|
1798
|
+
else None
|
|
1799
|
+
)
|
|
1800
|
+
_receipt_header=(
|
|
1801
|
+
self.receipt_header
|
|
1802
|
+
if hasattr(self, "receipt_header")
|
|
1803
|
+
else None
|
|
1804
|
+
)
|
|
1805
|
+
_receipt_footer=(
|
|
1806
|
+
self.receipt_footer
|
|
1807
|
+
if hasattr(self, "receipt_footer")
|
|
1808
|
+
else None
|
|
1809
|
+
)
|
|
1810
|
+
_receipt_add_account_above_signature=(
|
|
1811
|
+
self.receipt_add_account_above_signature
|
|
1812
|
+
if hasattr(self, "receipt_add_account_above_signature")
|
|
1813
|
+
else None
|
|
1814
|
+
)
|
|
1815
|
+
_receipt_add_recurring_above_signature=(
|
|
1816
|
+
self.receipt_add_recurring_above_signature
|
|
1817
|
+
if hasattr(self, "receipt_add_recurring_above_signature")
|
|
1818
|
+
else None
|
|
1819
|
+
)
|
|
1820
|
+
_receipt_vt_above_signature=(
|
|
1821
|
+
self.receipt_vt_above_signature
|
|
1822
|
+
if hasattr(self, "receipt_vt_above_signature")
|
|
1823
|
+
else None
|
|
1824
|
+
)
|
|
1825
|
+
_default_transaction_type=(
|
|
1826
|
+
self.default_transaction_type
|
|
1827
|
+
if hasattr(self, "default_transaction_type")
|
|
1828
|
+
else None
|
|
1829
|
+
)
|
|
1830
|
+
_username=(
|
|
1831
|
+
self.username
|
|
1832
|
+
if hasattr(self, "username")
|
|
1833
|
+
else None
|
|
1834
|
+
)
|
|
1835
|
+
_password=(
|
|
1836
|
+
self.password
|
|
1837
|
+
if hasattr(self, "password")
|
|
1838
|
+
else None
|
|
1839
|
+
)
|
|
1840
|
+
_current_batch=(
|
|
1841
|
+
self.current_batch
|
|
1842
|
+
if hasattr(self, "current_batch")
|
|
1843
|
+
else None
|
|
1844
|
+
)
|
|
1845
|
+
_dup_check_per_batch=(
|
|
1846
|
+
self.dup_check_per_batch
|
|
1847
|
+
if hasattr(self, "dup_check_per_batch")
|
|
1848
|
+
else None
|
|
1849
|
+
)
|
|
1850
|
+
_agent_code=(
|
|
1851
|
+
self.agent_code
|
|
1852
|
+
if hasattr(self, "agent_code")
|
|
1853
|
+
else None
|
|
1854
|
+
)
|
|
1855
|
+
_paylink_allow=(
|
|
1856
|
+
self.paylink_allow
|
|
1857
|
+
if hasattr(self, "paylink_allow")
|
|
1858
|
+
else None
|
|
1859
|
+
)
|
|
1860
|
+
_quick_invoice_allow=(
|
|
1861
|
+
self.quick_invoice_allow
|
|
1862
|
+
if hasattr(self, "quick_invoice_allow")
|
|
1863
|
+
else None
|
|
1864
|
+
)
|
|
1865
|
+
_level_3_allow=(
|
|
1866
|
+
self.level_3_allow
|
|
1867
|
+
if hasattr(self, "level_3_allow")
|
|
1868
|
+
else None
|
|
1869
|
+
)
|
|
1870
|
+
_payfac_enable=(
|
|
1871
|
+
self.payfac_enable
|
|
1872
|
+
if hasattr(self, "payfac_enable")
|
|
1873
|
+
else None
|
|
1874
|
+
)
|
|
1875
|
+
_enable_3_ds=(
|
|
1876
|
+
self.enable_3_ds
|
|
1877
|
+
if hasattr(self, "enable_3_ds")
|
|
1878
|
+
else None
|
|
1879
|
+
)
|
|
1880
|
+
_sales_office_id=(
|
|
1881
|
+
self.sales_office_id
|
|
1882
|
+
if hasattr(self, "sales_office_id")
|
|
1883
|
+
else None
|
|
1884
|
+
)
|
|
1885
|
+
_hosted_payment_page_max_allowed=(
|
|
1886
|
+
self.hosted_payment_page_max_allowed
|
|
1887
|
+
if hasattr(self, "hosted_payment_page_max_allowed")
|
|
1888
|
+
else None
|
|
1889
|
+
)
|
|
1890
|
+
_hosted_payment_page_allow=(
|
|
1891
|
+
self.hosted_payment_page_allow
|
|
1892
|
+
if hasattr(self, "hosted_payment_page_allow")
|
|
1893
|
+
else None
|
|
1894
|
+
)
|
|
1895
|
+
_surcharge_id=(
|
|
1896
|
+
self.surcharge_id
|
|
1897
|
+
if hasattr(self, "surcharge_id")
|
|
1898
|
+
else None
|
|
1899
|
+
)
|
|
1900
|
+
_allow_big_commerce=(
|
|
1901
|
+
self.allow_big_commerce
|
|
1902
|
+
if hasattr(self, "allow_big_commerce")
|
|
1903
|
+
else None
|
|
1904
|
+
)
|
|
1905
|
+
_allow_shopify=(
|
|
1906
|
+
self.allow_shopify
|
|
1907
|
+
if hasattr(self, "allow_shopify")
|
|
1908
|
+
else None
|
|
1909
|
+
)
|
|
1910
|
+
_level_3_default=(
|
|
1911
|
+
self.level_3_default
|
|
1912
|
+
if hasattr(self, "level_3_default")
|
|
1913
|
+
else None
|
|
1914
|
+
)
|
|
1915
|
+
_cau_subscribe_type_id=(
|
|
1916
|
+
self.cau_subscribe_type_id
|
|
1917
|
+
if hasattr(self, "cau_subscribe_type_id")
|
|
1918
|
+
else None
|
|
1919
|
+
)
|
|
1920
|
+
_cau_account_number=(
|
|
1921
|
+
self.cau_account_number
|
|
1922
|
+
if hasattr(self, "cau_account_number")
|
|
1923
|
+
else None
|
|
1924
|
+
)
|
|
1925
|
+
_location_billing_account_id=(
|
|
1926
|
+
self.location_billing_account_id
|
|
1927
|
+
if hasattr(self, "location_billing_account_id")
|
|
1928
|
+
else None
|
|
1929
|
+
)
|
|
1930
|
+
_product_billing_group_id=(
|
|
1931
|
+
self.product_billing_group_id
|
|
1932
|
+
if hasattr(self, "product_billing_group_id")
|
|
1933
|
+
else None
|
|
1934
|
+
)
|
|
1935
|
+
_account_number=(
|
|
1936
|
+
self.account_number
|
|
1937
|
+
if hasattr(self, "account_number")
|
|
1938
|
+
else None
|
|
1939
|
+
)
|
|
1940
|
+
_run_avs_on_accountvault_create=(
|
|
1941
|
+
self.run_avs_on_accountvault_create
|
|
1942
|
+
if hasattr(self, "run_avs_on_accountvault_create")
|
|
1943
|
+
else None
|
|
1944
|
+
)
|
|
1945
|
+
_accountvault_expire_notification_email_enable=(
|
|
1946
|
+
self.accountvault_expire_notification_email_enable
|
|
1947
|
+
if hasattr(self, "accountvault_expire_notification_email_enable")
|
|
1948
|
+
else None
|
|
1949
|
+
)
|
|
1950
|
+
_debit_allow_void=(
|
|
1951
|
+
self.debit_allow_void
|
|
1952
|
+
if hasattr(self, "debit_allow_void")
|
|
1953
|
+
else None
|
|
1954
|
+
)
|
|
1955
|
+
_quick_invoice_text_to_pay=(
|
|
1956
|
+
self.quick_invoice_text_to_pay
|
|
1957
|
+
if hasattr(self, "quick_invoice_text_to_pay")
|
|
1958
|
+
else None
|
|
1959
|
+
)
|
|
1960
|
+
_authentication_code=(
|
|
1961
|
+
self.authentication_code
|
|
1962
|
+
if hasattr(self, "authentication_code")
|
|
1963
|
+
else None
|
|
1964
|
+
)
|
|
1965
|
+
_sms_enable=(
|
|
1966
|
+
self.sms_enable
|
|
1967
|
+
if hasattr(self, "sms_enable")
|
|
1968
|
+
else None
|
|
1969
|
+
)
|
|
1970
|
+
_vt_show_currency=(
|
|
1971
|
+
self.vt_show_currency
|
|
1972
|
+
if hasattr(self, "vt_show_currency")
|
|
1973
|
+
else None
|
|
1974
|
+
)
|
|
1975
|
+
_receipt_show_currency=(
|
|
1976
|
+
self.receipt_show_currency
|
|
1977
|
+
if hasattr(self, "receipt_show_currency")
|
|
1978
|
+
else None
|
|
1979
|
+
)
|
|
1980
|
+
_allow_blind_refund=(
|
|
1981
|
+
self.allow_blind_refund
|
|
1982
|
+
if hasattr(self, "allow_blind_refund")
|
|
1983
|
+
else None
|
|
1984
|
+
)
|
|
1985
|
+
_vt_show_company_name=(
|
|
1986
|
+
self.vt_show_company_name
|
|
1987
|
+
if hasattr(self, "vt_show_company_name")
|
|
1988
|
+
else None
|
|
1989
|
+
)
|
|
1990
|
+
_receipt_show_company_name=(
|
|
1991
|
+
self.receipt_show_company_name
|
|
1992
|
+
if hasattr(self, "receipt_show_company_name")
|
|
1993
|
+
else None
|
|
1994
|
+
)
|
|
1995
|
+
_bank_funded_only=(
|
|
1996
|
+
self.bank_funded_only
|
|
1997
|
+
if hasattr(self, "bank_funded_only")
|
|
1998
|
+
else None
|
|
1999
|
+
)
|
|
2000
|
+
_require_cvv_on_keyed_cnp=(
|
|
2001
|
+
self.require_cvv_on_keyed_cnp
|
|
2002
|
+
if hasattr(self, "require_cvv_on_keyed_cnp")
|
|
2003
|
+
else None
|
|
2004
|
+
)
|
|
2005
|
+
_require_cvv_on_tokenized_cnp=(
|
|
2006
|
+
self.require_cvv_on_tokenized_cnp
|
|
2007
|
+
if hasattr(self, "require_cvv_on_tokenized_cnp")
|
|
2008
|
+
else None
|
|
2009
|
+
)
|
|
2010
|
+
_show_secondary_amount=(
|
|
2011
|
+
self.show_secondary_amount
|
|
2012
|
+
if hasattr(self, "show_secondary_amount")
|
|
2013
|
+
else None
|
|
2014
|
+
)
|
|
2015
|
+
_allow_secondary_amount=(
|
|
2016
|
+
self.allow_secondary_amount
|
|
2017
|
+
if hasattr(self, "allow_secondary_amount")
|
|
2018
|
+
else None
|
|
2019
|
+
)
|
|
2020
|
+
_show_google_pay=(
|
|
2021
|
+
self.show_google_pay
|
|
2022
|
+
if hasattr(self, "show_google_pay")
|
|
2023
|
+
else None
|
|
2024
|
+
)
|
|
2025
|
+
_show_apple_pay=(
|
|
2026
|
+
self.show_apple_pay
|
|
2027
|
+
if hasattr(self, "show_apple_pay")
|
|
2028
|
+
else None
|
|
2029
|
+
)
|
|
2030
|
+
_batch_risk_config=(
|
|
2031
|
+
self.batch_risk_config
|
|
2032
|
+
if hasattr(self, "batch_risk_config")
|
|
2033
|
+
else None
|
|
2034
|
+
)
|
|
2035
|
+
_currency_code=(
|
|
2036
|
+
self.currency_code
|
|
2037
|
+
if hasattr(self, "currency_code")
|
|
2038
|
+
else None
|
|
2039
|
+
)
|
|
2040
|
+
_enable_ach_validation=(
|
|
2041
|
+
self.enable_ach_validation
|
|
2042
|
+
if hasattr(self, "enable_ach_validation")
|
|
2043
|
+
else None
|
|
2044
|
+
)
|
|
2045
|
+
_enable_ach_retry=(
|
|
2046
|
+
self.enable_ach_retry
|
|
2047
|
+
if hasattr(self, "enable_ach_retry")
|
|
2048
|
+
else None
|
|
2049
|
+
)
|
|
2050
|
+
_allow_softpos=(
|
|
2051
|
+
self.allow_softpos
|
|
2052
|
+
if hasattr(self, "allow_softpos")
|
|
2053
|
+
else None
|
|
2054
|
+
)
|
|
2055
|
+
_allow_multi_currency=(
|
|
2056
|
+
self.allow_multi_currency
|
|
2057
|
+
if hasattr(self, "allow_multi_currency")
|
|
2058
|
+
else None
|
|
2059
|
+
)
|
|
2060
|
+
_allow_unapplied_payments=(
|
|
2061
|
+
self.allow_unapplied_payments
|
|
2062
|
+
if hasattr(self, "allow_unapplied_payments")
|
|
2063
|
+
else None
|
|
2064
|
+
)
|
|
2065
|
+
_id=(
|
|
2066
|
+
self.id
|
|
2067
|
+
if hasattr(self, "id")
|
|
2068
|
+
else None
|
|
2069
|
+
)
|
|
2070
|
+
_receipt_logo=(
|
|
2071
|
+
self.receipt_logo
|
|
2072
|
+
if hasattr(self, "receipt_logo")
|
|
2073
|
+
else None
|
|
2074
|
+
)
|
|
2075
|
+
_active=(
|
|
2076
|
+
self.active
|
|
2077
|
+
if hasattr(self, "active")
|
|
2078
|
+
else None
|
|
2079
|
+
)
|
|
2080
|
+
_tz=(
|
|
2081
|
+
self.tz
|
|
2082
|
+
if hasattr(self, "tz")
|
|
2083
|
+
else None
|
|
2084
|
+
)
|
|
2085
|
+
_current_stan=(
|
|
2086
|
+
self.current_stan
|
|
2087
|
+
if hasattr(self, "current_stan")
|
|
2088
|
+
else None
|
|
2089
|
+
)
|
|
2090
|
+
_created_ts=(
|
|
2091
|
+
self.created_ts
|
|
2092
|
+
if hasattr(self, "created_ts")
|
|
2093
|
+
else None
|
|
2094
|
+
)
|
|
2095
|
+
_modified_ts=(
|
|
2096
|
+
self.modified_ts
|
|
2097
|
+
if hasattr(self, "modified_ts")
|
|
2098
|
+
else None
|
|
2099
|
+
)
|
|
2100
|
+
_created_user_id=(
|
|
2101
|
+
self.created_user_id
|
|
2102
|
+
if hasattr(self, "created_user_id")
|
|
2103
|
+
else None
|
|
2104
|
+
)
|
|
2105
|
+
_modified_user_id=(
|
|
2106
|
+
self.modified_user_id
|
|
2107
|
+
if hasattr(self, "modified_user_id")
|
|
2108
|
+
else None
|
|
2109
|
+
)
|
|
2110
|
+
_product_transaction_api_id=(
|
|
2111
|
+
self.product_transaction_api_id
|
|
2112
|
+
if hasattr(self, "product_transaction_api_id")
|
|
2113
|
+
else None
|
|
2114
|
+
)
|
|
2115
|
+
_transaction_amount_notification_threshold=(
|
|
2116
|
+
self.transaction_amount_notification_threshold
|
|
2117
|
+
if hasattr(self, "transaction_amount_notification_threshold")
|
|
2118
|
+
else None
|
|
2119
|
+
)
|
|
2120
|
+
_is_secondary_amount_allowed=(
|
|
2121
|
+
self.is_secondary_amount_allowed
|
|
2122
|
+
if hasattr(self, "is_secondary_amount_allowed")
|
|
2123
|
+
else None
|
|
2124
|
+
)
|
|
2125
|
+
_fortis_id=(
|
|
2126
|
+
self.fortis_id
|
|
2127
|
+
if hasattr(self, "fortis_id")
|
|
2128
|
+
else None
|
|
2129
|
+
)
|
|
2130
|
+
_product_billing_group_code=(
|
|
2131
|
+
self.product_billing_group_code
|
|
2132
|
+
if hasattr(self, "product_billing_group_code")
|
|
2133
|
+
else None
|
|
2134
|
+
)
|
|
2135
|
+
_cau_subscribe_type_code=(
|
|
2136
|
+
self.cau_subscribe_type_code
|
|
2137
|
+
if hasattr(self, "cau_subscribe_type_code")
|
|
2138
|
+
else None
|
|
2139
|
+
)
|
|
2140
|
+
_merchant_code=(
|
|
2141
|
+
self.merchant_code
|
|
2142
|
+
if hasattr(self, "merchant_code")
|
|
2143
|
+
else None
|
|
2144
|
+
)
|
|
2145
|
+
_currency=(
|
|
2146
|
+
self.currency
|
|
2147
|
+
if hasattr(self, "currency")
|
|
2148
|
+
else None
|
|
2149
|
+
)
|
|
2150
|
+
_additional_properties=self.additional_properties
|
|
2151
|
+
return (
|
|
2152
|
+
f"{self.__class__.__name__}("
|
|
2153
|
+
f"processor_version={_processor_version!r}, "
|
|
2154
|
+
f"industry_type={_industry_type!r}, "
|
|
2155
|
+
f"title={_title!r}, "
|
|
2156
|
+
f"payment_method={_payment_method!r}, "
|
|
2157
|
+
f"processor={_processor!r}, "
|
|
2158
|
+
f"mcc={_mcc!r}, "
|
|
2159
|
+
f"tax_surcharge_config={_tax_surcharge_config!r}, "
|
|
2160
|
+
f"terminal_id={_terminal_id!r}, "
|
|
2161
|
+
f"partner={_partner!r}, "
|
|
2162
|
+
f"product_ach_pv_store_id={_product_ach_pv_store_id!r}, "
|
|
2163
|
+
f"invoice_adjustment_title={_invoice_adjustment_title!r}, "
|
|
2164
|
+
f"location_id={_location_id!r}, "
|
|
2165
|
+
f"location_api_id={_location_api_id!r}, "
|
|
2166
|
+
f"billing_location_api_id={_billing_location_api_id!r}, "
|
|
2167
|
+
f"portfolio_id={_portfolio_id!r}, "
|
|
2168
|
+
f"portfolio_validation_rule={_portfolio_validation_rule!r}, "
|
|
2169
|
+
f"sub_processor={_sub_processor!r}, "
|
|
2170
|
+
f"surcharge={_surcharge!r}, "
|
|
2171
|
+
f"processor_data={_processor_data!r}, "
|
|
2172
|
+
f"vt_clerk_number={_vt_clerk_number!r}, "
|
|
2173
|
+
f"vt_billing_phone={_vt_billing_phone!r}, "
|
|
2174
|
+
f"vt_enable_tip={_vt_enable_tip!r}, "
|
|
2175
|
+
f"ach_allow_debit={_ach_allow_debit!r}, "
|
|
2176
|
+
f"ach_allow_credit={_ach_allow_credit!r}, "
|
|
2177
|
+
f"ach_allow_refund={_ach_allow_refund!r}, "
|
|
2178
|
+
f"vt_cvv={_vt_cvv!r}, "
|
|
2179
|
+
f"vt_street={_vt_street!r}, "
|
|
2180
|
+
f"vt_zip={_vt_zip!r}, "
|
|
2181
|
+
f"vt_order_num={_vt_order_num!r}, "
|
|
2182
|
+
f"vt_enable={_vt_enable!r}, "
|
|
2183
|
+
f"receipt_show_contact_name={_receipt_show_contact_name!r}, "
|
|
2184
|
+
f"display_avs={_display_avs!r}, "
|
|
2185
|
+
f"card_type_visa={_card_type_visa!r}, "
|
|
2186
|
+
f"card_type_mc={_card_type_mc!r}, "
|
|
2187
|
+
f"card_type_disc={_card_type_disc!r}, "
|
|
2188
|
+
f"card_type_amex={_card_type_amex!r}, "
|
|
2189
|
+
f"card_type_diners={_card_type_diners!r}, "
|
|
2190
|
+
f"card_type_jcb={_card_type_jcb!r}, "
|
|
2191
|
+
f"card_type_ebt={_card_type_ebt!r}, "
|
|
2192
|
+
f"allow_ebt_cash_benefit={_allow_ebt_cash_benefit!r}, "
|
|
2193
|
+
f"allow_ebt_food_stamp={_allow_ebt_food_stamp!r}, "
|
|
2194
|
+
f"invoice_location={_invoice_location!r}, "
|
|
2195
|
+
f"allow_partial_authorization={_allow_partial_authorization!r}, "
|
|
2196
|
+
f"allow_recurring_partial_authorization={_allow_recurring_partial_authorization!r}, "
|
|
2197
|
+
f"auto_decline_cvv={_auto_decline_cvv!r}, "
|
|
2198
|
+
f"auto_decline_street={_auto_decline_street!r}, "
|
|
2199
|
+
f"auto_decline_zip={_auto_decline_zip!r}, "
|
|
2200
|
+
f"split_payments_allow={_split_payments_allow!r}, "
|
|
2201
|
+
f"vt_show_custom_fields={_vt_show_custom_fields!r}, "
|
|
2202
|
+
f"receipt_show_custom_fields={_receipt_show_custom_fields!r}, "
|
|
2203
|
+
f"vt_override_sales_tax_allowed={_vt_override_sales_tax_allowed!r}, "
|
|
2204
|
+
f"vt_enable_sales_tax={_vt_enable_sales_tax!r}, "
|
|
2205
|
+
f"vt_require_zip={_vt_require_zip!r}, "
|
|
2206
|
+
f"vt_require_street={_vt_require_street!r}, "
|
|
2207
|
+
f"auto_decline_cavv={_auto_decline_cavv!r}, "
|
|
2208
|
+
f"merchant_id={_merchant_id!r}, "
|
|
2209
|
+
f"receipt_header={_receipt_header!r}, "
|
|
2210
|
+
f"receipt_footer={_receipt_footer!r}, "
|
|
2211
|
+
f"receipt_add_account_above_signature={_receipt_add_account_above_signature!r}, "
|
|
2212
|
+
f"receipt_add_recurring_above_signature={_receipt_add_recurring_above_signature!r}, "
|
|
2213
|
+
f"receipt_vt_above_signature={_receipt_vt_above_signature!r}, "
|
|
2214
|
+
f"default_transaction_type={_default_transaction_type!r}, "
|
|
2215
|
+
f"username={_username!r}, "
|
|
2216
|
+
f"password={_password!r}, "
|
|
2217
|
+
f"current_batch={_current_batch!r}, "
|
|
2218
|
+
f"dup_check_per_batch={_dup_check_per_batch!r}, "
|
|
2219
|
+
f"agent_code={_agent_code!r}, "
|
|
2220
|
+
f"paylink_allow={_paylink_allow!r}, "
|
|
2221
|
+
f"quick_invoice_allow={_quick_invoice_allow!r}, "
|
|
2222
|
+
f"level_3_allow={_level_3_allow!r}, "
|
|
2223
|
+
f"payfac_enable={_payfac_enable!r}, "
|
|
2224
|
+
f"enable_3_ds={_enable_3_ds!r}, "
|
|
2225
|
+
f"sales_office_id={_sales_office_id!r}, "
|
|
2226
|
+
f"hosted_payment_page_max_allowed={_hosted_payment_page_max_allowed!r}, "
|
|
2227
|
+
f"hosted_payment_page_allow={_hosted_payment_page_allow!r}, "
|
|
2228
|
+
f"surcharge_id={_surcharge_id!r}, "
|
|
2229
|
+
f"allow_big_commerce={_allow_big_commerce!r}, "
|
|
2230
|
+
f"allow_shopify={_allow_shopify!r}, "
|
|
2231
|
+
f"level_3_default={_level_3_default!r}, "
|
|
2232
|
+
f"cau_subscribe_type_id={_cau_subscribe_type_id!r}, "
|
|
2233
|
+
f"cau_account_number={_cau_account_number!r}, "
|
|
2234
|
+
f"location_billing_account_id={_location_billing_account_id!r}, "
|
|
2235
|
+
f"product_billing_group_id={_product_billing_group_id!r}, "
|
|
2236
|
+
f"account_number={_account_number!r}, "
|
|
2237
|
+
f"run_avs_on_accountvault_create={_run_avs_on_accountvault_create!r}, "
|
|
2238
|
+
f"accountvault_expire_notification_email_enable={_accountvault_expire_notification_email_enable!r}, "
|
|
2239
|
+
f"debit_allow_void={_debit_allow_void!r}, "
|
|
2240
|
+
f"quick_invoice_text_to_pay={_quick_invoice_text_to_pay!r}, "
|
|
2241
|
+
f"authentication_code={_authentication_code!r}, "
|
|
2242
|
+
f"sms_enable={_sms_enable!r}, "
|
|
2243
|
+
f"vt_show_currency={_vt_show_currency!r}, "
|
|
2244
|
+
f"receipt_show_currency={_receipt_show_currency!r}, "
|
|
2245
|
+
f"allow_blind_refund={_allow_blind_refund!r}, "
|
|
2246
|
+
f"vt_show_company_name={_vt_show_company_name!r}, "
|
|
2247
|
+
f"receipt_show_company_name={_receipt_show_company_name!r}, "
|
|
2248
|
+
f"bank_funded_only={_bank_funded_only!r}, "
|
|
2249
|
+
f"require_cvv_on_keyed_cnp={_require_cvv_on_keyed_cnp!r}, "
|
|
2250
|
+
f"require_cvv_on_tokenized_cnp={_require_cvv_on_tokenized_cnp!r}, "
|
|
2251
|
+
f"show_secondary_amount={_show_secondary_amount!r}, "
|
|
2252
|
+
f"allow_secondary_amount={_allow_secondary_amount!r}, "
|
|
2253
|
+
f"show_google_pay={_show_google_pay!r}, "
|
|
2254
|
+
f"show_apple_pay={_show_apple_pay!r}, "
|
|
2255
|
+
f"batch_risk_config={_batch_risk_config!r}, "
|
|
2256
|
+
f"currency_code={_currency_code!r}, "
|
|
2257
|
+
f"enable_ach_validation={_enable_ach_validation!r}, "
|
|
2258
|
+
f"enable_ach_retry={_enable_ach_retry!r}, "
|
|
2259
|
+
f"allow_softpos={_allow_softpos!r}, "
|
|
2260
|
+
f"allow_multi_currency={_allow_multi_currency!r}, "
|
|
2261
|
+
f"allow_unapplied_payments={_allow_unapplied_payments!r}, "
|
|
2262
|
+
f"id={_id!r}, "
|
|
2263
|
+
f"receipt_logo={_receipt_logo!r}, "
|
|
2264
|
+
f"active={_active!r}, "
|
|
2265
|
+
f"tz={_tz!r}, "
|
|
2266
|
+
f"current_stan={_current_stan!r}, "
|
|
2267
|
+
f"created_ts={_created_ts!r}, "
|
|
2268
|
+
f"modified_ts={_modified_ts!r}, "
|
|
2269
|
+
f"created_user_id={_created_user_id!r}, "
|
|
2270
|
+
f"modified_user_id={_modified_user_id!r}, "
|
|
2271
|
+
f"product_transaction_api_id={_product_transaction_api_id!r}, "
|
|
2272
|
+
f"transaction_amount_notification_threshold={_transaction_amount_notification_threshold!r}, "
|
|
2273
|
+
f"is_secondary_amount_allowed={_is_secondary_amount_allowed!r}, "
|
|
2274
|
+
f"fortis_id={_fortis_id!r}, "
|
|
2275
|
+
f"product_billing_group_code={_product_billing_group_code!r}, "
|
|
2276
|
+
f"cau_subscribe_type_code={_cau_subscribe_type_code!r}, "
|
|
2277
|
+
f"merchant_code={_merchant_code!r}, "
|
|
2278
|
+
f"currency={_currency!r}, "
|
|
2279
|
+
f"additional_properties={_additional_properties!r}, "
|
|
2280
|
+
f")"
|
|
2281
|
+
)
|
|
2282
|
+
|
|
2283
|
+
def __str__(self):
|
|
2284
|
+
"""Return a human-readable string representation."""
|
|
2285
|
+
_processor_version=(
|
|
2286
|
+
self.processor_version
|
|
2287
|
+
if hasattr(self, "processor_version")
|
|
2288
|
+
else None
|
|
2289
|
+
)
|
|
2290
|
+
_industry_type=(
|
|
2291
|
+
self.industry_type
|
|
2292
|
+
if hasattr(self, "industry_type")
|
|
2293
|
+
else None
|
|
2294
|
+
)
|
|
2295
|
+
_title=(
|
|
2296
|
+
self.title
|
|
2297
|
+
if hasattr(self, "title")
|
|
2298
|
+
else None
|
|
2299
|
+
)
|
|
2300
|
+
_payment_method=(
|
|
2301
|
+
self.payment_method
|
|
2302
|
+
if hasattr(self, "payment_method")
|
|
2303
|
+
else None
|
|
2304
|
+
)
|
|
2305
|
+
_processor=(
|
|
2306
|
+
self.processor
|
|
2307
|
+
if hasattr(self, "processor")
|
|
2308
|
+
else None
|
|
2309
|
+
)
|
|
2310
|
+
_mcc=(
|
|
2311
|
+
self.mcc
|
|
2312
|
+
if hasattr(self, "mcc")
|
|
2313
|
+
else None
|
|
2314
|
+
)
|
|
2315
|
+
_tax_surcharge_config=(
|
|
2316
|
+
self.tax_surcharge_config
|
|
2317
|
+
if hasattr(self, "tax_surcharge_config")
|
|
2318
|
+
else None
|
|
2319
|
+
)
|
|
2320
|
+
_terminal_id=(
|
|
2321
|
+
self.terminal_id
|
|
2322
|
+
if hasattr(self, "terminal_id")
|
|
2323
|
+
else None
|
|
2324
|
+
)
|
|
2325
|
+
_partner=(
|
|
2326
|
+
self.partner
|
|
2327
|
+
if hasattr(self, "partner")
|
|
2328
|
+
else None
|
|
2329
|
+
)
|
|
2330
|
+
_product_ach_pv_store_id=(
|
|
2331
|
+
self.product_ach_pv_store_id
|
|
2332
|
+
if hasattr(self, "product_ach_pv_store_id")
|
|
2333
|
+
else None
|
|
2334
|
+
)
|
|
2335
|
+
_invoice_adjustment_title=(
|
|
2336
|
+
self.invoice_adjustment_title
|
|
2337
|
+
if hasattr(self, "invoice_adjustment_title")
|
|
2338
|
+
else None
|
|
2339
|
+
)
|
|
2340
|
+
_location_id=(
|
|
2341
|
+
self.location_id
|
|
2342
|
+
if hasattr(self, "location_id")
|
|
2343
|
+
else None
|
|
2344
|
+
)
|
|
2345
|
+
_location_api_id=(
|
|
2346
|
+
self.location_api_id
|
|
2347
|
+
if hasattr(self, "location_api_id")
|
|
2348
|
+
else None
|
|
2349
|
+
)
|
|
2350
|
+
_billing_location_api_id=(
|
|
2351
|
+
self.billing_location_api_id
|
|
2352
|
+
if hasattr(self, "billing_location_api_id")
|
|
2353
|
+
else None
|
|
2354
|
+
)
|
|
2355
|
+
_portfolio_id=(
|
|
2356
|
+
self.portfolio_id
|
|
2357
|
+
if hasattr(self, "portfolio_id")
|
|
2358
|
+
else None
|
|
2359
|
+
)
|
|
2360
|
+
_portfolio_validation_rule=(
|
|
2361
|
+
self.portfolio_validation_rule
|
|
2362
|
+
if hasattr(self, "portfolio_validation_rule")
|
|
2363
|
+
else None
|
|
2364
|
+
)
|
|
2365
|
+
_sub_processor=(
|
|
2366
|
+
self.sub_processor
|
|
2367
|
+
if hasattr(self, "sub_processor")
|
|
2368
|
+
else None
|
|
2369
|
+
)
|
|
2370
|
+
_surcharge=(
|
|
2371
|
+
self.surcharge
|
|
2372
|
+
if hasattr(self, "surcharge")
|
|
2373
|
+
else None
|
|
2374
|
+
)
|
|
2375
|
+
_processor_data=(
|
|
2376
|
+
self.processor_data
|
|
2377
|
+
if hasattr(self, "processor_data")
|
|
2378
|
+
else None
|
|
2379
|
+
)
|
|
2380
|
+
_vt_clerk_number=(
|
|
2381
|
+
self.vt_clerk_number
|
|
2382
|
+
if hasattr(self, "vt_clerk_number")
|
|
2383
|
+
else None
|
|
2384
|
+
)
|
|
2385
|
+
_vt_billing_phone=(
|
|
2386
|
+
self.vt_billing_phone
|
|
2387
|
+
if hasattr(self, "vt_billing_phone")
|
|
2388
|
+
else None
|
|
2389
|
+
)
|
|
2390
|
+
_vt_enable_tip=(
|
|
2391
|
+
self.vt_enable_tip
|
|
2392
|
+
if hasattr(self, "vt_enable_tip")
|
|
2393
|
+
else None
|
|
2394
|
+
)
|
|
2395
|
+
_ach_allow_debit=(
|
|
2396
|
+
self.ach_allow_debit
|
|
2397
|
+
if hasattr(self, "ach_allow_debit")
|
|
2398
|
+
else None
|
|
2399
|
+
)
|
|
2400
|
+
_ach_allow_credit=(
|
|
2401
|
+
self.ach_allow_credit
|
|
2402
|
+
if hasattr(self, "ach_allow_credit")
|
|
2403
|
+
else None
|
|
2404
|
+
)
|
|
2405
|
+
_ach_allow_refund=(
|
|
2406
|
+
self.ach_allow_refund
|
|
2407
|
+
if hasattr(self, "ach_allow_refund")
|
|
2408
|
+
else None
|
|
2409
|
+
)
|
|
2410
|
+
_vt_cvv=(
|
|
2411
|
+
self.vt_cvv
|
|
2412
|
+
if hasattr(self, "vt_cvv")
|
|
2413
|
+
else None
|
|
2414
|
+
)
|
|
2415
|
+
_vt_street=(
|
|
2416
|
+
self.vt_street
|
|
2417
|
+
if hasattr(self, "vt_street")
|
|
2418
|
+
else None
|
|
2419
|
+
)
|
|
2420
|
+
_vt_zip=(
|
|
2421
|
+
self.vt_zip
|
|
2422
|
+
if hasattr(self, "vt_zip")
|
|
2423
|
+
else None
|
|
2424
|
+
)
|
|
2425
|
+
_vt_order_num=(
|
|
2426
|
+
self.vt_order_num
|
|
2427
|
+
if hasattr(self, "vt_order_num")
|
|
2428
|
+
else None
|
|
2429
|
+
)
|
|
2430
|
+
_vt_enable=(
|
|
2431
|
+
self.vt_enable
|
|
2432
|
+
if hasattr(self, "vt_enable")
|
|
2433
|
+
else None
|
|
2434
|
+
)
|
|
2435
|
+
_receipt_show_contact_name=(
|
|
2436
|
+
self.receipt_show_contact_name
|
|
2437
|
+
if hasattr(self, "receipt_show_contact_name")
|
|
2438
|
+
else None
|
|
2439
|
+
)
|
|
2440
|
+
_display_avs=(
|
|
2441
|
+
self.display_avs
|
|
2442
|
+
if hasattr(self, "display_avs")
|
|
2443
|
+
else None
|
|
2444
|
+
)
|
|
2445
|
+
_card_type_visa=(
|
|
2446
|
+
self.card_type_visa
|
|
2447
|
+
if hasattr(self, "card_type_visa")
|
|
2448
|
+
else None
|
|
2449
|
+
)
|
|
2450
|
+
_card_type_mc=(
|
|
2451
|
+
self.card_type_mc
|
|
2452
|
+
if hasattr(self, "card_type_mc")
|
|
2453
|
+
else None
|
|
2454
|
+
)
|
|
2455
|
+
_card_type_disc=(
|
|
2456
|
+
self.card_type_disc
|
|
2457
|
+
if hasattr(self, "card_type_disc")
|
|
2458
|
+
else None
|
|
2459
|
+
)
|
|
2460
|
+
_card_type_amex=(
|
|
2461
|
+
self.card_type_amex
|
|
2462
|
+
if hasattr(self, "card_type_amex")
|
|
2463
|
+
else None
|
|
2464
|
+
)
|
|
2465
|
+
_card_type_diners=(
|
|
2466
|
+
self.card_type_diners
|
|
2467
|
+
if hasattr(self, "card_type_diners")
|
|
2468
|
+
else None
|
|
2469
|
+
)
|
|
2470
|
+
_card_type_jcb=(
|
|
2471
|
+
self.card_type_jcb
|
|
2472
|
+
if hasattr(self, "card_type_jcb")
|
|
2473
|
+
else None
|
|
2474
|
+
)
|
|
2475
|
+
_card_type_ebt=(
|
|
2476
|
+
self.card_type_ebt
|
|
2477
|
+
if hasattr(self, "card_type_ebt")
|
|
2478
|
+
else None
|
|
2479
|
+
)
|
|
2480
|
+
_allow_ebt_cash_benefit=(
|
|
2481
|
+
self.allow_ebt_cash_benefit
|
|
2482
|
+
if hasattr(self, "allow_ebt_cash_benefit")
|
|
2483
|
+
else None
|
|
2484
|
+
)
|
|
2485
|
+
_allow_ebt_food_stamp=(
|
|
2486
|
+
self.allow_ebt_food_stamp
|
|
2487
|
+
if hasattr(self, "allow_ebt_food_stamp")
|
|
2488
|
+
else None
|
|
2489
|
+
)
|
|
2490
|
+
_invoice_location=(
|
|
2491
|
+
self.invoice_location
|
|
2492
|
+
if hasattr(self, "invoice_location")
|
|
2493
|
+
else None
|
|
2494
|
+
)
|
|
2495
|
+
_allow_partial_authorization=(
|
|
2496
|
+
self.allow_partial_authorization
|
|
2497
|
+
if hasattr(self, "allow_partial_authorization")
|
|
2498
|
+
else None
|
|
2499
|
+
)
|
|
2500
|
+
_allow_recurring_partial_authorization=(
|
|
2501
|
+
self.allow_recurring_partial_authorization
|
|
2502
|
+
if hasattr(self, "allow_recurring_partial_authorization")
|
|
2503
|
+
else None
|
|
2504
|
+
)
|
|
2505
|
+
_auto_decline_cvv=(
|
|
2506
|
+
self.auto_decline_cvv
|
|
2507
|
+
if hasattr(self, "auto_decline_cvv")
|
|
2508
|
+
else None
|
|
2509
|
+
)
|
|
2510
|
+
_auto_decline_street=(
|
|
2511
|
+
self.auto_decline_street
|
|
2512
|
+
if hasattr(self, "auto_decline_street")
|
|
2513
|
+
else None
|
|
2514
|
+
)
|
|
2515
|
+
_auto_decline_zip=(
|
|
2516
|
+
self.auto_decline_zip
|
|
2517
|
+
if hasattr(self, "auto_decline_zip")
|
|
2518
|
+
else None
|
|
2519
|
+
)
|
|
2520
|
+
_split_payments_allow=(
|
|
2521
|
+
self.split_payments_allow
|
|
2522
|
+
if hasattr(self, "split_payments_allow")
|
|
2523
|
+
else None
|
|
2524
|
+
)
|
|
2525
|
+
_vt_show_custom_fields=(
|
|
2526
|
+
self.vt_show_custom_fields
|
|
2527
|
+
if hasattr(self, "vt_show_custom_fields")
|
|
2528
|
+
else None
|
|
2529
|
+
)
|
|
2530
|
+
_receipt_show_custom_fields=(
|
|
2531
|
+
self.receipt_show_custom_fields
|
|
2532
|
+
if hasattr(self, "receipt_show_custom_fields")
|
|
2533
|
+
else None
|
|
2534
|
+
)
|
|
2535
|
+
_vt_override_sales_tax_allowed=(
|
|
2536
|
+
self.vt_override_sales_tax_allowed
|
|
2537
|
+
if hasattr(self, "vt_override_sales_tax_allowed")
|
|
2538
|
+
else None
|
|
2539
|
+
)
|
|
2540
|
+
_vt_enable_sales_tax=(
|
|
2541
|
+
self.vt_enable_sales_tax
|
|
2542
|
+
if hasattr(self, "vt_enable_sales_tax")
|
|
2543
|
+
else None
|
|
2544
|
+
)
|
|
2545
|
+
_vt_require_zip=(
|
|
2546
|
+
self.vt_require_zip
|
|
2547
|
+
if hasattr(self, "vt_require_zip")
|
|
2548
|
+
else None
|
|
2549
|
+
)
|
|
2550
|
+
_vt_require_street=(
|
|
2551
|
+
self.vt_require_street
|
|
2552
|
+
if hasattr(self, "vt_require_street")
|
|
2553
|
+
else None
|
|
2554
|
+
)
|
|
2555
|
+
_auto_decline_cavv=(
|
|
2556
|
+
self.auto_decline_cavv
|
|
2557
|
+
if hasattr(self, "auto_decline_cavv")
|
|
2558
|
+
else None
|
|
2559
|
+
)
|
|
2560
|
+
_merchant_id=(
|
|
2561
|
+
self.merchant_id
|
|
2562
|
+
if hasattr(self, "merchant_id")
|
|
2563
|
+
else None
|
|
2564
|
+
)
|
|
2565
|
+
_receipt_header=(
|
|
2566
|
+
self.receipt_header
|
|
2567
|
+
if hasattr(self, "receipt_header")
|
|
2568
|
+
else None
|
|
2569
|
+
)
|
|
2570
|
+
_receipt_footer=(
|
|
2571
|
+
self.receipt_footer
|
|
2572
|
+
if hasattr(self, "receipt_footer")
|
|
2573
|
+
else None
|
|
2574
|
+
)
|
|
2575
|
+
_receipt_add_account_above_signature=(
|
|
2576
|
+
self.receipt_add_account_above_signature
|
|
2577
|
+
if hasattr(self, "receipt_add_account_above_signature")
|
|
2578
|
+
else None
|
|
2579
|
+
)
|
|
2580
|
+
_receipt_add_recurring_above_signature=(
|
|
2581
|
+
self.receipt_add_recurring_above_signature
|
|
2582
|
+
if hasattr(self, "receipt_add_recurring_above_signature")
|
|
2583
|
+
else None
|
|
2584
|
+
)
|
|
2585
|
+
_receipt_vt_above_signature=(
|
|
2586
|
+
self.receipt_vt_above_signature
|
|
2587
|
+
if hasattr(self, "receipt_vt_above_signature")
|
|
2588
|
+
else None
|
|
2589
|
+
)
|
|
2590
|
+
_default_transaction_type=(
|
|
2591
|
+
self.default_transaction_type
|
|
2592
|
+
if hasattr(self, "default_transaction_type")
|
|
2593
|
+
else None
|
|
2594
|
+
)
|
|
2595
|
+
_username=(
|
|
2596
|
+
self.username
|
|
2597
|
+
if hasattr(self, "username")
|
|
2598
|
+
else None
|
|
2599
|
+
)
|
|
2600
|
+
_password=(
|
|
2601
|
+
self.password
|
|
2602
|
+
if hasattr(self, "password")
|
|
2603
|
+
else None
|
|
2604
|
+
)
|
|
2605
|
+
_current_batch=(
|
|
2606
|
+
self.current_batch
|
|
2607
|
+
if hasattr(self, "current_batch")
|
|
2608
|
+
else None
|
|
2609
|
+
)
|
|
2610
|
+
_dup_check_per_batch=(
|
|
2611
|
+
self.dup_check_per_batch
|
|
2612
|
+
if hasattr(self, "dup_check_per_batch")
|
|
2613
|
+
else None
|
|
2614
|
+
)
|
|
2615
|
+
_agent_code=(
|
|
2616
|
+
self.agent_code
|
|
2617
|
+
if hasattr(self, "agent_code")
|
|
2618
|
+
else None
|
|
2619
|
+
)
|
|
2620
|
+
_paylink_allow=(
|
|
2621
|
+
self.paylink_allow
|
|
2622
|
+
if hasattr(self, "paylink_allow")
|
|
2623
|
+
else None
|
|
2624
|
+
)
|
|
2625
|
+
_quick_invoice_allow=(
|
|
2626
|
+
self.quick_invoice_allow
|
|
2627
|
+
if hasattr(self, "quick_invoice_allow")
|
|
2628
|
+
else None
|
|
2629
|
+
)
|
|
2630
|
+
_level_3_allow=(
|
|
2631
|
+
self.level_3_allow
|
|
2632
|
+
if hasattr(self, "level_3_allow")
|
|
2633
|
+
else None
|
|
2634
|
+
)
|
|
2635
|
+
_payfac_enable=(
|
|
2636
|
+
self.payfac_enable
|
|
2637
|
+
if hasattr(self, "payfac_enable")
|
|
2638
|
+
else None
|
|
2639
|
+
)
|
|
2640
|
+
_enable_3_ds=(
|
|
2641
|
+
self.enable_3_ds
|
|
2642
|
+
if hasattr(self, "enable_3_ds")
|
|
2643
|
+
else None
|
|
2644
|
+
)
|
|
2645
|
+
_sales_office_id=(
|
|
2646
|
+
self.sales_office_id
|
|
2647
|
+
if hasattr(self, "sales_office_id")
|
|
2648
|
+
else None
|
|
2649
|
+
)
|
|
2650
|
+
_hosted_payment_page_max_allowed=(
|
|
2651
|
+
self.hosted_payment_page_max_allowed
|
|
2652
|
+
if hasattr(self, "hosted_payment_page_max_allowed")
|
|
2653
|
+
else None
|
|
2654
|
+
)
|
|
2655
|
+
_hosted_payment_page_allow=(
|
|
2656
|
+
self.hosted_payment_page_allow
|
|
2657
|
+
if hasattr(self, "hosted_payment_page_allow")
|
|
2658
|
+
else None
|
|
2659
|
+
)
|
|
2660
|
+
_surcharge_id=(
|
|
2661
|
+
self.surcharge_id
|
|
2662
|
+
if hasattr(self, "surcharge_id")
|
|
2663
|
+
else None
|
|
2664
|
+
)
|
|
2665
|
+
_allow_big_commerce=(
|
|
2666
|
+
self.allow_big_commerce
|
|
2667
|
+
if hasattr(self, "allow_big_commerce")
|
|
2668
|
+
else None
|
|
2669
|
+
)
|
|
2670
|
+
_allow_shopify=(
|
|
2671
|
+
self.allow_shopify
|
|
2672
|
+
if hasattr(self, "allow_shopify")
|
|
2673
|
+
else None
|
|
2674
|
+
)
|
|
2675
|
+
_level_3_default=(
|
|
2676
|
+
self.level_3_default
|
|
2677
|
+
if hasattr(self, "level_3_default")
|
|
2678
|
+
else None
|
|
2679
|
+
)
|
|
2680
|
+
_cau_subscribe_type_id=(
|
|
2681
|
+
self.cau_subscribe_type_id
|
|
2682
|
+
if hasattr(self, "cau_subscribe_type_id")
|
|
2683
|
+
else None
|
|
2684
|
+
)
|
|
2685
|
+
_cau_account_number=(
|
|
2686
|
+
self.cau_account_number
|
|
2687
|
+
if hasattr(self, "cau_account_number")
|
|
2688
|
+
else None
|
|
2689
|
+
)
|
|
2690
|
+
_location_billing_account_id=(
|
|
2691
|
+
self.location_billing_account_id
|
|
2692
|
+
if hasattr(self, "location_billing_account_id")
|
|
2693
|
+
else None
|
|
2694
|
+
)
|
|
2695
|
+
_product_billing_group_id=(
|
|
2696
|
+
self.product_billing_group_id
|
|
2697
|
+
if hasattr(self, "product_billing_group_id")
|
|
2698
|
+
else None
|
|
2699
|
+
)
|
|
2700
|
+
_account_number=(
|
|
2701
|
+
self.account_number
|
|
2702
|
+
if hasattr(self, "account_number")
|
|
2703
|
+
else None
|
|
2704
|
+
)
|
|
2705
|
+
_run_avs_on_accountvault_create=(
|
|
2706
|
+
self.run_avs_on_accountvault_create
|
|
2707
|
+
if hasattr(self, "run_avs_on_accountvault_create")
|
|
2708
|
+
else None
|
|
2709
|
+
)
|
|
2710
|
+
_accountvault_expire_notification_email_enable=(
|
|
2711
|
+
self.accountvault_expire_notification_email_enable
|
|
2712
|
+
if hasattr(self, "accountvault_expire_notification_email_enable")
|
|
2713
|
+
else None
|
|
2714
|
+
)
|
|
2715
|
+
_debit_allow_void=(
|
|
2716
|
+
self.debit_allow_void
|
|
2717
|
+
if hasattr(self, "debit_allow_void")
|
|
2718
|
+
else None
|
|
2719
|
+
)
|
|
2720
|
+
_quick_invoice_text_to_pay=(
|
|
2721
|
+
self.quick_invoice_text_to_pay
|
|
2722
|
+
if hasattr(self, "quick_invoice_text_to_pay")
|
|
2723
|
+
else None
|
|
2724
|
+
)
|
|
2725
|
+
_authentication_code=(
|
|
2726
|
+
self.authentication_code
|
|
2727
|
+
if hasattr(self, "authentication_code")
|
|
2728
|
+
else None
|
|
2729
|
+
)
|
|
2730
|
+
_sms_enable=(
|
|
2731
|
+
self.sms_enable
|
|
2732
|
+
if hasattr(self, "sms_enable")
|
|
2733
|
+
else None
|
|
2734
|
+
)
|
|
2735
|
+
_vt_show_currency=(
|
|
2736
|
+
self.vt_show_currency
|
|
2737
|
+
if hasattr(self, "vt_show_currency")
|
|
2738
|
+
else None
|
|
2739
|
+
)
|
|
2740
|
+
_receipt_show_currency=(
|
|
2741
|
+
self.receipt_show_currency
|
|
2742
|
+
if hasattr(self, "receipt_show_currency")
|
|
2743
|
+
else None
|
|
2744
|
+
)
|
|
2745
|
+
_allow_blind_refund=(
|
|
2746
|
+
self.allow_blind_refund
|
|
2747
|
+
if hasattr(self, "allow_blind_refund")
|
|
2748
|
+
else None
|
|
2749
|
+
)
|
|
2750
|
+
_vt_show_company_name=(
|
|
2751
|
+
self.vt_show_company_name
|
|
2752
|
+
if hasattr(self, "vt_show_company_name")
|
|
2753
|
+
else None
|
|
2754
|
+
)
|
|
2755
|
+
_receipt_show_company_name=(
|
|
2756
|
+
self.receipt_show_company_name
|
|
2757
|
+
if hasattr(self, "receipt_show_company_name")
|
|
2758
|
+
else None
|
|
2759
|
+
)
|
|
2760
|
+
_bank_funded_only=(
|
|
2761
|
+
self.bank_funded_only
|
|
2762
|
+
if hasattr(self, "bank_funded_only")
|
|
2763
|
+
else None
|
|
2764
|
+
)
|
|
2765
|
+
_require_cvv_on_keyed_cnp=(
|
|
2766
|
+
self.require_cvv_on_keyed_cnp
|
|
2767
|
+
if hasattr(self, "require_cvv_on_keyed_cnp")
|
|
2768
|
+
else None
|
|
2769
|
+
)
|
|
2770
|
+
_require_cvv_on_tokenized_cnp=(
|
|
2771
|
+
self.require_cvv_on_tokenized_cnp
|
|
2772
|
+
if hasattr(self, "require_cvv_on_tokenized_cnp")
|
|
2773
|
+
else None
|
|
2774
|
+
)
|
|
2775
|
+
_show_secondary_amount=(
|
|
2776
|
+
self.show_secondary_amount
|
|
2777
|
+
if hasattr(self, "show_secondary_amount")
|
|
2778
|
+
else None
|
|
2779
|
+
)
|
|
2780
|
+
_allow_secondary_amount=(
|
|
2781
|
+
self.allow_secondary_amount
|
|
2782
|
+
if hasattr(self, "allow_secondary_amount")
|
|
2783
|
+
else None
|
|
2784
|
+
)
|
|
2785
|
+
_show_google_pay=(
|
|
2786
|
+
self.show_google_pay
|
|
2787
|
+
if hasattr(self, "show_google_pay")
|
|
2788
|
+
else None
|
|
2789
|
+
)
|
|
2790
|
+
_show_apple_pay=(
|
|
2791
|
+
self.show_apple_pay
|
|
2792
|
+
if hasattr(self, "show_apple_pay")
|
|
2793
|
+
else None
|
|
2794
|
+
)
|
|
2795
|
+
_batch_risk_config=(
|
|
2796
|
+
self.batch_risk_config
|
|
2797
|
+
if hasattr(self, "batch_risk_config")
|
|
2798
|
+
else None
|
|
2799
|
+
)
|
|
2800
|
+
_currency_code=(
|
|
2801
|
+
self.currency_code
|
|
2802
|
+
if hasattr(self, "currency_code")
|
|
2803
|
+
else None
|
|
2804
|
+
)
|
|
2805
|
+
_enable_ach_validation=(
|
|
2806
|
+
self.enable_ach_validation
|
|
2807
|
+
if hasattr(self, "enable_ach_validation")
|
|
2808
|
+
else None
|
|
2809
|
+
)
|
|
2810
|
+
_enable_ach_retry=(
|
|
2811
|
+
self.enable_ach_retry
|
|
2812
|
+
if hasattr(self, "enable_ach_retry")
|
|
2813
|
+
else None
|
|
2814
|
+
)
|
|
2815
|
+
_allow_softpos=(
|
|
2816
|
+
self.allow_softpos
|
|
2817
|
+
if hasattr(self, "allow_softpos")
|
|
2818
|
+
else None
|
|
2819
|
+
)
|
|
2820
|
+
_allow_multi_currency=(
|
|
2821
|
+
self.allow_multi_currency
|
|
2822
|
+
if hasattr(self, "allow_multi_currency")
|
|
2823
|
+
else None
|
|
2824
|
+
)
|
|
2825
|
+
_allow_unapplied_payments=(
|
|
2826
|
+
self.allow_unapplied_payments
|
|
2827
|
+
if hasattr(self, "allow_unapplied_payments")
|
|
2828
|
+
else None
|
|
2829
|
+
)
|
|
2830
|
+
_id=(
|
|
2831
|
+
self.id
|
|
2832
|
+
if hasattr(self, "id")
|
|
2833
|
+
else None
|
|
2834
|
+
)
|
|
2835
|
+
_receipt_logo=(
|
|
2836
|
+
self.receipt_logo
|
|
2837
|
+
if hasattr(self, "receipt_logo")
|
|
2838
|
+
else None
|
|
2839
|
+
)
|
|
2840
|
+
_active=(
|
|
2841
|
+
self.active
|
|
2842
|
+
if hasattr(self, "active")
|
|
2843
|
+
else None
|
|
2844
|
+
)
|
|
2845
|
+
_tz=(
|
|
2846
|
+
self.tz
|
|
2847
|
+
if hasattr(self, "tz")
|
|
2848
|
+
else None
|
|
2849
|
+
)
|
|
2850
|
+
_current_stan=(
|
|
2851
|
+
self.current_stan
|
|
2852
|
+
if hasattr(self, "current_stan")
|
|
2853
|
+
else None
|
|
2854
|
+
)
|
|
2855
|
+
_created_ts=(
|
|
2856
|
+
self.created_ts
|
|
2857
|
+
if hasattr(self, "created_ts")
|
|
2858
|
+
else None
|
|
2859
|
+
)
|
|
2860
|
+
_modified_ts=(
|
|
2861
|
+
self.modified_ts
|
|
2862
|
+
if hasattr(self, "modified_ts")
|
|
2863
|
+
else None
|
|
2864
|
+
)
|
|
2865
|
+
_created_user_id=(
|
|
2866
|
+
self.created_user_id
|
|
2867
|
+
if hasattr(self, "created_user_id")
|
|
2868
|
+
else None
|
|
2869
|
+
)
|
|
2870
|
+
_modified_user_id=(
|
|
2871
|
+
self.modified_user_id
|
|
2872
|
+
if hasattr(self, "modified_user_id")
|
|
2873
|
+
else None
|
|
2874
|
+
)
|
|
2875
|
+
_product_transaction_api_id=(
|
|
2876
|
+
self.product_transaction_api_id
|
|
2877
|
+
if hasattr(self, "product_transaction_api_id")
|
|
2878
|
+
else None
|
|
2879
|
+
)
|
|
2880
|
+
_transaction_amount_notification_threshold=(
|
|
2881
|
+
self.transaction_amount_notification_threshold
|
|
2882
|
+
if hasattr(self, "transaction_amount_notification_threshold")
|
|
2883
|
+
else None
|
|
2884
|
+
)
|
|
2885
|
+
_is_secondary_amount_allowed=(
|
|
2886
|
+
self.is_secondary_amount_allowed
|
|
2887
|
+
if hasattr(self, "is_secondary_amount_allowed")
|
|
2888
|
+
else None
|
|
2889
|
+
)
|
|
2890
|
+
_fortis_id=(
|
|
2891
|
+
self.fortis_id
|
|
2892
|
+
if hasattr(self, "fortis_id")
|
|
2893
|
+
else None
|
|
2894
|
+
)
|
|
2895
|
+
_product_billing_group_code=(
|
|
2896
|
+
self.product_billing_group_code
|
|
2897
|
+
if hasattr(self, "product_billing_group_code")
|
|
2898
|
+
else None
|
|
2899
|
+
)
|
|
2900
|
+
_cau_subscribe_type_code=(
|
|
2901
|
+
self.cau_subscribe_type_code
|
|
2902
|
+
if hasattr(self, "cau_subscribe_type_code")
|
|
2903
|
+
else None
|
|
2904
|
+
)
|
|
2905
|
+
_merchant_code=(
|
|
2906
|
+
self.merchant_code
|
|
2907
|
+
if hasattr(self, "merchant_code")
|
|
2908
|
+
else None
|
|
2909
|
+
)
|
|
2910
|
+
_currency=(
|
|
2911
|
+
self.currency
|
|
2912
|
+
if hasattr(self, "currency")
|
|
2913
|
+
else None
|
|
2914
|
+
)
|
|
2915
|
+
_additional_properties=self.additional_properties
|
|
2916
|
+
return (
|
|
2917
|
+
f"{self.__class__.__name__}("
|
|
2918
|
+
f"processor_version={_processor_version!s}, "
|
|
2919
|
+
f"industry_type={_industry_type!s}, "
|
|
2920
|
+
f"title={_title!s}, "
|
|
2921
|
+
f"payment_method={_payment_method!s}, "
|
|
2922
|
+
f"processor={_processor!s}, "
|
|
2923
|
+
f"mcc={_mcc!s}, "
|
|
2924
|
+
f"tax_surcharge_config={_tax_surcharge_config!s}, "
|
|
2925
|
+
f"terminal_id={_terminal_id!s}, "
|
|
2926
|
+
f"partner={_partner!s}, "
|
|
2927
|
+
f"product_ach_pv_store_id={_product_ach_pv_store_id!s}, "
|
|
2928
|
+
f"invoice_adjustment_title={_invoice_adjustment_title!s}, "
|
|
2929
|
+
f"location_id={_location_id!s}, "
|
|
2930
|
+
f"location_api_id={_location_api_id!s}, "
|
|
2931
|
+
f"billing_location_api_id={_billing_location_api_id!s}, "
|
|
2932
|
+
f"portfolio_id={_portfolio_id!s}, "
|
|
2933
|
+
f"portfolio_validation_rule={_portfolio_validation_rule!s}, "
|
|
2934
|
+
f"sub_processor={_sub_processor!s}, "
|
|
2935
|
+
f"surcharge={_surcharge!s}, "
|
|
2936
|
+
f"processor_data={_processor_data!s}, "
|
|
2937
|
+
f"vt_clerk_number={_vt_clerk_number!s}, "
|
|
2938
|
+
f"vt_billing_phone={_vt_billing_phone!s}, "
|
|
2939
|
+
f"vt_enable_tip={_vt_enable_tip!s}, "
|
|
2940
|
+
f"ach_allow_debit={_ach_allow_debit!s}, "
|
|
2941
|
+
f"ach_allow_credit={_ach_allow_credit!s}, "
|
|
2942
|
+
f"ach_allow_refund={_ach_allow_refund!s}, "
|
|
2943
|
+
f"vt_cvv={_vt_cvv!s}, "
|
|
2944
|
+
f"vt_street={_vt_street!s}, "
|
|
2945
|
+
f"vt_zip={_vt_zip!s}, "
|
|
2946
|
+
f"vt_order_num={_vt_order_num!s}, "
|
|
2947
|
+
f"vt_enable={_vt_enable!s}, "
|
|
2948
|
+
f"receipt_show_contact_name={_receipt_show_contact_name!s}, "
|
|
2949
|
+
f"display_avs={_display_avs!s}, "
|
|
2950
|
+
f"card_type_visa={_card_type_visa!s}, "
|
|
2951
|
+
f"card_type_mc={_card_type_mc!s}, "
|
|
2952
|
+
f"card_type_disc={_card_type_disc!s}, "
|
|
2953
|
+
f"card_type_amex={_card_type_amex!s}, "
|
|
2954
|
+
f"card_type_diners={_card_type_diners!s}, "
|
|
2955
|
+
f"card_type_jcb={_card_type_jcb!s}, "
|
|
2956
|
+
f"card_type_ebt={_card_type_ebt!s}, "
|
|
2957
|
+
f"allow_ebt_cash_benefit={_allow_ebt_cash_benefit!s}, "
|
|
2958
|
+
f"allow_ebt_food_stamp={_allow_ebt_food_stamp!s}, "
|
|
2959
|
+
f"invoice_location={_invoice_location!s}, "
|
|
2960
|
+
f"allow_partial_authorization={_allow_partial_authorization!s}, "
|
|
2961
|
+
f"allow_recurring_partial_authorization={_allow_recurring_partial_authorization!s}, "
|
|
2962
|
+
f"auto_decline_cvv={_auto_decline_cvv!s}, "
|
|
2963
|
+
f"auto_decline_street={_auto_decline_street!s}, "
|
|
2964
|
+
f"auto_decline_zip={_auto_decline_zip!s}, "
|
|
2965
|
+
f"split_payments_allow={_split_payments_allow!s}, "
|
|
2966
|
+
f"vt_show_custom_fields={_vt_show_custom_fields!s}, "
|
|
2967
|
+
f"receipt_show_custom_fields={_receipt_show_custom_fields!s}, "
|
|
2968
|
+
f"vt_override_sales_tax_allowed={_vt_override_sales_tax_allowed!s}, "
|
|
2969
|
+
f"vt_enable_sales_tax={_vt_enable_sales_tax!s}, "
|
|
2970
|
+
f"vt_require_zip={_vt_require_zip!s}, "
|
|
2971
|
+
f"vt_require_street={_vt_require_street!s}, "
|
|
2972
|
+
f"auto_decline_cavv={_auto_decline_cavv!s}, "
|
|
2973
|
+
f"merchant_id={_merchant_id!s}, "
|
|
2974
|
+
f"receipt_header={_receipt_header!s}, "
|
|
2975
|
+
f"receipt_footer={_receipt_footer!s}, "
|
|
2976
|
+
f"receipt_add_account_above_signature={_receipt_add_account_above_signature!s}, "
|
|
2977
|
+
f"receipt_add_recurring_above_signature={_receipt_add_recurring_above_signature!s}, "
|
|
2978
|
+
f"receipt_vt_above_signature={_receipt_vt_above_signature!s}, "
|
|
2979
|
+
f"default_transaction_type={_default_transaction_type!s}, "
|
|
2980
|
+
f"username={_username!s}, "
|
|
2981
|
+
f"password={_password!s}, "
|
|
2982
|
+
f"current_batch={_current_batch!s}, "
|
|
2983
|
+
f"dup_check_per_batch={_dup_check_per_batch!s}, "
|
|
2984
|
+
f"agent_code={_agent_code!s}, "
|
|
2985
|
+
f"paylink_allow={_paylink_allow!s}, "
|
|
2986
|
+
f"quick_invoice_allow={_quick_invoice_allow!s}, "
|
|
2987
|
+
f"level_3_allow={_level_3_allow!s}, "
|
|
2988
|
+
f"payfac_enable={_payfac_enable!s}, "
|
|
2989
|
+
f"enable_3_ds={_enable_3_ds!s}, "
|
|
2990
|
+
f"sales_office_id={_sales_office_id!s}, "
|
|
2991
|
+
f"hosted_payment_page_max_allowed={_hosted_payment_page_max_allowed!s}, "
|
|
2992
|
+
f"hosted_payment_page_allow={_hosted_payment_page_allow!s}, "
|
|
2993
|
+
f"surcharge_id={_surcharge_id!s}, "
|
|
2994
|
+
f"allow_big_commerce={_allow_big_commerce!s}, "
|
|
2995
|
+
f"allow_shopify={_allow_shopify!s}, "
|
|
2996
|
+
f"level_3_default={_level_3_default!s}, "
|
|
2997
|
+
f"cau_subscribe_type_id={_cau_subscribe_type_id!s}, "
|
|
2998
|
+
f"cau_account_number={_cau_account_number!s}, "
|
|
2999
|
+
f"location_billing_account_id={_location_billing_account_id!s}, "
|
|
3000
|
+
f"product_billing_group_id={_product_billing_group_id!s}, "
|
|
3001
|
+
f"account_number={_account_number!s}, "
|
|
3002
|
+
f"run_avs_on_accountvault_create={_run_avs_on_accountvault_create!s}, "
|
|
3003
|
+
f"accountvault_expire_notification_email_enable={_accountvault_expire_notification_email_enable!s}, "
|
|
3004
|
+
f"debit_allow_void={_debit_allow_void!s}, "
|
|
3005
|
+
f"quick_invoice_text_to_pay={_quick_invoice_text_to_pay!s}, "
|
|
3006
|
+
f"authentication_code={_authentication_code!s}, "
|
|
3007
|
+
f"sms_enable={_sms_enable!s}, "
|
|
3008
|
+
f"vt_show_currency={_vt_show_currency!s}, "
|
|
3009
|
+
f"receipt_show_currency={_receipt_show_currency!s}, "
|
|
3010
|
+
f"allow_blind_refund={_allow_blind_refund!s}, "
|
|
3011
|
+
f"vt_show_company_name={_vt_show_company_name!s}, "
|
|
3012
|
+
f"receipt_show_company_name={_receipt_show_company_name!s}, "
|
|
3013
|
+
f"bank_funded_only={_bank_funded_only!s}, "
|
|
3014
|
+
f"require_cvv_on_keyed_cnp={_require_cvv_on_keyed_cnp!s}, "
|
|
3015
|
+
f"require_cvv_on_tokenized_cnp={_require_cvv_on_tokenized_cnp!s}, "
|
|
3016
|
+
f"show_secondary_amount={_show_secondary_amount!s}, "
|
|
3017
|
+
f"allow_secondary_amount={_allow_secondary_amount!s}, "
|
|
3018
|
+
f"show_google_pay={_show_google_pay!s}, "
|
|
3019
|
+
f"show_apple_pay={_show_apple_pay!s}, "
|
|
3020
|
+
f"batch_risk_config={_batch_risk_config!s}, "
|
|
3021
|
+
f"currency_code={_currency_code!s}, "
|
|
3022
|
+
f"enable_ach_validation={_enable_ach_validation!s}, "
|
|
3023
|
+
f"enable_ach_retry={_enable_ach_retry!s}, "
|
|
3024
|
+
f"allow_softpos={_allow_softpos!s}, "
|
|
3025
|
+
f"allow_multi_currency={_allow_multi_currency!s}, "
|
|
3026
|
+
f"allow_unapplied_payments={_allow_unapplied_payments!s}, "
|
|
3027
|
+
f"id={_id!s}, "
|
|
3028
|
+
f"receipt_logo={_receipt_logo!s}, "
|
|
3029
|
+
f"active={_active!s}, "
|
|
3030
|
+
f"tz={_tz!s}, "
|
|
3031
|
+
f"current_stan={_current_stan!s}, "
|
|
3032
|
+
f"created_ts={_created_ts!s}, "
|
|
3033
|
+
f"modified_ts={_modified_ts!s}, "
|
|
3034
|
+
f"created_user_id={_created_user_id!s}, "
|
|
3035
|
+
f"modified_user_id={_modified_user_id!s}, "
|
|
3036
|
+
f"product_transaction_api_id={_product_transaction_api_id!s}, "
|
|
3037
|
+
f"transaction_amount_notification_threshold={_transaction_amount_notification_threshold!s}, "
|
|
3038
|
+
f"is_secondary_amount_allowed={_is_secondary_amount_allowed!s}, "
|
|
3039
|
+
f"fortis_id={_fortis_id!s}, "
|
|
3040
|
+
f"product_billing_group_code={_product_billing_group_code!s}, "
|
|
3041
|
+
f"cau_subscribe_type_code={_cau_subscribe_type_code!s}, "
|
|
3042
|
+
f"merchant_code={_merchant_code!s}, "
|
|
3043
|
+
f"currency={_currency!s}, "
|
|
3044
|
+
f"additional_properties={_additional_properties!s}, "
|
|
3045
|
+
f")"
|
|
3046
|
+
)
|