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,3198 @@
|
|
|
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.additional_amount import (
|
|
9
|
+
AdditionalAmount,
|
|
10
|
+
)
|
|
11
|
+
from fortisapi.models.billing_address_1 import (
|
|
12
|
+
BillingAddress1,
|
|
13
|
+
)
|
|
14
|
+
from fortisapi.models.emv_receipt_data import (
|
|
15
|
+
EmvReceiptData,
|
|
16
|
+
)
|
|
17
|
+
from fortisapi.models.identity_verification import (
|
|
18
|
+
IdentityVerification,
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class RejectedTransaction(object):
|
|
23
|
+
"""Implementation of the 'RejectedTransaction' model.
|
|
24
|
+
|
|
25
|
+
Transaction Information on `expand`
|
|
26
|
+
|
|
27
|
+
Attributes:
|
|
28
|
+
additional_amounts (List[AdditionalAmount]): Additional amounts
|
|
29
|
+
billing_address (BillingAddress1): Billing Address Object
|
|
30
|
+
checkin_date (str): Checkin Date - The time difference between checkin_date
|
|
31
|
+
and checkout_date must be less than or equal to 99 days. NOTE: if
|
|
32
|
+
checkin_date is in the future, set the advance_deposit to 1 >Required if
|
|
33
|
+
merchant industry type is lodging. >
|
|
34
|
+
checkout_date (str): Checkout Date - The time difference between checkin_date
|
|
35
|
+
and checkout_date must be less than or equal to 99 days. >Required if
|
|
36
|
+
merchant industry type is lodging. >
|
|
37
|
+
clerk_number (str): Clerk or Employee Identifier
|
|
38
|
+
contact_api_id (str): This can be supplied in place of contact_id if you
|
|
39
|
+
would like to use a contact for the transaction and are using your own
|
|
40
|
+
custom api_id's to track contacts in the system.
|
|
41
|
+
contact_id (str): If contact_id is provided, ensure it belongs to the same
|
|
42
|
+
location as the transaction. You cannot move transaction across locations.
|
|
43
|
+
custom_data (Any): A field that allows custom JSON to be entered to store
|
|
44
|
+
extra data.
|
|
45
|
+
customer_id (str): Can be used by Merchants to identify Contacts in our
|
|
46
|
+
system by an ID from another system.
|
|
47
|
+
description (str): Description
|
|
48
|
+
identity_verification (IdentityVerification): Identity Verification
|
|
49
|
+
iias_ind (IiasIndEnum): Possible values are '0', '1','2'
|
|
50
|
+
image_front (str): A base64 encoded string for the image. Used with Check21
|
|
51
|
+
ACH transactions.
|
|
52
|
+
image_back (str): A base64 encoded string for the image. Used with Check21
|
|
53
|
+
ACH transactions.
|
|
54
|
+
installment (bool): Flag that is allowed to be passed on card not present
|
|
55
|
+
industries to signify the transaction is a fixed installment plan
|
|
56
|
+
transaction.
|
|
57
|
+
installment_number (int): If this is a fixed installment plan and installment
|
|
58
|
+
field is being passed as 1, then this field must have a vlue of 1-999
|
|
59
|
+
specifying the current installment number that is running.
|
|
60
|
+
installment_count (int): If this is a fixed installment plan and installment
|
|
61
|
+
field is being passed as 1, then this field must have a vlue of 1-999
|
|
62
|
+
specifying the total number of installments on the plan. This number must
|
|
63
|
+
be grater than or equal to installment_number.
|
|
64
|
+
recurring_flag (RecurringFlagEnum): Recurring Flag
|
|
65
|
+
installment_counter (int): Installment Counter
|
|
66
|
+
installment_total (int): Installment Total
|
|
67
|
+
subscription (bool): Subscription
|
|
68
|
+
standing_order (bool): Standing Order
|
|
69
|
+
location_api_id (str): This can be supplied in place of location_id for the
|
|
70
|
+
transaction if you are using your own custom api_id's for your locations.
|
|
71
|
+
location_id (str): A valid Location Id to associate the transaction with.
|
|
72
|
+
product_transaction_id (str): The Product's method (cc/ach) has to match the
|
|
73
|
+
action. If not provided, the API will use the default configured for the
|
|
74
|
+
Location.
|
|
75
|
+
advance_deposit (bool): Advance Deposit
|
|
76
|
+
no_show (bool): Used in Lodging
|
|
77
|
+
notification_email_address (str): If email is supplied then receipt will be
|
|
78
|
+
emailed
|
|
79
|
+
order_number (str): Required for CC transactions , if merchant's deposit
|
|
80
|
+
account's duplicate check per batch has 'order_number' field
|
|
81
|
+
po_number (str): Purchase Order number
|
|
82
|
+
quick_invoice_id (str): Can be used to associate a transaction to a Quick
|
|
83
|
+
Invoice. Quick Invoice transactions will have a value for this field
|
|
84
|
+
automatically.
|
|
85
|
+
recurring (bool): Flag that is allowed to be passed on card not present
|
|
86
|
+
industries to signify the transaction is an ongoing recurring
|
|
87
|
+
transaction. Possible values to send are 0 or 1. This field must be 0 or
|
|
88
|
+
not present if installment is sent as 1.
|
|
89
|
+
recurring_number (int): If this is an ongoing recurring and recurring field
|
|
90
|
+
is being passed as 1, then this field must have a vlue of 1-999
|
|
91
|
+
specifying the current recurring number that is running.
|
|
92
|
+
room_num (str): Used in Lodging
|
|
93
|
+
room_rate (int): Required if merchant industry type is lodging.
|
|
94
|
+
save_account (bool): Specifies to save account to contacts profile if
|
|
95
|
+
account_number/track_data is present with either contact_id or
|
|
96
|
+
contact_api_id in params.
|
|
97
|
+
save_account_title (str): If saving token while running a transaction, this
|
|
98
|
+
will be the title of the token.
|
|
99
|
+
subtotal_amount (int): This field is allowed and required for transactions
|
|
100
|
+
that have a product where surcharge is configured. Use only integer
|
|
101
|
+
numbers, so $10.99 will be 1099.
|
|
102
|
+
surcharge_amount (int): This field is allowed and required for transactions
|
|
103
|
+
that have a product where surcharge is configured. Use only integer
|
|
104
|
+
numbers, so $10.99 will be 1099.
|
|
105
|
+
tags (List[str]): Tags
|
|
106
|
+
tax (int): The total tax amount for the transaction, including any tax on the
|
|
107
|
+
surcharge (Extra Tax).
|
|
108
|
+
tip_amount (int): Optional tip amount. Tip is not supported for lodging and
|
|
109
|
+
ecommerce merchants. Use only integer numbers, so $10.99 will be 1099.
|
|
110
|
+
transaction_amount (int): Amount of the transaction. This should always be
|
|
111
|
+
the desired settle amount of the transaction. Use only integer numbers,
|
|
112
|
+
so $10.99 will be 1099.
|
|
113
|
+
secondary_amount (int): Retained Amount of the transaction. This should
|
|
114
|
+
always be less than transaction amount. Use only integer numbers, so
|
|
115
|
+
$10.99 will be 1099
|
|
116
|
+
transaction_api_id (str): See api_id page for more details
|
|
117
|
+
transaction_c_1 (str): Custom field 1 for api users to store custom data
|
|
118
|
+
transaction_c_2 (str): Custom field 2 for api users to store custom data
|
|
119
|
+
transaction_c_3 (str): Custom field 3 for api users to store custom data
|
|
120
|
+
bank_funded_only_override (bool): Bank Funded Only Override
|
|
121
|
+
allow_partial_authorization_override (bool): Allow Partial Authorization
|
|
122
|
+
Override
|
|
123
|
+
auto_decline_cvv_override (bool): Auto Decline CVV Override
|
|
124
|
+
auto_decline_street_override (bool): Auto Decline Street Override
|
|
125
|
+
auto_decline_zip_override (bool): Auto Decline Zip Override
|
|
126
|
+
ebt_type (EbtTypeEnum): EBT Type
|
|
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
|
+
id (str): Transaction ID
|
|
131
|
+
created_ts (int): Created Time Stamp
|
|
132
|
+
modified_ts (int): Modified Time Stamp
|
|
133
|
+
terminal_id (str): Terminal ID
|
|
134
|
+
account_holder_name (str): For CC, this is the 'Name (as it appears) on
|
|
135
|
+
Card'. For ACH, this is the 'Name on Account'. >Required for ACH
|
|
136
|
+
transactions if account_vault_id is not provided. For CC transactions
|
|
137
|
+
that are run through a terminal, this field may be overwritten by data
|
|
138
|
+
acquired from the credit card track data. >
|
|
139
|
+
account_type (str): Required for ACH transactions if account_vault_id is not
|
|
140
|
+
provided. >For ACH, allowed values are 'checking' or 'savings'. For CC,
|
|
141
|
+
this field is read only. The system will identify card type and generate
|
|
142
|
+
a value for this field automatically. possible values are: visa, mc,
|
|
143
|
+
disc, amex, jcb, diners, and debit. >
|
|
144
|
+
token_api_id (str): This can be supplied in place of account_vault_id if you
|
|
145
|
+
would like to use an token for the transaction and are using your own
|
|
146
|
+
custom api_id's to track accountvaults in the system.
|
|
147
|
+
token_id (str): Required if account_number, track_data, micr_data is not
|
|
148
|
+
provided.
|
|
149
|
+
ach_identifier (str): Required for ACH transactions in certain scenarios.
|
|
150
|
+
ach_sec_code (AchSecCode1Enum): Required for ACH transactions if
|
|
151
|
+
account_vault_id is not provided.
|
|
152
|
+
auth_amount (int): Authorization Amount
|
|
153
|
+
auth_code (str): Required on force transactions and EBT voucher clear
|
|
154
|
+
sale/refund. Ignored for all other actions.
|
|
155
|
+
avs (AvsEnum): AVS
|
|
156
|
+
avs_enhanced (str): AVS Enhanced
|
|
157
|
+
cardholder_present (bool): If the cardholder is present at the point of
|
|
158
|
+
service
|
|
159
|
+
card_present (bool): A POST only field to specify whether or not the card is
|
|
160
|
+
present. >This field will be defaulted to '1' for all card present
|
|
161
|
+
industries (retail, lodging, restaurant) and '0' for card not present
|
|
162
|
+
industries (MOTO/e-commerce). For lodging, if the no_show flag is set to
|
|
163
|
+
'1', this field will automatically be set to '0'. For transactions where
|
|
164
|
+
account_vault_id is used, this filed will be set to '0'. >
|
|
165
|
+
check_number (str): Required for transactions using TEL SEC code.
|
|
166
|
+
customer_ip (str): Can be used to store customer IP Address
|
|
167
|
+
cvv_response (str): Obfuscated CVV
|
|
168
|
+
entry_mode_id (EntryModeIdEnum): Entry Mode - See entry mode section for more
|
|
169
|
+
detail
|
|
170
|
+
emv_receipt_data (EmvReceiptData): This field is a read only field. This
|
|
171
|
+
field will only be populated for EMV transactions and will contain proper
|
|
172
|
+
JSON formatted data with some or all of the following fields:
|
|
173
|
+
TC,TVR,AID,TSI,ATC,APPLAB,APPN,CVM
|
|
174
|
+
first_six (str): First six numbers of account_number. Automatically
|
|
175
|
+
generated by system.
|
|
176
|
+
last_four (str): Last four numbers of account_number. Automatically
|
|
177
|
+
generated by the system.
|
|
178
|
+
payment_method (PaymentMethod9Enum): 'cc' or 'ach'
|
|
179
|
+
terminal_serial_number (str): If transaction was processed using a terminal,
|
|
180
|
+
this field would contain the terminal's serial number
|
|
181
|
+
transaction_settlement_status (str): (Deprecated field)
|
|
182
|
+
charge_back_date (str): Charge Back Date (ACH Trxs)
|
|
183
|
+
is_recurring (bool): Flag that is allowed to be passed on card not present
|
|
184
|
+
industries to signify the transaction is a fixed installment plan
|
|
185
|
+
transaction.
|
|
186
|
+
notification_email_sent (bool): Indicates if email receipt has been sent
|
|
187
|
+
par (str): A field usually returned form the processor to uniquely identifier
|
|
188
|
+
a specific cardholder's credit card.
|
|
189
|
+
reason_code_id (ReasonCodeId1Enum): Response reason code that provides more
|
|
190
|
+
detail as to the result of the transaction. The reason code list can be
|
|
191
|
+
found here: Response Reason Codes >0 - N/A > >1000 - CC - Approved / ACH
|
|
192
|
+
- Accepted > >1000 - CC - Approved / ACH - Accepted > >1001 -
|
|
193
|
+
AuthCompleted > >1002 - Forced > >1003 - AuthOnly Declined > >1004 -
|
|
194
|
+
Validation Failure (System Run Trx) > >1005 - Processor Response Invalid
|
|
195
|
+
> >1200 - Voided > >1201 - Partial Approval > >1240 - Approved, optional
|
|
196
|
+
fields are missing (Paya ACH only) > >1301 - Account Deactivated for
|
|
197
|
+
Fraud > >1302-1399 - Reserved for Future Fraud Reason Codes > >1500 -
|
|
198
|
+
Generic Decline > >1510 - Call > >1518 - Transaction Not Permitted -
|
|
199
|
+
Terminal > >1520 - Pickup Card > >1530 - Retry Trx > >1531 -
|
|
200
|
+
Communication Error > >1540 - Setup Issue, contact Support > >1541 -
|
|
201
|
+
Device is not signature capable > >1588 - Data could not be de-tokenized
|
|
202
|
+
> >1599 - Other Reason > >1601 - Generic Decline > >1602 - Call > >1603 -
|
|
203
|
+
No Reply > >1604 - Pickup Card - No Fraud > >1605 - Pickup Card - Fraud >
|
|
204
|
+
>1606 - Pickup Card - Lost > >1607 - Pickup Card - Stolen > >1608 -
|
|
205
|
+
Account Error > >1609 - Already Reversed > >1610 - Bad PIN > >1611 -
|
|
206
|
+
Cashback Exceeded > >1612 - Cashback Not Available > >1613 - CID Error >
|
|
207
|
+
>1614 - Date Error > >1615 - Do Not Honor > >1616 - NSF > >1618 - Invalid
|
|
208
|
+
Service Code > >1619 - Exceeded activity limit > >1620 - Violation >
|
|
209
|
+
>1621 - Encryption Error > >1622 - Card Expired > >1623 - Renter > >1624
|
|
210
|
+
- Security Violation > >1625 - Card Not Permitted > >1626 - Trans Not
|
|
211
|
+
Permitted > >1627 - System Error > >1628 - Bad Merchant ID > >1629 -
|
|
212
|
+
Duplicate Batch (Already Closed) > >1630 - Batch Rejected > >1631 -
|
|
213
|
+
Account Closed > >1632 - PIN tries exceeded > > > > > > > > > > > > > > >
|
|
214
|
+
>1640 - Required fields are missing (ACH only) > >1641 - Previously
|
|
215
|
+
declined transaction (1640) > > > > > > > > > > > > > > > > > >1650 -
|
|
216
|
+
Contact Support > >1651 - Max Sending - Throttle Limit Hit (ACH only) >
|
|
217
|
+
>1652 - Max Attempts Exceeded > >1653 - Contact Support > >1654 - Voided
|
|
218
|
+
- Online Reversal Failed > >1655 - Decline (AVS Auto Reversal) > >1656 -
|
|
219
|
+
Decline (CVV Auto Reversal) > >1657 - Decline (Partial Auth Auto
|
|
220
|
+
Reversal) > >1658 - Expired Authorization > >1659 - Declined - Partial
|
|
221
|
+
Approval not Supported > >1660 - Bank Account Error, please delete and
|
|
222
|
+
re-add Token > >1661 - Declined AuthIncrement > >1662 - Auto Reversal -
|
|
223
|
+
Processor can't settle > >1663 - Manager Needed (Needs override
|
|
224
|
+
transaction) > >1664 - Token Not Found: Sharing Group Unavailable > >1665
|
|
225
|
+
- Contact Not Found: Sharing Group Unavailable > >1666 - Amount Error >
|
|
226
|
+
>1667 - Action Not Allowed in Current State > >1668 - Original
|
|
227
|
+
Authorization Not Valid > >1701 - Chip Reject > >1800 - Incorrect CVV >
|
|
228
|
+
>1801 - Duplicate Transaction > >1802 - MID/TID Not Registered > >1803 -
|
|
229
|
+
Stop Recurring > >1804 - No Transactions in Batch > >1805 - Batch Does
|
|
230
|
+
Not Exist > > > **ACH Reject Reason Codes** | Code | E-Code | Verbiage
|
|
231
|
+
| Short Description | Long Description | | ----------- | ----------- |
|
|
232
|
+
----------- | ----------- | ----------- | | 2101 | Rejected-R01 | |
|
|
233
|
+
Insufficient funds | Available balance is not sufficient to cover the
|
|
234
|
+
amount of the debit entry | | 2102 | Rejected-R02 | E02 | Bank account
|
|
235
|
+
closed | Previously active amount has been closed by the customer of RDFI
|
|
236
|
+
| | 2103 | Rejected-R03 | E03 | No bank account/unable to locate account
|
|
237
|
+
| Account number does not correspond to the individual identified in the
|
|
238
|
+
entry, or the account number designated is not an open account | | 2104 |
|
|
239
|
+
Rejected-R04 | E04 | Invalid bank account number | Account number
|
|
240
|
+
structure is not valid | | 2105 | Rejected-R05 | E05 | Reserved |
|
|
241
|
+
Currently not in use | | 2106 | Rejected-R06 | | Returned per ODFI
|
|
242
|
+
request | ODFI requested the RDFI to return the entry | | 2107 |
|
|
243
|
+
Rejected-R07 | E07 | Authorization revoked by customer | Receiver has
|
|
244
|
+
revoked authorization | | 2108 | Rejected-R08 | E08 | Payment stopped |
|
|
245
|
+
Receiver of a recurring debit has stopped payment of an entry | | 2109 |
|
|
246
|
+
Rejected-R09 | | Uncollected funds | Collected funds are not sufficient
|
|
247
|
+
for payment of the debit entry | | 2110 | Rejected-R10 | E10 | Customer
|
|
248
|
+
Advises Originator is Not Known to Receiver and/or Is Not Authorized by
|
|
249
|
+
Receiver to Debit Receiver’s Account | Receiver has advised RDFI that
|
|
250
|
+
originator is not authorized to debit his bank account | | 2111 |
|
|
251
|
+
Rejected-R11 | | Customer Advises Entry Not In Accordance with the Terms
|
|
252
|
+
of the Authorization | To be used when there is an error in the
|
|
253
|
+
authorization | | 2112 | Rejected-R12 | | Branch sold to another RDFI |
|
|
254
|
+
RDFI unable to post entry destined for a bank account maintained at a
|
|
255
|
+
branch sold to another financial institution | | 2113 | Rejected-R13 | |
|
|
256
|
+
RDFI not qualified to participate | Financial institution does not
|
|
257
|
+
receive commercial ACH entries | | 2114 | Rejected-R14 | E14 |
|
|
258
|
+
Representative payee deceased or unable to continue in that capacity |
|
|
259
|
+
The representative payee authorized to accept entries on behalf of a
|
|
260
|
+
beneficiary is either deceased or unable to continue in that capacity | |
|
|
261
|
+
2115 | Rejected-R15 | E15 | Beneficiary or bank account holder deceased |
|
|
262
|
+
(Other than representative payee) deceased* - (1) the beneficiary
|
|
263
|
+
entitled to payments is deceased or (2) the bank account holder other
|
|
264
|
+
than a representative payee is deceased | | 2116 | Rejected-R16 | E16 |
|
|
265
|
+
Bank account frozen | Funds in bank account are unavailable due to action
|
|
266
|
+
by RDFI or legal order | | 2117 | Rejected-R17 | | File record edit
|
|
267
|
+
criteria | Entry with Invalid Account Number Initiated Under Questionable
|
|
268
|
+
Circumstances | | 2118 | Rejected-R18 | | Improper effective entry date
|
|
269
|
+
| Entries have been presented prior to the first available processing
|
|
270
|
+
window for the effective date. | | 2119 | Rejected-R19 | | Amount field
|
|
271
|
+
error | Improper formatting of the amount field | | 2120 | Rejected-R20 |
|
|
272
|
+
| Non-payment bank account | Entry destined for non-payment bank account
|
|
273
|
+
defined by reg. | | 2121 | Rejected-R21 | | Invalid company
|
|
274
|
+
Identification | The company ID information not valid (normally CIE
|
|
275
|
+
entries) | | 2122 | Rejected-R22 | | Invalid individual ID number |
|
|
276
|
+
Individual id used by receiver is incorrect (CIE entries) | | 2123 |
|
|
277
|
+
Rejected-R23 | | Credit entry refused by receiver | Receiver returned
|
|
278
|
+
entry because minimum or exact amount not remitted, bank account is
|
|
279
|
+
subject to litigation, or payment represents an overpayment, originator
|
|
280
|
+
is not known to receiver or receiver has not authorized this credit entry
|
|
281
|
+
to this bank account | | 2124 | Rejected-R24 | | Duplicate entry | RDFI
|
|
282
|
+
has received a duplicate entry | | 2125 | Rejected-R25 | | Addenda error
|
|
283
|
+
| Improper formatting of the addenda record information | | 2126 |
|
|
284
|
+
Rejected-R26 | | Mandatory field error | Improper information in one of
|
|
285
|
+
the mandatory fields | | 2127 | Rejected-R27 | | Trace number error |
|
|
286
|
+
Original entry trace number is not valid for return entry; or addenda
|
|
287
|
+
trace numbers do not correspond with entry detail record | | 2128 |
|
|
288
|
+
Rejected-R28 | | Transit routing number check digit error | Check digit
|
|
289
|
+
for the transit routing number is incorrect | | 2129 | Rejected-R29 | E29
|
|
290
|
+
| Corporate customer advises not authorized | RDFI has been notified by
|
|
291
|
+
corporate receiver that debit entry of originator is not authorized | |
|
|
292
|
+
2130 | Rejected-R30 | | RDFI not participant in check truncation program
|
|
293
|
+
| Financial institution not participating in automated check safekeeping
|
|
294
|
+
application | | 2131 | Rejected-R31 | | Permissible return entry (CCD
|
|
295
|
+
and CTX only) | RDFI has been notified by the ODFI that it agrees to
|
|
296
|
+
accept a CCD or CTX return entry | | 2132 | Rejected-R32 | | RDFI
|
|
297
|
+
non-settlement | RDFI is not able to settle the entry | | 2133 |
|
|
298
|
+
Rejected-R33 | | Return of XCK entry | RDFI determines at its sole
|
|
299
|
+
discretion to return an XCK entry; an XCK return entry may be initiated
|
|
300
|
+
by midnight of the sixtieth day following the settlement date if the XCK
|
|
301
|
+
entry | | 2134 | Rejected-R34 | | Limited participation RDFI | RDFI
|
|
302
|
+
participation has been limited by a federal or state supervisor | | 2135
|
|
303
|
+
| Rejected-R35 | | Return of improper debit entry | ACH debit not
|
|
304
|
+
permitted for use with the CIE standard entry class code (except for
|
|
305
|
+
reversals) | | 2136 | Rejected-R36 | | Return of Improper Credit Entry |
|
|
306
|
+
| | 2137 | Rejected-R37 | | Source Document Presented for Payment | | |
|
|
307
|
+
2138 | Rejected-R38 | | Stop Payment on Source Document | | | 2139 |
|
|
308
|
+
Rejected-R39 | | Improper Source Document | | | 2140 | Rejected-R40 |
|
|
309
|
+
| Return of ENR Entry by Federal Government Agency | | | 2141 |
|
|
310
|
+
Rejected-R41 | | Invalid Transaction Code | | | 2142 | Rejected-R42 |
|
|
311
|
+
| Routing Number/Check Digit Error | | | 2143 | Rejected-R43 | |
|
|
312
|
+
Invalid DFI Account Number | | | 2144 | Rejected-R44 | | Invalid
|
|
313
|
+
Individual ID Number/Identification | | | 2145 | Rejected-R45 | |
|
|
314
|
+
Invalid Individual Name/Company Name | | | 2146 | Rejected-R46 | |
|
|
315
|
+
Invalid Representative Payee Indicator | | | 2147 | Rejected-R47 | |
|
|
316
|
+
Duplicate Enrollment | | | 2150 | Rejected-R50 | | State Law Affecting
|
|
317
|
+
RCK Acceptance | | | 2151 | Rejected-R51 | | Item is Ineligible, Notice
|
|
318
|
+
Not Provided, etc. | | | 2152 | Rejected-R52 | | Stop Payment on Item
|
|
319
|
+
(adjustment entries) | | | 2153 | Rejected-R53 | | Item and ACH Entry
|
|
320
|
+
Presented for Payment | | | 2161 | Rejected-R61 | | Misrouted Return |
|
|
321
|
+
| | 2162 | Rejected-R62 | | Incorrect Trace Number | | | 2163 |
|
|
322
|
+
Rejected-R63 | | Incorrect Dollar Amount | | | 2164 | Rejected-R64 | |
|
|
323
|
+
Incorrect Individual Identification | | | 2165 | Rejected-R65 | |
|
|
324
|
+
Incorrect Transaction Code | | | 2166 | Rejected-R66 | | Incorrect
|
|
325
|
+
Company Identification | | | 2167 | Rejected-R67 | | Duplicate Return |
|
|
326
|
+
| | 2168 | Rejected-R68 | | Untimely Return | | | 2169 | Rejected-R69 |
|
|
327
|
+
| Multiple Errors | | | 2170 | Rejected-R70 | | Permissible Return
|
|
328
|
+
Entry Not Accepted | | | 2171 | Rejected-R71 | | Misrouted Dishonored
|
|
329
|
+
Return | | | 2172 | Rejected-R72 | | Untimely Dishonored Return | | |
|
|
330
|
+
2173 | Rejected-R73 | | Timely Original Return | | | 2174 |
|
|
331
|
+
Rejected-R74 | | Corrected Return | | | 2180 | Rejected-R80 | |
|
|
332
|
+
Cross-Border Payment Coding Error | | | 2181 | Rejected-R81 | |
|
|
333
|
+
Non-Participant in Cross-Border Program | | | 2182 | Rejected-R82 | |
|
|
334
|
+
Invalid Foreign Receiving DFI Identification | | | 2183 | Rejected-R83 |
|
|
335
|
+
| Foreign Receiving DFI Unable to Settle | | | 2200 | Voided | |
|
|
336
|
+
Processor Void | The transaction was voided by the processor before being
|
|
337
|
+
sent to the bank | | 2201 | Rejected-C01 | | | | | 2202 | Rejected-C02
|
|
338
|
+
| | | | | 2203 | Rejected-C03 | | | | | 2204 | Rejected-C04 | | |
|
|
339
|
+
| | 2205 | Rejected-C05 | | | | | 2206 | Rejected-C06 | | | | |
|
|
340
|
+
2207 | Rejected-C07 | | | | | 2208 | Rejected-C08 | | | | | 2209 |
|
|
341
|
+
Rejected-C09 | | | | | 2210 | Rejected-C10 | | | | | 2211 |
|
|
342
|
+
Rejected-C11 | | | | | 2212 | Rejected-C12 | | | | | 2213 |
|
|
343
|
+
Rejected-C13 | | | | | 2261 | Rejected-C61 | | | | | 2262 |
|
|
344
|
+
Rejected-C62 | | | | | 2263 | Rejected-C63 | | | | | 2264 |
|
|
345
|
+
Rejected-C64 | | | | | 2265 | Rejected-C65 | | | | | 2266 |
|
|
346
|
+
Rejected-C66 | | | | | 2267 | Rejected-C67 | | | | | 2268 |
|
|
347
|
+
Rejected-C68 | | | | | 2269 | Rejected-C69 | | | | | 2301 |
|
|
348
|
+
Rejected-X01 | | Misc Check 21 Return | | | 2304 | Rejected-X04 | |
|
|
349
|
+
Invalid Image | | | 2305 | Rejected-X05 | E95 | Breach of Warranty | |
|
|
350
|
+
| 2306 | Rejected-X06 | E96 | Counterfeit / Forgery | | | 2307 |
|
|
351
|
+
Rejected-X07 | E97 | Refer to Maker | | | 2308 | Rejected-X08 | |
|
|
352
|
+
Maximum Payment Attempts | | | 2309 | Rejected-X09 | | Item Cannot be
|
|
353
|
+
Re-presented | | | 2310 | Rejected-X10 | | Not Our Item | | | 2321 |
|
|
354
|
+
Rejected-X21 | | Pay None | | | 2322 | Rejected-X22 | | Pay All | | |
|
|
355
|
+
2323 | Rejected-X23 | E93 | Non-Negotiable | | | 2329 | Rejected-X29 |
|
|
356
|
+
| Stale Dated | | | 2345 | Rejected-X45 | | Misc Return | | | 2371 |
|
|
357
|
+
Rejected-X71 | | RCK - 2nd Time | | | 2372 | Rejected-X72 | | RCK
|
|
358
|
+
Reject - ACH | | | 2373 | Rejected-X73 | | RCK Reject - Payer | |
|
|
359
|
+
recurring_id (str): A unique identifer used to associate a transaction with a
|
|
360
|
+
Recurring.
|
|
361
|
+
settle_date (str): Settle date
|
|
362
|
+
status_code (StatusCode17Enum): Status ID - See status id section for more
|
|
363
|
+
detail >101 - Sale cc Approved > >102 - Sale cc AuthOnly > >111 - Refund
|
|
364
|
+
cc Refunded > >121 - Credit/Debit/Refund cc AvsOnly > >131 -
|
|
365
|
+
Credit/Debit/Refund ach Pending Origination > >132 - Credit/Debit/Refund
|
|
366
|
+
ach Originating > >133 - Credit/Debit/Refund ach Originated > >134 -
|
|
367
|
+
Credit/Debit/Refund ach Settled > >191 - Settled (depracated - batches
|
|
368
|
+
are now settled on the /v2/transactionbatches endpoint) > >201 - All
|
|
369
|
+
cc/ach Voided > >301 - All cc/ach Declined > >331 - Credit/Debit/Refund
|
|
370
|
+
ach Charged Back >
|
|
371
|
+
transaction_batch_id (str): For cc transactions, this is the id of the batch
|
|
372
|
+
the transaction belongs to (not to be confused with batch number). This
|
|
373
|
+
will be null for transactions that do not settle (void and authonly).
|
|
374
|
+
type_id (TypeIdEnum): Type ID - See type id section for more detail
|
|
375
|
+
verbiage (str): Verbiage -Do not use verbiage to see if the transaction was
|
|
376
|
+
approved, use status_id
|
|
377
|
+
voucher_number (str): Voucher Number
|
|
378
|
+
void_date (str): void date
|
|
379
|
+
batch (str): Batch
|
|
380
|
+
terms_agree (bool): Terms Agreement
|
|
381
|
+
response_message (str): Response Message
|
|
382
|
+
return_date (str): Return Date
|
|
383
|
+
trx_source_id (TrxSourceIdEnum): How the transaction was obtained by the API.
|
|
384
|
+
>1 - Unknown - The origination of this transaction could not be
|
|
385
|
+
determined. > >2 - Mobile - The origination of this transaction is
|
|
386
|
+
through the mobile application. This is always a merchant submitted
|
|
387
|
+
payment. > >3 - Web - The origination of this transaction is through a
|
|
388
|
+
web browser. This is always a merchant submitted payment. Examples
|
|
389
|
+
include Virtual Terminal, Contact Charge, and Transaction Details - Run
|
|
390
|
+
Again pages. > >4 - IVR Transaction - The origination of this transaction
|
|
391
|
+
is over the phone. This payment is submitted by an automated system
|
|
392
|
+
initiated by the cardholder. > >5 - Contact Statement - The orignation of
|
|
393
|
+
this transaction is through a Vericle statement. > >6 - Contact Payment
|
|
394
|
+
Mobile - The origination of this transaction is through the mobile
|
|
395
|
+
application. This is always submitted by a contact user. > >7 - Contact
|
|
396
|
+
Payment - The origination of this transaction is through a web browser.
|
|
397
|
+
This is always submitted by a contact user. > >8 - Quick Invoice - The
|
|
398
|
+
orignation of this transaction is through a Quick Invoice. This is
|
|
399
|
+
typically submitted by a contact user, however the transaction can also
|
|
400
|
+
be submitted by a merchant. > >9 - Payform - The origination of this
|
|
401
|
+
transaction is through a Payform. This is typically a merchant submitted
|
|
402
|
+
transaction, and is always from an internal developer. > >10 - Hosted
|
|
403
|
+
Payment Page - The orignation of this transaction is through a Hosted
|
|
404
|
+
Payment Page. This is typically a cardholder submitted transaction. > >11
|
|
405
|
+
- Emulator - The origination of this transaction is through Auth.Net
|
|
406
|
+
emulator. This is typically submitted through an integration to a website
|
|
407
|
+
or a shopping cart. > >12 - Integration - The orignation of this
|
|
408
|
+
transaction is through an integrated solution. This will always be from
|
|
409
|
+
an external developer. > >13 - Recurring Billing - The orignation of this
|
|
410
|
+
transaction is through a scheduled recurring payment. This payment is
|
|
411
|
+
system-initiated based on a payment schedule that has been configured. >
|
|
412
|
+
>14 - Recurring Secondary - This feature has not been implented yet. >
|
|
413
|
+
>15 - Declined Recurring Email - The orignation of this transaction is
|
|
414
|
+
through the email notification sent when a recurring payment has been
|
|
415
|
+
declined. This is typically submitted by a cardholder. > >16 - Paylink -
|
|
416
|
+
The orignation of this transaction is through a Paylink. This is
|
|
417
|
+
typically submitted by a contact user, however the transaction can also
|
|
418
|
+
be submitted by a merchant. > >17 - Elements - The origination of this
|
|
419
|
+
transaction is through the Elements payments page. This can be a
|
|
420
|
+
cardholder submitted or a merchant submitted transaction. > >18 - ACH
|
|
421
|
+
Import - The origination of this transaction is through an ACH file
|
|
422
|
+
import. This is a merchant initiated process. >
|
|
423
|
+
routing_number (str): This field is read only for ach on transactions. Must
|
|
424
|
+
be supplied if account_vault_id is not provided.
|
|
425
|
+
trx_source_code (TrxSourceCodeEnum): How the transaction was obtained by the
|
|
426
|
+
API. >1 - Unknown - The origination of this transaction could not be
|
|
427
|
+
determined. > >2 - Mobile - The origination of this transaction is
|
|
428
|
+
through the mobile application. This is always a merchant submitted
|
|
429
|
+
payment. > >3 - Web - The origination of this transaction is through a
|
|
430
|
+
web browser. This is always a merchant submitted payment. Examples
|
|
431
|
+
include Virtual Terminal, Contact Charge, and Transaction Details - Run
|
|
432
|
+
Again pages. > >4 - IVR Transaction - The origination of this transaction
|
|
433
|
+
is over the phone. This payment is submitted by an automated system
|
|
434
|
+
initiated by the cardholder. > >5 - Contact Statement - The orignation of
|
|
435
|
+
this transaction is through a Vericle statement. > >6 - Contact Payment
|
|
436
|
+
Mobile - The origination of this transaction is through the mobile
|
|
437
|
+
application. This is always submitted by a contact user. > >7 - Contact
|
|
438
|
+
Payment - The origination of this transaction is through a web browser.
|
|
439
|
+
This is always submitted by a contact user. > >8 - Quick Invoice - The
|
|
440
|
+
orignation of this transaction is through a Quick Invoice. This is
|
|
441
|
+
typically submitted by a contact user, however the transaction can also
|
|
442
|
+
be submitted by a merchant. > >9 - Payform - The origination of this
|
|
443
|
+
transaction is through a Payform. This is typically a merchant submitted
|
|
444
|
+
transaction, and is always from an internal developer. > >10 - Hosted
|
|
445
|
+
Payment Page - The orignation of this transaction is through a Hosted
|
|
446
|
+
Payment Page. This is typically a cardholder submitted transaction. > >11
|
|
447
|
+
- Emulator - The origination of this transaction is through Auth.Net
|
|
448
|
+
emulator. This is typically submitted through an integration to a website
|
|
449
|
+
or a shopping cart. > >12 - Integration - The orignation of this
|
|
450
|
+
transaction is through an integrated solution. This will always be from
|
|
451
|
+
an external developer. > >13 - Recurring Billing - The orignation of this
|
|
452
|
+
transaction is through a scheduled recurring payment. This payment is
|
|
453
|
+
system-initiated based on a payment schedule that has been configured. >
|
|
454
|
+
>14 - Recurring Secondary - This feature has not been implented yet. >
|
|
455
|
+
>15 - Declined Recurring Email - The orignation of this transaction is
|
|
456
|
+
through the email notification sent when a recurring payment has been
|
|
457
|
+
declined. This is typically submitted by a cardholder. > >16 - Paylink -
|
|
458
|
+
The orignation of this transaction is through a Paylink. This is
|
|
459
|
+
typically submitted by a contact user, however the transaction can also
|
|
460
|
+
be submitted by a merchant. > >17 - Elements - The origination of this
|
|
461
|
+
transaction is through the Elements payments page. This can be a
|
|
462
|
+
cardholder submitted or a merchant submitted transaction. > >18 - ACH
|
|
463
|
+
Import - The origination of this transaction is through an ACH file
|
|
464
|
+
import. This is a merchant initiated process. >
|
|
465
|
+
paylink_id (str): Paylink Id
|
|
466
|
+
is_accountvault (bool): Is Token Transaction
|
|
467
|
+
created_user_id (str): User ID Created the register
|
|
468
|
+
modified_user_id (str): Last User ID that updated the register
|
|
469
|
+
transaction_code (str): Transaction Code
|
|
470
|
+
effective_date (str): For ACH only, this is optional and defaults to current
|
|
471
|
+
day.
|
|
472
|
+
notification_phone (str): Notification Phone. Country code not included
|
|
473
|
+
cavv_result (str): Cavv Result
|
|
474
|
+
is_token (bool): Is Token Transaction
|
|
475
|
+
account_vault_id (str): Token ID
|
|
476
|
+
hosted_payment_page_id (str): Hosted Payment Page Id
|
|
477
|
+
stan (str): The model property of type str.
|
|
478
|
+
currency (str): Currency
|
|
479
|
+
card_bin (str): Card Bin
|
|
480
|
+
wallet_type (str): This value provides information from where the transaction
|
|
481
|
+
was initialized (Such as In-App provider)
|
|
482
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
483
|
+
model.
|
|
484
|
+
|
|
485
|
+
"""
|
|
486
|
+
|
|
487
|
+
# Create a mapping from Model property names to API property names
|
|
488
|
+
_names = {
|
|
489
|
+
"additional_amounts": "additional_amounts",
|
|
490
|
+
"billing_address": "billing_address",
|
|
491
|
+
"checkin_date": "checkin_date",
|
|
492
|
+
"checkout_date": "checkout_date",
|
|
493
|
+
"clerk_number": "clerk_number",
|
|
494
|
+
"contact_api_id": "contact_api_id",
|
|
495
|
+
"contact_id": "contact_id",
|
|
496
|
+
"custom_data": "custom_data",
|
|
497
|
+
"customer_id": "customer_id",
|
|
498
|
+
"description": "description",
|
|
499
|
+
"identity_verification": "identity_verification",
|
|
500
|
+
"iias_ind": "iias_ind",
|
|
501
|
+
"image_front": "image_front",
|
|
502
|
+
"image_back": "image_back",
|
|
503
|
+
"installment": "installment",
|
|
504
|
+
"installment_number": "installment_number",
|
|
505
|
+
"installment_count": "installment_count",
|
|
506
|
+
"recurring_flag": "recurring_flag",
|
|
507
|
+
"installment_counter": "installment_counter",
|
|
508
|
+
"installment_total": "installment_total",
|
|
509
|
+
"subscription": "subscription",
|
|
510
|
+
"standing_order": "standing_order",
|
|
511
|
+
"location_api_id": "location_api_id",
|
|
512
|
+
"location_id": "location_id",
|
|
513
|
+
"product_transaction_id": "product_transaction_id",
|
|
514
|
+
"advance_deposit": "advance_deposit",
|
|
515
|
+
"no_show": "no_show",
|
|
516
|
+
"notification_email_address": "notification_email_address",
|
|
517
|
+
"order_number": "order_number",
|
|
518
|
+
"po_number": "po_number",
|
|
519
|
+
"quick_invoice_id": "quick_invoice_id",
|
|
520
|
+
"recurring": "recurring",
|
|
521
|
+
"recurring_number": "recurring_number",
|
|
522
|
+
"room_num": "room_num",
|
|
523
|
+
"room_rate": "room_rate",
|
|
524
|
+
"save_account": "save_account",
|
|
525
|
+
"save_account_title": "save_account_title",
|
|
526
|
+
"subtotal_amount": "subtotal_amount",
|
|
527
|
+
"surcharge_amount": "surcharge_amount",
|
|
528
|
+
"tags": "tags",
|
|
529
|
+
"tax": "tax",
|
|
530
|
+
"tip_amount": "tip_amount",
|
|
531
|
+
"transaction_amount": "transaction_amount",
|
|
532
|
+
"secondary_amount": "secondary_amount",
|
|
533
|
+
"transaction_api_id": "transaction_api_id",
|
|
534
|
+
"transaction_c_1": "transaction_c1",
|
|
535
|
+
"transaction_c_2": "transaction_c2",
|
|
536
|
+
"transaction_c_3": "transaction_c3",
|
|
537
|
+
"bank_funded_only_override": "bank_funded_only_override",
|
|
538
|
+
"allow_partial_authorization_override": "allow_partial_authorization_override",
|
|
539
|
+
"auto_decline_cvv_override": "auto_decline_cvv_override",
|
|
540
|
+
"auto_decline_street_override": "auto_decline_street_override",
|
|
541
|
+
"auto_decline_zip_override": "auto_decline_zip_override",
|
|
542
|
+
"ebt_type": "ebt_type",
|
|
543
|
+
"currency_code": "currency_code",
|
|
544
|
+
"id": "id",
|
|
545
|
+
"created_ts": "created_ts",
|
|
546
|
+
"modified_ts": "modified_ts",
|
|
547
|
+
"terminal_id": "terminal_id",
|
|
548
|
+
"account_holder_name": "account_holder_name",
|
|
549
|
+
"account_type": "account_type",
|
|
550
|
+
"token_api_id": "token_api_id",
|
|
551
|
+
"token_id": "token_id",
|
|
552
|
+
"ach_identifier": "ach_identifier",
|
|
553
|
+
"ach_sec_code": "ach_sec_code",
|
|
554
|
+
"auth_amount": "auth_amount",
|
|
555
|
+
"auth_code": "auth_code",
|
|
556
|
+
"avs": "avs",
|
|
557
|
+
"avs_enhanced": "avs_enhanced",
|
|
558
|
+
"cardholder_present": "cardholder_present",
|
|
559
|
+
"card_present": "card_present",
|
|
560
|
+
"check_number": "check_number",
|
|
561
|
+
"customer_ip": "customer_ip",
|
|
562
|
+
"cvv_response": "cvv_response",
|
|
563
|
+
"entry_mode_id": "entry_mode_id",
|
|
564
|
+
"emv_receipt_data": "emv_receipt_data",
|
|
565
|
+
"first_six": "first_six",
|
|
566
|
+
"last_four": "last_four",
|
|
567
|
+
"payment_method": "payment_method",
|
|
568
|
+
"terminal_serial_number": "terminal_serial_number",
|
|
569
|
+
"transaction_settlement_status": "transaction_settlement_status",
|
|
570
|
+
"charge_back_date": "charge_back_date",
|
|
571
|
+
"is_recurring": "is_recurring",
|
|
572
|
+
"notification_email_sent": "notification_email_sent",
|
|
573
|
+
"par": "par",
|
|
574
|
+
"reason_code_id": "reason_code_id",
|
|
575
|
+
"recurring_id": "recurring_id",
|
|
576
|
+
"settle_date": "settle_date",
|
|
577
|
+
"status_code": "status_code",
|
|
578
|
+
"transaction_batch_id": "transaction_batch_id",
|
|
579
|
+
"type_id": "type_id",
|
|
580
|
+
"verbiage": "verbiage",
|
|
581
|
+
"voucher_number": "voucher_number",
|
|
582
|
+
"void_date": "void_date",
|
|
583
|
+
"batch": "batch",
|
|
584
|
+
"terms_agree": "terms_agree",
|
|
585
|
+
"response_message": "response_message",
|
|
586
|
+
"return_date": "return_date",
|
|
587
|
+
"trx_source_id": "trx_source_id",
|
|
588
|
+
"routing_number": "routing_number",
|
|
589
|
+
"trx_source_code": "trx_source_code",
|
|
590
|
+
"paylink_id": "paylink_id",
|
|
591
|
+
"is_accountvault": "is_accountvault",
|
|
592
|
+
"created_user_id": "created_user_id",
|
|
593
|
+
"modified_user_id": "modified_user_id",
|
|
594
|
+
"transaction_code": "transaction_code",
|
|
595
|
+
"effective_date": "effective_date",
|
|
596
|
+
"notification_phone": "notification_phone",
|
|
597
|
+
"cavv_result": "cavv_result",
|
|
598
|
+
"is_token": "is_token",
|
|
599
|
+
"account_vault_id": "account_vault_id",
|
|
600
|
+
"hosted_payment_page_id": "hosted_payment_page_id",
|
|
601
|
+
"stan": "stan",
|
|
602
|
+
"currency": "currency",
|
|
603
|
+
"card_bin": "card_bin",
|
|
604
|
+
"wallet_type": "wallet_type",
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
_optionals = [
|
|
608
|
+
"additional_amounts",
|
|
609
|
+
"billing_address",
|
|
610
|
+
"checkin_date",
|
|
611
|
+
"checkout_date",
|
|
612
|
+
"clerk_number",
|
|
613
|
+
"contact_api_id",
|
|
614
|
+
"contact_id",
|
|
615
|
+
"custom_data",
|
|
616
|
+
"customer_id",
|
|
617
|
+
"description",
|
|
618
|
+
"identity_verification",
|
|
619
|
+
"iias_ind",
|
|
620
|
+
"image_front",
|
|
621
|
+
"image_back",
|
|
622
|
+
"installment",
|
|
623
|
+
"installment_number",
|
|
624
|
+
"installment_count",
|
|
625
|
+
"recurring_flag",
|
|
626
|
+
"installment_counter",
|
|
627
|
+
"installment_total",
|
|
628
|
+
"subscription",
|
|
629
|
+
"standing_order",
|
|
630
|
+
"location_api_id",
|
|
631
|
+
"location_id",
|
|
632
|
+
"product_transaction_id",
|
|
633
|
+
"advance_deposit",
|
|
634
|
+
"no_show",
|
|
635
|
+
"notification_email_address",
|
|
636
|
+
"order_number",
|
|
637
|
+
"po_number",
|
|
638
|
+
"quick_invoice_id",
|
|
639
|
+
"recurring",
|
|
640
|
+
"recurring_number",
|
|
641
|
+
"room_num",
|
|
642
|
+
"room_rate",
|
|
643
|
+
"save_account",
|
|
644
|
+
"save_account_title",
|
|
645
|
+
"subtotal_amount",
|
|
646
|
+
"surcharge_amount",
|
|
647
|
+
"tags",
|
|
648
|
+
"tax",
|
|
649
|
+
"tip_amount",
|
|
650
|
+
"transaction_amount",
|
|
651
|
+
"secondary_amount",
|
|
652
|
+
"transaction_api_id",
|
|
653
|
+
"transaction_c_1",
|
|
654
|
+
"transaction_c_2",
|
|
655
|
+
"transaction_c_3",
|
|
656
|
+
"bank_funded_only_override",
|
|
657
|
+
"allow_partial_authorization_override",
|
|
658
|
+
"auto_decline_cvv_override",
|
|
659
|
+
"auto_decline_street_override",
|
|
660
|
+
"auto_decline_zip_override",
|
|
661
|
+
"ebt_type",
|
|
662
|
+
"currency_code",
|
|
663
|
+
"id",
|
|
664
|
+
"created_ts",
|
|
665
|
+
"modified_ts",
|
|
666
|
+
"terminal_id",
|
|
667
|
+
"account_holder_name",
|
|
668
|
+
"account_type",
|
|
669
|
+
"token_api_id",
|
|
670
|
+
"token_id",
|
|
671
|
+
"ach_identifier",
|
|
672
|
+
"ach_sec_code",
|
|
673
|
+
"auth_amount",
|
|
674
|
+
"auth_code",
|
|
675
|
+
"avs",
|
|
676
|
+
"avs_enhanced",
|
|
677
|
+
"cardholder_present",
|
|
678
|
+
"card_present",
|
|
679
|
+
"check_number",
|
|
680
|
+
"customer_ip",
|
|
681
|
+
"cvv_response",
|
|
682
|
+
"entry_mode_id",
|
|
683
|
+
"emv_receipt_data",
|
|
684
|
+
"first_six",
|
|
685
|
+
"last_four",
|
|
686
|
+
"payment_method",
|
|
687
|
+
"terminal_serial_number",
|
|
688
|
+
"transaction_settlement_status",
|
|
689
|
+
"charge_back_date",
|
|
690
|
+
"is_recurring",
|
|
691
|
+
"notification_email_sent",
|
|
692
|
+
"par",
|
|
693
|
+
"reason_code_id",
|
|
694
|
+
"recurring_id",
|
|
695
|
+
"settle_date",
|
|
696
|
+
"status_code",
|
|
697
|
+
"transaction_batch_id",
|
|
698
|
+
"type_id",
|
|
699
|
+
"verbiage",
|
|
700
|
+
"voucher_number",
|
|
701
|
+
"void_date",
|
|
702
|
+
"batch",
|
|
703
|
+
"terms_agree",
|
|
704
|
+
"response_message",
|
|
705
|
+
"return_date",
|
|
706
|
+
"trx_source_id",
|
|
707
|
+
"routing_number",
|
|
708
|
+
"trx_source_code",
|
|
709
|
+
"paylink_id",
|
|
710
|
+
"is_accountvault",
|
|
711
|
+
"created_user_id",
|
|
712
|
+
"modified_user_id",
|
|
713
|
+
"transaction_code",
|
|
714
|
+
"effective_date",
|
|
715
|
+
"notification_phone",
|
|
716
|
+
"cavv_result",
|
|
717
|
+
"is_token",
|
|
718
|
+
"account_vault_id",
|
|
719
|
+
"hosted_payment_page_id",
|
|
720
|
+
"stan",
|
|
721
|
+
"currency",
|
|
722
|
+
"card_bin",
|
|
723
|
+
"wallet_type",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
_nullables = [
|
|
727
|
+
"checkin_date",
|
|
728
|
+
"checkout_date",
|
|
729
|
+
"clerk_number",
|
|
730
|
+
"contact_api_id",
|
|
731
|
+
"contact_id",
|
|
732
|
+
"customer_id",
|
|
733
|
+
"description",
|
|
734
|
+
"iias_ind",
|
|
735
|
+
"image_front",
|
|
736
|
+
"image_back",
|
|
737
|
+
"installment_number",
|
|
738
|
+
"installment_count",
|
|
739
|
+
"recurring_flag",
|
|
740
|
+
"installment_counter",
|
|
741
|
+
"installment_total",
|
|
742
|
+
"location_api_id",
|
|
743
|
+
"location_id",
|
|
744
|
+
"product_transaction_id",
|
|
745
|
+
"notification_email_address",
|
|
746
|
+
"order_number",
|
|
747
|
+
"po_number",
|
|
748
|
+
"quick_invoice_id",
|
|
749
|
+
"recurring_number",
|
|
750
|
+
"room_num",
|
|
751
|
+
"room_rate",
|
|
752
|
+
"save_account_title",
|
|
753
|
+
"subtotal_amount",
|
|
754
|
+
"surcharge_amount",
|
|
755
|
+
"tags",
|
|
756
|
+
"tax",
|
|
757
|
+
"tip_amount",
|
|
758
|
+
"transaction_amount",
|
|
759
|
+
"secondary_amount",
|
|
760
|
+
"transaction_api_id",
|
|
761
|
+
"transaction_c_1",
|
|
762
|
+
"transaction_c_2",
|
|
763
|
+
"transaction_c_3",
|
|
764
|
+
"ebt_type",
|
|
765
|
+
"terminal_id",
|
|
766
|
+
"account_holder_name",
|
|
767
|
+
"account_type",
|
|
768
|
+
"token_api_id",
|
|
769
|
+
"token_id",
|
|
770
|
+
"ach_identifier",
|
|
771
|
+
"ach_sec_code",
|
|
772
|
+
"auth_amount",
|
|
773
|
+
"auth_code",
|
|
774
|
+
"avs",
|
|
775
|
+
"avs_enhanced",
|
|
776
|
+
"check_number",
|
|
777
|
+
"customer_ip",
|
|
778
|
+
"cvv_response",
|
|
779
|
+
"entry_mode_id",
|
|
780
|
+
"emv_receipt_data",
|
|
781
|
+
"first_six",
|
|
782
|
+
"last_four",
|
|
783
|
+
"terminal_serial_number",
|
|
784
|
+
"transaction_settlement_status",
|
|
785
|
+
"charge_back_date",
|
|
786
|
+
"par",
|
|
787
|
+
"reason_code_id",
|
|
788
|
+
"recurring_id",
|
|
789
|
+
"settle_date",
|
|
790
|
+
"status_code",
|
|
791
|
+
"transaction_batch_id",
|
|
792
|
+
"type_id",
|
|
793
|
+
"verbiage",
|
|
794
|
+
"voucher_number",
|
|
795
|
+
"void_date",
|
|
796
|
+
"batch",
|
|
797
|
+
"response_message",
|
|
798
|
+
"return_date",
|
|
799
|
+
"trx_source_id",
|
|
800
|
+
"routing_number",
|
|
801
|
+
"trx_source_code",
|
|
802
|
+
"paylink_id",
|
|
803
|
+
"created_user_id",
|
|
804
|
+
"transaction_code",
|
|
805
|
+
"effective_date",
|
|
806
|
+
"notification_phone",
|
|
807
|
+
"cavv_result",
|
|
808
|
+
"account_vault_id",
|
|
809
|
+
"stan",
|
|
810
|
+
"currency",
|
|
811
|
+
"card_bin",
|
|
812
|
+
"wallet_type",
|
|
813
|
+
]
|
|
814
|
+
|
|
815
|
+
def __init__(
|
|
816
|
+
self,
|
|
817
|
+
additional_amounts=APIHelper.SKIP,
|
|
818
|
+
billing_address=APIHelper.SKIP,
|
|
819
|
+
checkin_date=APIHelper.SKIP,
|
|
820
|
+
checkout_date=APIHelper.SKIP,
|
|
821
|
+
clerk_number=APIHelper.SKIP,
|
|
822
|
+
contact_api_id=APIHelper.SKIP,
|
|
823
|
+
contact_id=APIHelper.SKIP,
|
|
824
|
+
custom_data=APIHelper.SKIP,
|
|
825
|
+
customer_id=APIHelper.SKIP,
|
|
826
|
+
description=APIHelper.SKIP,
|
|
827
|
+
identity_verification=APIHelper.SKIP,
|
|
828
|
+
iias_ind=APIHelper.SKIP,
|
|
829
|
+
image_front=APIHelper.SKIP,
|
|
830
|
+
image_back=APIHelper.SKIP,
|
|
831
|
+
installment=APIHelper.SKIP,
|
|
832
|
+
installment_number=APIHelper.SKIP,
|
|
833
|
+
installment_count=APIHelper.SKIP,
|
|
834
|
+
recurring_flag=APIHelper.SKIP,
|
|
835
|
+
installment_counter=APIHelper.SKIP,
|
|
836
|
+
installment_total=APIHelper.SKIP,
|
|
837
|
+
subscription=APIHelper.SKIP,
|
|
838
|
+
standing_order=APIHelper.SKIP,
|
|
839
|
+
location_api_id=APIHelper.SKIP,
|
|
840
|
+
location_id=APIHelper.SKIP,
|
|
841
|
+
product_transaction_id=APIHelper.SKIP,
|
|
842
|
+
advance_deposit=APIHelper.SKIP,
|
|
843
|
+
no_show=APIHelper.SKIP,
|
|
844
|
+
notification_email_address=APIHelper.SKIP,
|
|
845
|
+
order_number=APIHelper.SKIP,
|
|
846
|
+
po_number=APIHelper.SKIP,
|
|
847
|
+
quick_invoice_id=APIHelper.SKIP,
|
|
848
|
+
recurring=APIHelper.SKIP,
|
|
849
|
+
recurring_number=APIHelper.SKIP,
|
|
850
|
+
room_num=APIHelper.SKIP,
|
|
851
|
+
room_rate=APIHelper.SKIP,
|
|
852
|
+
save_account=APIHelper.SKIP,
|
|
853
|
+
save_account_title=APIHelper.SKIP,
|
|
854
|
+
subtotal_amount=APIHelper.SKIP,
|
|
855
|
+
surcharge_amount=APIHelper.SKIP,
|
|
856
|
+
tags=APIHelper.SKIP,
|
|
857
|
+
tax=APIHelper.SKIP,
|
|
858
|
+
tip_amount=APIHelper.SKIP,
|
|
859
|
+
transaction_amount=APIHelper.SKIP,
|
|
860
|
+
secondary_amount=APIHelper.SKIP,
|
|
861
|
+
transaction_api_id=APIHelper.SKIP,
|
|
862
|
+
transaction_c_1=APIHelper.SKIP,
|
|
863
|
+
transaction_c_2=APIHelper.SKIP,
|
|
864
|
+
transaction_c_3=APIHelper.SKIP,
|
|
865
|
+
bank_funded_only_override=APIHelper.SKIP,
|
|
866
|
+
allow_partial_authorization_override=APIHelper.SKIP,
|
|
867
|
+
auto_decline_cvv_override=APIHelper.SKIP,
|
|
868
|
+
auto_decline_street_override=APIHelper.SKIP,
|
|
869
|
+
auto_decline_zip_override=APIHelper.SKIP,
|
|
870
|
+
ebt_type=APIHelper.SKIP,
|
|
871
|
+
currency_code=APIHelper.SKIP,
|
|
872
|
+
id=APIHelper.SKIP,
|
|
873
|
+
created_ts=APIHelper.SKIP,
|
|
874
|
+
modified_ts=APIHelper.SKIP,
|
|
875
|
+
terminal_id=APIHelper.SKIP,
|
|
876
|
+
account_holder_name=APIHelper.SKIP,
|
|
877
|
+
account_type=APIHelper.SKIP,
|
|
878
|
+
token_api_id=APIHelper.SKIP,
|
|
879
|
+
token_id=APIHelper.SKIP,
|
|
880
|
+
ach_identifier=APIHelper.SKIP,
|
|
881
|
+
ach_sec_code=APIHelper.SKIP,
|
|
882
|
+
auth_amount=APIHelper.SKIP,
|
|
883
|
+
auth_code=APIHelper.SKIP,
|
|
884
|
+
avs=APIHelper.SKIP,
|
|
885
|
+
avs_enhanced=APIHelper.SKIP,
|
|
886
|
+
cardholder_present=APIHelper.SKIP,
|
|
887
|
+
card_present=APIHelper.SKIP,
|
|
888
|
+
check_number=APIHelper.SKIP,
|
|
889
|
+
customer_ip=APIHelper.SKIP,
|
|
890
|
+
cvv_response=APIHelper.SKIP,
|
|
891
|
+
entry_mode_id=APIHelper.SKIP,
|
|
892
|
+
emv_receipt_data=APIHelper.SKIP,
|
|
893
|
+
first_six=APIHelper.SKIP,
|
|
894
|
+
last_four=APIHelper.SKIP,
|
|
895
|
+
payment_method=APIHelper.SKIP,
|
|
896
|
+
terminal_serial_number=APIHelper.SKIP,
|
|
897
|
+
transaction_settlement_status=APIHelper.SKIP,
|
|
898
|
+
charge_back_date=APIHelper.SKIP,
|
|
899
|
+
is_recurring=APIHelper.SKIP,
|
|
900
|
+
notification_email_sent=APIHelper.SKIP,
|
|
901
|
+
par=APIHelper.SKIP,
|
|
902
|
+
reason_code_id=APIHelper.SKIP,
|
|
903
|
+
recurring_id=APIHelper.SKIP,
|
|
904
|
+
settle_date=APIHelper.SKIP,
|
|
905
|
+
status_code=APIHelper.SKIP,
|
|
906
|
+
transaction_batch_id=APIHelper.SKIP,
|
|
907
|
+
type_id=APIHelper.SKIP,
|
|
908
|
+
verbiage=APIHelper.SKIP,
|
|
909
|
+
voucher_number=APIHelper.SKIP,
|
|
910
|
+
void_date=APIHelper.SKIP,
|
|
911
|
+
batch=APIHelper.SKIP,
|
|
912
|
+
terms_agree=APIHelper.SKIP,
|
|
913
|
+
response_message=APIHelper.SKIP,
|
|
914
|
+
return_date=APIHelper.SKIP,
|
|
915
|
+
trx_source_id=APIHelper.SKIP,
|
|
916
|
+
routing_number=APIHelper.SKIP,
|
|
917
|
+
trx_source_code=APIHelper.SKIP,
|
|
918
|
+
paylink_id=APIHelper.SKIP,
|
|
919
|
+
is_accountvault=APIHelper.SKIP,
|
|
920
|
+
created_user_id=APIHelper.SKIP,
|
|
921
|
+
modified_user_id=APIHelper.SKIP,
|
|
922
|
+
transaction_code=APIHelper.SKIP,
|
|
923
|
+
effective_date=APIHelper.SKIP,
|
|
924
|
+
notification_phone=APIHelper.SKIP,
|
|
925
|
+
cavv_result=APIHelper.SKIP,
|
|
926
|
+
is_token=APIHelper.SKIP,
|
|
927
|
+
account_vault_id=APIHelper.SKIP,
|
|
928
|
+
hosted_payment_page_id=APIHelper.SKIP,
|
|
929
|
+
stan=APIHelper.SKIP,
|
|
930
|
+
currency=APIHelper.SKIP,
|
|
931
|
+
card_bin=APIHelper.SKIP,
|
|
932
|
+
wallet_type=APIHelper.SKIP,
|
|
933
|
+
additional_properties=None):
|
|
934
|
+
"""Initialize a RejectedTransaction instance."""
|
|
935
|
+
# Initialize members of the class
|
|
936
|
+
if additional_amounts is not APIHelper.SKIP:
|
|
937
|
+
self.additional_amounts = additional_amounts
|
|
938
|
+
if billing_address is not APIHelper.SKIP:
|
|
939
|
+
self.billing_address = billing_address
|
|
940
|
+
if checkin_date is not APIHelper.SKIP:
|
|
941
|
+
self.checkin_date = checkin_date
|
|
942
|
+
if checkout_date is not APIHelper.SKIP:
|
|
943
|
+
self.checkout_date = checkout_date
|
|
944
|
+
if clerk_number is not APIHelper.SKIP:
|
|
945
|
+
self.clerk_number = clerk_number
|
|
946
|
+
if contact_api_id is not APIHelper.SKIP:
|
|
947
|
+
self.contact_api_id = contact_api_id
|
|
948
|
+
if contact_id is not APIHelper.SKIP:
|
|
949
|
+
self.contact_id = contact_id
|
|
950
|
+
if custom_data is not APIHelper.SKIP:
|
|
951
|
+
self.custom_data = custom_data
|
|
952
|
+
if customer_id is not APIHelper.SKIP:
|
|
953
|
+
self.customer_id = customer_id
|
|
954
|
+
if description is not APIHelper.SKIP:
|
|
955
|
+
self.description = description
|
|
956
|
+
if identity_verification is not APIHelper.SKIP:
|
|
957
|
+
self.identity_verification = identity_verification
|
|
958
|
+
if iias_ind is not APIHelper.SKIP:
|
|
959
|
+
self.iias_ind = iias_ind
|
|
960
|
+
if image_front is not APIHelper.SKIP:
|
|
961
|
+
self.image_front = image_front
|
|
962
|
+
if image_back is not APIHelper.SKIP:
|
|
963
|
+
self.image_back = image_back
|
|
964
|
+
if installment is not APIHelper.SKIP:
|
|
965
|
+
self.installment = installment
|
|
966
|
+
if installment_number is not APIHelper.SKIP:
|
|
967
|
+
self.installment_number = installment_number
|
|
968
|
+
if installment_count is not APIHelper.SKIP:
|
|
969
|
+
self.installment_count = installment_count
|
|
970
|
+
if recurring_flag is not APIHelper.SKIP:
|
|
971
|
+
self.recurring_flag = recurring_flag
|
|
972
|
+
if installment_counter is not APIHelper.SKIP:
|
|
973
|
+
self.installment_counter = installment_counter
|
|
974
|
+
if installment_total is not APIHelper.SKIP:
|
|
975
|
+
self.installment_total = installment_total
|
|
976
|
+
if subscription is not APIHelper.SKIP:
|
|
977
|
+
self.subscription = subscription
|
|
978
|
+
if standing_order is not APIHelper.SKIP:
|
|
979
|
+
self.standing_order = standing_order
|
|
980
|
+
if location_api_id is not APIHelper.SKIP:
|
|
981
|
+
self.location_api_id = location_api_id
|
|
982
|
+
if location_id is not APIHelper.SKIP:
|
|
983
|
+
self.location_id = location_id
|
|
984
|
+
if product_transaction_id is not APIHelper.SKIP:
|
|
985
|
+
self.product_transaction_id = product_transaction_id
|
|
986
|
+
if advance_deposit is not APIHelper.SKIP:
|
|
987
|
+
self.advance_deposit = advance_deposit
|
|
988
|
+
if no_show is not APIHelper.SKIP:
|
|
989
|
+
self.no_show = no_show
|
|
990
|
+
if notification_email_address is not APIHelper.SKIP:
|
|
991
|
+
self.notification_email_address = notification_email_address
|
|
992
|
+
if order_number is not APIHelper.SKIP:
|
|
993
|
+
self.order_number = order_number
|
|
994
|
+
if po_number is not APIHelper.SKIP:
|
|
995
|
+
self.po_number = po_number
|
|
996
|
+
if quick_invoice_id is not APIHelper.SKIP:
|
|
997
|
+
self.quick_invoice_id = quick_invoice_id
|
|
998
|
+
if recurring is not APIHelper.SKIP:
|
|
999
|
+
self.recurring = recurring
|
|
1000
|
+
if recurring_number is not APIHelper.SKIP:
|
|
1001
|
+
self.recurring_number = recurring_number
|
|
1002
|
+
if room_num is not APIHelper.SKIP:
|
|
1003
|
+
self.room_num = room_num
|
|
1004
|
+
if room_rate is not APIHelper.SKIP:
|
|
1005
|
+
self.room_rate = room_rate
|
|
1006
|
+
if save_account is not APIHelper.SKIP:
|
|
1007
|
+
self.save_account = save_account
|
|
1008
|
+
if save_account_title is not APIHelper.SKIP:
|
|
1009
|
+
self.save_account_title = save_account_title
|
|
1010
|
+
if subtotal_amount is not APIHelper.SKIP:
|
|
1011
|
+
self.subtotal_amount = subtotal_amount
|
|
1012
|
+
if surcharge_amount is not APIHelper.SKIP:
|
|
1013
|
+
self.surcharge_amount = surcharge_amount
|
|
1014
|
+
if tags is not APIHelper.SKIP:
|
|
1015
|
+
self.tags = tags
|
|
1016
|
+
if tax is not APIHelper.SKIP:
|
|
1017
|
+
self.tax = tax
|
|
1018
|
+
if tip_amount is not APIHelper.SKIP:
|
|
1019
|
+
self.tip_amount = tip_amount
|
|
1020
|
+
if transaction_amount is not APIHelper.SKIP:
|
|
1021
|
+
self.transaction_amount = transaction_amount
|
|
1022
|
+
if secondary_amount is not APIHelper.SKIP:
|
|
1023
|
+
self.secondary_amount = secondary_amount
|
|
1024
|
+
if transaction_api_id is not APIHelper.SKIP:
|
|
1025
|
+
self.transaction_api_id = transaction_api_id
|
|
1026
|
+
if transaction_c_1 is not APIHelper.SKIP:
|
|
1027
|
+
self.transaction_c_1 = transaction_c_1
|
|
1028
|
+
if transaction_c_2 is not APIHelper.SKIP:
|
|
1029
|
+
self.transaction_c_2 = transaction_c_2
|
|
1030
|
+
if transaction_c_3 is not APIHelper.SKIP:
|
|
1031
|
+
self.transaction_c_3 = transaction_c_3
|
|
1032
|
+
if bank_funded_only_override is not APIHelper.SKIP:
|
|
1033
|
+
self.bank_funded_only_override = bank_funded_only_override
|
|
1034
|
+
if allow_partial_authorization_override is not APIHelper.SKIP:
|
|
1035
|
+
self.allow_partial_authorization_override =\
|
|
1036
|
+
allow_partial_authorization_override
|
|
1037
|
+
if auto_decline_cvv_override is not APIHelper.SKIP:
|
|
1038
|
+
self.auto_decline_cvv_override = auto_decline_cvv_override
|
|
1039
|
+
if auto_decline_street_override is not APIHelper.SKIP:
|
|
1040
|
+
self.auto_decline_street_override = auto_decline_street_override
|
|
1041
|
+
if auto_decline_zip_override is not APIHelper.SKIP:
|
|
1042
|
+
self.auto_decline_zip_override = auto_decline_zip_override
|
|
1043
|
+
if ebt_type is not APIHelper.SKIP:
|
|
1044
|
+
self.ebt_type = ebt_type
|
|
1045
|
+
if currency_code is not APIHelper.SKIP:
|
|
1046
|
+
self.currency_code = currency_code
|
|
1047
|
+
if id is not APIHelper.SKIP:
|
|
1048
|
+
self.id = id
|
|
1049
|
+
if created_ts is not APIHelper.SKIP:
|
|
1050
|
+
self.created_ts = created_ts
|
|
1051
|
+
if modified_ts is not APIHelper.SKIP:
|
|
1052
|
+
self.modified_ts = modified_ts
|
|
1053
|
+
if terminal_id is not APIHelper.SKIP:
|
|
1054
|
+
self.terminal_id = terminal_id
|
|
1055
|
+
if account_holder_name is not APIHelper.SKIP:
|
|
1056
|
+
self.account_holder_name = account_holder_name
|
|
1057
|
+
if account_type is not APIHelper.SKIP:
|
|
1058
|
+
self.account_type = account_type
|
|
1059
|
+
if token_api_id is not APIHelper.SKIP:
|
|
1060
|
+
self.token_api_id = token_api_id
|
|
1061
|
+
if token_id is not APIHelper.SKIP:
|
|
1062
|
+
self.token_id = token_id
|
|
1063
|
+
if ach_identifier is not APIHelper.SKIP:
|
|
1064
|
+
self.ach_identifier = ach_identifier
|
|
1065
|
+
if ach_sec_code is not APIHelper.SKIP:
|
|
1066
|
+
self.ach_sec_code = ach_sec_code
|
|
1067
|
+
if auth_amount is not APIHelper.SKIP:
|
|
1068
|
+
self.auth_amount = auth_amount
|
|
1069
|
+
if auth_code is not APIHelper.SKIP:
|
|
1070
|
+
self.auth_code = auth_code
|
|
1071
|
+
if avs is not APIHelper.SKIP:
|
|
1072
|
+
self.avs = avs
|
|
1073
|
+
if avs_enhanced is not APIHelper.SKIP:
|
|
1074
|
+
self.avs_enhanced = avs_enhanced
|
|
1075
|
+
if cardholder_present is not APIHelper.SKIP:
|
|
1076
|
+
self.cardholder_present = cardholder_present
|
|
1077
|
+
if card_present is not APIHelper.SKIP:
|
|
1078
|
+
self.card_present = card_present
|
|
1079
|
+
if check_number is not APIHelper.SKIP:
|
|
1080
|
+
self.check_number = check_number
|
|
1081
|
+
if customer_ip is not APIHelper.SKIP:
|
|
1082
|
+
self.customer_ip = customer_ip
|
|
1083
|
+
if cvv_response is not APIHelper.SKIP:
|
|
1084
|
+
self.cvv_response = cvv_response
|
|
1085
|
+
if entry_mode_id is not APIHelper.SKIP:
|
|
1086
|
+
self.entry_mode_id = entry_mode_id
|
|
1087
|
+
if emv_receipt_data is not APIHelper.SKIP:
|
|
1088
|
+
self.emv_receipt_data = emv_receipt_data
|
|
1089
|
+
if first_six is not APIHelper.SKIP:
|
|
1090
|
+
self.first_six = first_six
|
|
1091
|
+
if last_four is not APIHelper.SKIP:
|
|
1092
|
+
self.last_four = last_four
|
|
1093
|
+
if payment_method is not APIHelper.SKIP:
|
|
1094
|
+
self.payment_method = payment_method
|
|
1095
|
+
if terminal_serial_number is not APIHelper.SKIP:
|
|
1096
|
+
self.terminal_serial_number = terminal_serial_number
|
|
1097
|
+
if transaction_settlement_status is not APIHelper.SKIP:
|
|
1098
|
+
self.transaction_settlement_status = transaction_settlement_status
|
|
1099
|
+
if charge_back_date is not APIHelper.SKIP:
|
|
1100
|
+
self.charge_back_date = charge_back_date
|
|
1101
|
+
if is_recurring is not APIHelper.SKIP:
|
|
1102
|
+
self.is_recurring = is_recurring
|
|
1103
|
+
if notification_email_sent is not APIHelper.SKIP:
|
|
1104
|
+
self.notification_email_sent = notification_email_sent
|
|
1105
|
+
if par is not APIHelper.SKIP:
|
|
1106
|
+
self.par = par
|
|
1107
|
+
if reason_code_id is not APIHelper.SKIP:
|
|
1108
|
+
self.reason_code_id = reason_code_id
|
|
1109
|
+
if recurring_id is not APIHelper.SKIP:
|
|
1110
|
+
self.recurring_id = recurring_id
|
|
1111
|
+
if settle_date is not APIHelper.SKIP:
|
|
1112
|
+
self.settle_date = settle_date
|
|
1113
|
+
if status_code is not APIHelper.SKIP:
|
|
1114
|
+
self.status_code = status_code
|
|
1115
|
+
if transaction_batch_id is not APIHelper.SKIP:
|
|
1116
|
+
self.transaction_batch_id = transaction_batch_id
|
|
1117
|
+
if type_id is not APIHelper.SKIP:
|
|
1118
|
+
self.type_id = type_id
|
|
1119
|
+
if verbiage is not APIHelper.SKIP:
|
|
1120
|
+
self.verbiage = verbiage
|
|
1121
|
+
if voucher_number is not APIHelper.SKIP:
|
|
1122
|
+
self.voucher_number = voucher_number
|
|
1123
|
+
if void_date is not APIHelper.SKIP:
|
|
1124
|
+
self.void_date = void_date
|
|
1125
|
+
if batch is not APIHelper.SKIP:
|
|
1126
|
+
self.batch = batch
|
|
1127
|
+
if terms_agree is not APIHelper.SKIP:
|
|
1128
|
+
self.terms_agree = terms_agree
|
|
1129
|
+
if response_message is not APIHelper.SKIP:
|
|
1130
|
+
self.response_message = response_message
|
|
1131
|
+
if return_date is not APIHelper.SKIP:
|
|
1132
|
+
self.return_date = return_date
|
|
1133
|
+
if trx_source_id is not APIHelper.SKIP:
|
|
1134
|
+
self.trx_source_id = trx_source_id
|
|
1135
|
+
if routing_number is not APIHelper.SKIP:
|
|
1136
|
+
self.routing_number = routing_number
|
|
1137
|
+
if trx_source_code is not APIHelper.SKIP:
|
|
1138
|
+
self.trx_source_code = trx_source_code
|
|
1139
|
+
if paylink_id is not APIHelper.SKIP:
|
|
1140
|
+
self.paylink_id = paylink_id
|
|
1141
|
+
if is_accountvault is not APIHelper.SKIP:
|
|
1142
|
+
self.is_accountvault = is_accountvault
|
|
1143
|
+
if created_user_id is not APIHelper.SKIP:
|
|
1144
|
+
self.created_user_id = created_user_id
|
|
1145
|
+
if modified_user_id is not APIHelper.SKIP:
|
|
1146
|
+
self.modified_user_id = modified_user_id
|
|
1147
|
+
if transaction_code is not APIHelper.SKIP:
|
|
1148
|
+
self.transaction_code = transaction_code
|
|
1149
|
+
if effective_date is not APIHelper.SKIP:
|
|
1150
|
+
self.effective_date = effective_date
|
|
1151
|
+
if notification_phone is not APIHelper.SKIP:
|
|
1152
|
+
self.notification_phone = notification_phone
|
|
1153
|
+
if cavv_result is not APIHelper.SKIP:
|
|
1154
|
+
self.cavv_result = cavv_result
|
|
1155
|
+
if is_token is not APIHelper.SKIP:
|
|
1156
|
+
self.is_token = is_token
|
|
1157
|
+
if account_vault_id is not APIHelper.SKIP:
|
|
1158
|
+
self.account_vault_id = account_vault_id
|
|
1159
|
+
if hosted_payment_page_id is not APIHelper.SKIP:
|
|
1160
|
+
self.hosted_payment_page_id = hosted_payment_page_id
|
|
1161
|
+
if stan is not APIHelper.SKIP:
|
|
1162
|
+
self.stan = stan
|
|
1163
|
+
if currency is not APIHelper.SKIP:
|
|
1164
|
+
self.currency = currency
|
|
1165
|
+
if card_bin is not APIHelper.SKIP:
|
|
1166
|
+
self.card_bin = card_bin
|
|
1167
|
+
if wallet_type is not APIHelper.SKIP:
|
|
1168
|
+
self.wallet_type = wallet_type
|
|
1169
|
+
|
|
1170
|
+
# Add additional model properties to the instance
|
|
1171
|
+
if additional_properties is None:
|
|
1172
|
+
additional_properties = {}
|
|
1173
|
+
self.additional_properties = additional_properties
|
|
1174
|
+
|
|
1175
|
+
@classmethod
|
|
1176
|
+
def from_dictionary(cls,
|
|
1177
|
+
dictionary):
|
|
1178
|
+
"""Create an instance of this model from a dictionary
|
|
1179
|
+
|
|
1180
|
+
Args:
|
|
1181
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
1182
|
+
as obtained from the deserialization of the server's response. The
|
|
1183
|
+
keys MUST match property names in the API description.
|
|
1184
|
+
|
|
1185
|
+
Returns:
|
|
1186
|
+
object: An instance of this structure class.
|
|
1187
|
+
|
|
1188
|
+
"""
|
|
1189
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
1190
|
+
return None
|
|
1191
|
+
|
|
1192
|
+
# Extract variables from the dictionary
|
|
1193
|
+
additional_amounts = None
|
|
1194
|
+
if dictionary.get("additional_amounts") is not None:
|
|
1195
|
+
additional_amounts = [
|
|
1196
|
+
AdditionalAmount.from_dictionary(x)
|
|
1197
|
+
for x in dictionary.get("additional_amounts")
|
|
1198
|
+
]
|
|
1199
|
+
else:
|
|
1200
|
+
additional_amounts = APIHelper.SKIP
|
|
1201
|
+
billing_address =\
|
|
1202
|
+
BillingAddress1.from_dictionary(
|
|
1203
|
+
dictionary.get("billing_address"))\
|
|
1204
|
+
if "billing_address" in dictionary.keys()\
|
|
1205
|
+
else APIHelper.SKIP
|
|
1206
|
+
checkin_date =\
|
|
1207
|
+
dictionary.get("checkin_date")\
|
|
1208
|
+
if "checkin_date" in dictionary.keys()\
|
|
1209
|
+
else APIHelper.SKIP
|
|
1210
|
+
checkout_date =\
|
|
1211
|
+
dictionary.get("checkout_date")\
|
|
1212
|
+
if "checkout_date" in dictionary.keys()\
|
|
1213
|
+
else APIHelper.SKIP
|
|
1214
|
+
clerk_number =\
|
|
1215
|
+
dictionary.get("clerk_number")\
|
|
1216
|
+
if "clerk_number" in dictionary.keys()\
|
|
1217
|
+
else APIHelper.SKIP
|
|
1218
|
+
contact_api_id =\
|
|
1219
|
+
dictionary.get("contact_api_id")\
|
|
1220
|
+
if "contact_api_id" in dictionary.keys()\
|
|
1221
|
+
else APIHelper.SKIP
|
|
1222
|
+
contact_id =\
|
|
1223
|
+
dictionary.get("contact_id")\
|
|
1224
|
+
if "contact_id" in dictionary.keys()\
|
|
1225
|
+
else APIHelper.SKIP
|
|
1226
|
+
custom_data =\
|
|
1227
|
+
dictionary.get("custom_data")\
|
|
1228
|
+
if dictionary.get("custom_data")\
|
|
1229
|
+
else APIHelper.SKIP
|
|
1230
|
+
customer_id =\
|
|
1231
|
+
dictionary.get("customer_id")\
|
|
1232
|
+
if "customer_id" in dictionary.keys()\
|
|
1233
|
+
else APIHelper.SKIP
|
|
1234
|
+
description =\
|
|
1235
|
+
dictionary.get("description")\
|
|
1236
|
+
if "description" in dictionary.keys()\
|
|
1237
|
+
else APIHelper.SKIP
|
|
1238
|
+
identity_verification =\
|
|
1239
|
+
IdentityVerification.from_dictionary(
|
|
1240
|
+
dictionary.get("identity_verification"))\
|
|
1241
|
+
if "identity_verification" in dictionary.keys()\
|
|
1242
|
+
else APIHelper.SKIP
|
|
1243
|
+
iias_ind =\
|
|
1244
|
+
dictionary.get("iias_ind")\
|
|
1245
|
+
if "iias_ind" in dictionary.keys()\
|
|
1246
|
+
else APIHelper.SKIP
|
|
1247
|
+
image_front =\
|
|
1248
|
+
dictionary.get("image_front")\
|
|
1249
|
+
if "image_front" in dictionary.keys()\
|
|
1250
|
+
else APIHelper.SKIP
|
|
1251
|
+
image_back =\
|
|
1252
|
+
dictionary.get("image_back")\
|
|
1253
|
+
if "image_back" in dictionary.keys()\
|
|
1254
|
+
else APIHelper.SKIP
|
|
1255
|
+
installment =\
|
|
1256
|
+
dictionary.get("installment")\
|
|
1257
|
+
if "installment" in dictionary.keys()\
|
|
1258
|
+
else APIHelper.SKIP
|
|
1259
|
+
installment_number =\
|
|
1260
|
+
dictionary.get("installment_number")\
|
|
1261
|
+
if "installment_number" in dictionary.keys()\
|
|
1262
|
+
else APIHelper.SKIP
|
|
1263
|
+
installment_count =\
|
|
1264
|
+
dictionary.get("installment_count")\
|
|
1265
|
+
if "installment_count" in dictionary.keys()\
|
|
1266
|
+
else APIHelper.SKIP
|
|
1267
|
+
recurring_flag =\
|
|
1268
|
+
dictionary.get("recurring_flag")\
|
|
1269
|
+
if "recurring_flag" in dictionary.keys()\
|
|
1270
|
+
else APIHelper.SKIP
|
|
1271
|
+
installment_counter =\
|
|
1272
|
+
dictionary.get("installment_counter")\
|
|
1273
|
+
if "installment_counter" in dictionary.keys()\
|
|
1274
|
+
else APIHelper.SKIP
|
|
1275
|
+
installment_total =\
|
|
1276
|
+
dictionary.get("installment_total")\
|
|
1277
|
+
if "installment_total" in dictionary.keys()\
|
|
1278
|
+
else APIHelper.SKIP
|
|
1279
|
+
subscription =\
|
|
1280
|
+
dictionary.get("subscription")\
|
|
1281
|
+
if "subscription" in dictionary.keys()\
|
|
1282
|
+
else APIHelper.SKIP
|
|
1283
|
+
standing_order =\
|
|
1284
|
+
dictionary.get("standing_order")\
|
|
1285
|
+
if "standing_order" in dictionary.keys()\
|
|
1286
|
+
else APIHelper.SKIP
|
|
1287
|
+
location_api_id =\
|
|
1288
|
+
dictionary.get("location_api_id")\
|
|
1289
|
+
if "location_api_id" in dictionary.keys()\
|
|
1290
|
+
else APIHelper.SKIP
|
|
1291
|
+
location_id =\
|
|
1292
|
+
dictionary.get("location_id")\
|
|
1293
|
+
if "location_id" in dictionary.keys()\
|
|
1294
|
+
else APIHelper.SKIP
|
|
1295
|
+
product_transaction_id =\
|
|
1296
|
+
dictionary.get("product_transaction_id")\
|
|
1297
|
+
if "product_transaction_id" in dictionary.keys()\
|
|
1298
|
+
else APIHelper.SKIP
|
|
1299
|
+
advance_deposit =\
|
|
1300
|
+
dictionary.get("advance_deposit")\
|
|
1301
|
+
if "advance_deposit" in dictionary.keys()\
|
|
1302
|
+
else APIHelper.SKIP
|
|
1303
|
+
no_show =\
|
|
1304
|
+
dictionary.get("no_show")\
|
|
1305
|
+
if "no_show" in dictionary.keys()\
|
|
1306
|
+
else APIHelper.SKIP
|
|
1307
|
+
notification_email_address =\
|
|
1308
|
+
dictionary.get("notification_email_address")\
|
|
1309
|
+
if "notification_email_address" in dictionary.keys()\
|
|
1310
|
+
else APIHelper.SKIP
|
|
1311
|
+
order_number =\
|
|
1312
|
+
dictionary.get("order_number")\
|
|
1313
|
+
if "order_number" in dictionary.keys()\
|
|
1314
|
+
else APIHelper.SKIP
|
|
1315
|
+
po_number =\
|
|
1316
|
+
dictionary.get("po_number")\
|
|
1317
|
+
if "po_number" in dictionary.keys()\
|
|
1318
|
+
else APIHelper.SKIP
|
|
1319
|
+
quick_invoice_id =\
|
|
1320
|
+
dictionary.get("quick_invoice_id")\
|
|
1321
|
+
if "quick_invoice_id" in dictionary.keys()\
|
|
1322
|
+
else APIHelper.SKIP
|
|
1323
|
+
recurring =\
|
|
1324
|
+
dictionary.get("recurring")\
|
|
1325
|
+
if "recurring" in dictionary.keys()\
|
|
1326
|
+
else APIHelper.SKIP
|
|
1327
|
+
recurring_number =\
|
|
1328
|
+
dictionary.get("recurring_number")\
|
|
1329
|
+
if "recurring_number" in dictionary.keys()\
|
|
1330
|
+
else APIHelper.SKIP
|
|
1331
|
+
room_num =\
|
|
1332
|
+
dictionary.get("room_num")\
|
|
1333
|
+
if "room_num" in dictionary.keys()\
|
|
1334
|
+
else APIHelper.SKIP
|
|
1335
|
+
room_rate =\
|
|
1336
|
+
dictionary.get("room_rate")\
|
|
1337
|
+
if "room_rate" in dictionary.keys()\
|
|
1338
|
+
else APIHelper.SKIP
|
|
1339
|
+
save_account =\
|
|
1340
|
+
dictionary.get("save_account")\
|
|
1341
|
+
if "save_account" in dictionary.keys()\
|
|
1342
|
+
else APIHelper.SKIP
|
|
1343
|
+
save_account_title =\
|
|
1344
|
+
dictionary.get("save_account_title")\
|
|
1345
|
+
if "save_account_title" in dictionary.keys()\
|
|
1346
|
+
else APIHelper.SKIP
|
|
1347
|
+
subtotal_amount =\
|
|
1348
|
+
dictionary.get("subtotal_amount")\
|
|
1349
|
+
if "subtotal_amount" in dictionary.keys()\
|
|
1350
|
+
else APIHelper.SKIP
|
|
1351
|
+
surcharge_amount =\
|
|
1352
|
+
dictionary.get("surcharge_amount")\
|
|
1353
|
+
if "surcharge_amount" in dictionary.keys()\
|
|
1354
|
+
else APIHelper.SKIP
|
|
1355
|
+
tags =\
|
|
1356
|
+
dictionary.get("tags")\
|
|
1357
|
+
if "tags" in dictionary.keys()\
|
|
1358
|
+
else APIHelper.SKIP
|
|
1359
|
+
tax =\
|
|
1360
|
+
dictionary.get("tax")\
|
|
1361
|
+
if "tax" in dictionary.keys()\
|
|
1362
|
+
else APIHelper.SKIP
|
|
1363
|
+
tip_amount =\
|
|
1364
|
+
dictionary.get("tip_amount")\
|
|
1365
|
+
if "tip_amount" in dictionary.keys()\
|
|
1366
|
+
else APIHelper.SKIP
|
|
1367
|
+
transaction_amount =\
|
|
1368
|
+
dictionary.get("transaction_amount")\
|
|
1369
|
+
if "transaction_amount" in dictionary.keys()\
|
|
1370
|
+
else APIHelper.SKIP
|
|
1371
|
+
secondary_amount =\
|
|
1372
|
+
dictionary.get("secondary_amount")\
|
|
1373
|
+
if "secondary_amount" in dictionary.keys()\
|
|
1374
|
+
else APIHelper.SKIP
|
|
1375
|
+
transaction_api_id =\
|
|
1376
|
+
dictionary.get("transaction_api_id")\
|
|
1377
|
+
if "transaction_api_id" in dictionary.keys()\
|
|
1378
|
+
else APIHelper.SKIP
|
|
1379
|
+
transaction_c_1 =\
|
|
1380
|
+
dictionary.get("transaction_c1")\
|
|
1381
|
+
if "transaction_c1" in dictionary.keys()\
|
|
1382
|
+
else APIHelper.SKIP
|
|
1383
|
+
transaction_c_2 =\
|
|
1384
|
+
dictionary.get("transaction_c2")\
|
|
1385
|
+
if "transaction_c2" in dictionary.keys()\
|
|
1386
|
+
else APIHelper.SKIP
|
|
1387
|
+
transaction_c_3 =\
|
|
1388
|
+
dictionary.get("transaction_c3")\
|
|
1389
|
+
if "transaction_c3" in dictionary.keys()\
|
|
1390
|
+
else APIHelper.SKIP
|
|
1391
|
+
bank_funded_only_override =\
|
|
1392
|
+
dictionary.get("bank_funded_only_override")\
|
|
1393
|
+
if "bank_funded_only_override" in dictionary.keys()\
|
|
1394
|
+
else APIHelper.SKIP
|
|
1395
|
+
allow_partial_authorization_override =\
|
|
1396
|
+
dictionary.get("allow_partial_authorization_override")\
|
|
1397
|
+
if "allow_partial_authorization_override" in dictionary.keys()\
|
|
1398
|
+
else APIHelper.SKIP
|
|
1399
|
+
auto_decline_cvv_override =\
|
|
1400
|
+
dictionary.get("auto_decline_cvv_override")\
|
|
1401
|
+
if "auto_decline_cvv_override" in dictionary.keys()\
|
|
1402
|
+
else APIHelper.SKIP
|
|
1403
|
+
auto_decline_street_override =\
|
|
1404
|
+
dictionary.get("auto_decline_street_override")\
|
|
1405
|
+
if "auto_decline_street_override" in dictionary.keys()\
|
|
1406
|
+
else APIHelper.SKIP
|
|
1407
|
+
auto_decline_zip_override =\
|
|
1408
|
+
dictionary.get("auto_decline_zip_override")\
|
|
1409
|
+
if "auto_decline_zip_override" in dictionary.keys()\
|
|
1410
|
+
else APIHelper.SKIP
|
|
1411
|
+
ebt_type =\
|
|
1412
|
+
dictionary.get("ebt_type")\
|
|
1413
|
+
if "ebt_type" in dictionary.keys()\
|
|
1414
|
+
else APIHelper.SKIP
|
|
1415
|
+
currency_code =\
|
|
1416
|
+
dictionary.get("currency_code")\
|
|
1417
|
+
if dictionary.get("currency_code")\
|
|
1418
|
+
else APIHelper.SKIP
|
|
1419
|
+
id =\
|
|
1420
|
+
dictionary.get("id")\
|
|
1421
|
+
if dictionary.get("id")\
|
|
1422
|
+
else APIHelper.SKIP
|
|
1423
|
+
created_ts =\
|
|
1424
|
+
dictionary.get("created_ts")\
|
|
1425
|
+
if dictionary.get("created_ts")\
|
|
1426
|
+
else APIHelper.SKIP
|
|
1427
|
+
modified_ts =\
|
|
1428
|
+
dictionary.get("modified_ts")\
|
|
1429
|
+
if dictionary.get("modified_ts")\
|
|
1430
|
+
else APIHelper.SKIP
|
|
1431
|
+
terminal_id =\
|
|
1432
|
+
dictionary.get("terminal_id")\
|
|
1433
|
+
if "terminal_id" in dictionary.keys()\
|
|
1434
|
+
else APIHelper.SKIP
|
|
1435
|
+
account_holder_name =\
|
|
1436
|
+
dictionary.get("account_holder_name")\
|
|
1437
|
+
if "account_holder_name" in dictionary.keys()\
|
|
1438
|
+
else APIHelper.SKIP
|
|
1439
|
+
account_type =\
|
|
1440
|
+
dictionary.get("account_type")\
|
|
1441
|
+
if "account_type" in dictionary.keys()\
|
|
1442
|
+
else APIHelper.SKIP
|
|
1443
|
+
token_api_id =\
|
|
1444
|
+
dictionary.get("token_api_id")\
|
|
1445
|
+
if "token_api_id" in dictionary.keys()\
|
|
1446
|
+
else APIHelper.SKIP
|
|
1447
|
+
token_id =\
|
|
1448
|
+
dictionary.get("token_id")\
|
|
1449
|
+
if "token_id" in dictionary.keys()\
|
|
1450
|
+
else APIHelper.SKIP
|
|
1451
|
+
ach_identifier =\
|
|
1452
|
+
dictionary.get("ach_identifier")\
|
|
1453
|
+
if "ach_identifier" in dictionary.keys()\
|
|
1454
|
+
else APIHelper.SKIP
|
|
1455
|
+
ach_sec_code =\
|
|
1456
|
+
dictionary.get("ach_sec_code")\
|
|
1457
|
+
if "ach_sec_code" in dictionary.keys()\
|
|
1458
|
+
else APIHelper.SKIP
|
|
1459
|
+
auth_amount =\
|
|
1460
|
+
dictionary.get("auth_amount")\
|
|
1461
|
+
if "auth_amount" in dictionary.keys()\
|
|
1462
|
+
else APIHelper.SKIP
|
|
1463
|
+
auth_code =\
|
|
1464
|
+
dictionary.get("auth_code")\
|
|
1465
|
+
if "auth_code" in dictionary.keys()\
|
|
1466
|
+
else APIHelper.SKIP
|
|
1467
|
+
avs =\
|
|
1468
|
+
dictionary.get("avs")\
|
|
1469
|
+
if "avs" in dictionary.keys()\
|
|
1470
|
+
else APIHelper.SKIP
|
|
1471
|
+
avs_enhanced =\
|
|
1472
|
+
dictionary.get("avs_enhanced")\
|
|
1473
|
+
if "avs_enhanced" in dictionary.keys()\
|
|
1474
|
+
else APIHelper.SKIP
|
|
1475
|
+
cardholder_present =\
|
|
1476
|
+
dictionary.get("cardholder_present")\
|
|
1477
|
+
if "cardholder_present" in dictionary.keys()\
|
|
1478
|
+
else APIHelper.SKIP
|
|
1479
|
+
card_present =\
|
|
1480
|
+
dictionary.get("card_present")\
|
|
1481
|
+
if "card_present" in dictionary.keys()\
|
|
1482
|
+
else APIHelper.SKIP
|
|
1483
|
+
check_number =\
|
|
1484
|
+
dictionary.get("check_number")\
|
|
1485
|
+
if "check_number" in dictionary.keys()\
|
|
1486
|
+
else APIHelper.SKIP
|
|
1487
|
+
customer_ip =\
|
|
1488
|
+
dictionary.get("customer_ip")\
|
|
1489
|
+
if "customer_ip" in dictionary.keys()\
|
|
1490
|
+
else APIHelper.SKIP
|
|
1491
|
+
cvv_response =\
|
|
1492
|
+
dictionary.get("cvv_response")\
|
|
1493
|
+
if "cvv_response" in dictionary.keys()\
|
|
1494
|
+
else APIHelper.SKIP
|
|
1495
|
+
entry_mode_id =\
|
|
1496
|
+
dictionary.get("entry_mode_id")\
|
|
1497
|
+
if "entry_mode_id" in dictionary.keys()\
|
|
1498
|
+
else APIHelper.SKIP
|
|
1499
|
+
if "emv_receipt_data" in dictionary.keys():
|
|
1500
|
+
emv_receipt_data =\
|
|
1501
|
+
EmvReceiptData.from_dictionary(
|
|
1502
|
+
dictionary.get("emv_receipt_data"))\
|
|
1503
|
+
if dictionary.get("emv_receipt_data") else None
|
|
1504
|
+
else:
|
|
1505
|
+
emv_receipt_data = APIHelper.SKIP
|
|
1506
|
+
first_six =\
|
|
1507
|
+
dictionary.get("first_six")\
|
|
1508
|
+
if "first_six" in dictionary.keys()\
|
|
1509
|
+
else APIHelper.SKIP
|
|
1510
|
+
last_four =\
|
|
1511
|
+
dictionary.get("last_four")\
|
|
1512
|
+
if "last_four" in dictionary.keys()\
|
|
1513
|
+
else APIHelper.SKIP
|
|
1514
|
+
payment_method =\
|
|
1515
|
+
dictionary.get("payment_method")\
|
|
1516
|
+
if dictionary.get("payment_method")\
|
|
1517
|
+
else APIHelper.SKIP
|
|
1518
|
+
terminal_serial_number =\
|
|
1519
|
+
dictionary.get("terminal_serial_number")\
|
|
1520
|
+
if "terminal_serial_number" in dictionary.keys()\
|
|
1521
|
+
else APIHelper.SKIP
|
|
1522
|
+
transaction_settlement_status =\
|
|
1523
|
+
dictionary.get("transaction_settlement_status")\
|
|
1524
|
+
if "transaction_settlement_status" in dictionary.keys()\
|
|
1525
|
+
else APIHelper.SKIP
|
|
1526
|
+
charge_back_date =\
|
|
1527
|
+
dictionary.get("charge_back_date")\
|
|
1528
|
+
if "charge_back_date" in dictionary.keys()\
|
|
1529
|
+
else APIHelper.SKIP
|
|
1530
|
+
is_recurring =\
|
|
1531
|
+
dictionary.get("is_recurring")\
|
|
1532
|
+
if "is_recurring" in dictionary.keys()\
|
|
1533
|
+
else APIHelper.SKIP
|
|
1534
|
+
notification_email_sent =\
|
|
1535
|
+
dictionary.get("notification_email_sent")\
|
|
1536
|
+
if "notification_email_sent" in dictionary.keys()\
|
|
1537
|
+
else APIHelper.SKIP
|
|
1538
|
+
par =\
|
|
1539
|
+
dictionary.get("par")\
|
|
1540
|
+
if "par" in dictionary.keys()\
|
|
1541
|
+
else APIHelper.SKIP
|
|
1542
|
+
reason_code_id =\
|
|
1543
|
+
dictionary.get("reason_code_id")\
|
|
1544
|
+
if "reason_code_id" in dictionary.keys()\
|
|
1545
|
+
else APIHelper.SKIP
|
|
1546
|
+
recurring_id =\
|
|
1547
|
+
dictionary.get("recurring_id")\
|
|
1548
|
+
if "recurring_id" in dictionary.keys()\
|
|
1549
|
+
else APIHelper.SKIP
|
|
1550
|
+
settle_date =\
|
|
1551
|
+
dictionary.get("settle_date")\
|
|
1552
|
+
if "settle_date" in dictionary.keys()\
|
|
1553
|
+
else APIHelper.SKIP
|
|
1554
|
+
status_code =\
|
|
1555
|
+
dictionary.get("status_code")\
|
|
1556
|
+
if "status_code" in dictionary.keys()\
|
|
1557
|
+
else APIHelper.SKIP
|
|
1558
|
+
transaction_batch_id =\
|
|
1559
|
+
dictionary.get("transaction_batch_id")\
|
|
1560
|
+
if "transaction_batch_id" in dictionary.keys()\
|
|
1561
|
+
else APIHelper.SKIP
|
|
1562
|
+
type_id =\
|
|
1563
|
+
dictionary.get("type_id")\
|
|
1564
|
+
if "type_id" in dictionary.keys()\
|
|
1565
|
+
else APIHelper.SKIP
|
|
1566
|
+
verbiage =\
|
|
1567
|
+
dictionary.get("verbiage")\
|
|
1568
|
+
if "verbiage" in dictionary.keys()\
|
|
1569
|
+
else APIHelper.SKIP
|
|
1570
|
+
voucher_number =\
|
|
1571
|
+
dictionary.get("voucher_number")\
|
|
1572
|
+
if "voucher_number" in dictionary.keys()\
|
|
1573
|
+
else APIHelper.SKIP
|
|
1574
|
+
void_date =\
|
|
1575
|
+
dictionary.get("void_date")\
|
|
1576
|
+
if "void_date" in dictionary.keys()\
|
|
1577
|
+
else APIHelper.SKIP
|
|
1578
|
+
batch =\
|
|
1579
|
+
dictionary.get("batch")\
|
|
1580
|
+
if "batch" in dictionary.keys()\
|
|
1581
|
+
else APIHelper.SKIP
|
|
1582
|
+
terms_agree =\
|
|
1583
|
+
dictionary.get("terms_agree")\
|
|
1584
|
+
if "terms_agree" in dictionary.keys()\
|
|
1585
|
+
else APIHelper.SKIP
|
|
1586
|
+
response_message =\
|
|
1587
|
+
dictionary.get("response_message")\
|
|
1588
|
+
if "response_message" in dictionary.keys()\
|
|
1589
|
+
else APIHelper.SKIP
|
|
1590
|
+
return_date =\
|
|
1591
|
+
dictionary.get("return_date")\
|
|
1592
|
+
if "return_date" in dictionary.keys()\
|
|
1593
|
+
else APIHelper.SKIP
|
|
1594
|
+
trx_source_id =\
|
|
1595
|
+
dictionary.get("trx_source_id")\
|
|
1596
|
+
if "trx_source_id" in dictionary.keys()\
|
|
1597
|
+
else APIHelper.SKIP
|
|
1598
|
+
routing_number =\
|
|
1599
|
+
dictionary.get("routing_number")\
|
|
1600
|
+
if "routing_number" in dictionary.keys()\
|
|
1601
|
+
else APIHelper.SKIP
|
|
1602
|
+
trx_source_code =\
|
|
1603
|
+
dictionary.get("trx_source_code")\
|
|
1604
|
+
if "trx_source_code" in dictionary.keys()\
|
|
1605
|
+
else APIHelper.SKIP
|
|
1606
|
+
paylink_id =\
|
|
1607
|
+
dictionary.get("paylink_id")\
|
|
1608
|
+
if "paylink_id" in dictionary.keys()\
|
|
1609
|
+
else APIHelper.SKIP
|
|
1610
|
+
is_accountvault =\
|
|
1611
|
+
dictionary.get("is_accountvault")\
|
|
1612
|
+
if "is_accountvault" in dictionary.keys()\
|
|
1613
|
+
else APIHelper.SKIP
|
|
1614
|
+
created_user_id =\
|
|
1615
|
+
dictionary.get("created_user_id")\
|
|
1616
|
+
if "created_user_id" in dictionary.keys()\
|
|
1617
|
+
else APIHelper.SKIP
|
|
1618
|
+
modified_user_id =\
|
|
1619
|
+
dictionary.get("modified_user_id")\
|
|
1620
|
+
if dictionary.get("modified_user_id")\
|
|
1621
|
+
else APIHelper.SKIP
|
|
1622
|
+
transaction_code =\
|
|
1623
|
+
dictionary.get("transaction_code")\
|
|
1624
|
+
if "transaction_code" in dictionary.keys()\
|
|
1625
|
+
else APIHelper.SKIP
|
|
1626
|
+
effective_date =\
|
|
1627
|
+
dictionary.get("effective_date")\
|
|
1628
|
+
if "effective_date" in dictionary.keys()\
|
|
1629
|
+
else APIHelper.SKIP
|
|
1630
|
+
notification_phone =\
|
|
1631
|
+
dictionary.get("notification_phone")\
|
|
1632
|
+
if "notification_phone" in dictionary.keys()\
|
|
1633
|
+
else APIHelper.SKIP
|
|
1634
|
+
cavv_result =\
|
|
1635
|
+
dictionary.get("cavv_result")\
|
|
1636
|
+
if "cavv_result" in dictionary.keys()\
|
|
1637
|
+
else APIHelper.SKIP
|
|
1638
|
+
is_token =\
|
|
1639
|
+
dictionary.get("is_token")\
|
|
1640
|
+
if "is_token" in dictionary.keys()\
|
|
1641
|
+
else APIHelper.SKIP
|
|
1642
|
+
account_vault_id =\
|
|
1643
|
+
dictionary.get("account_vault_id")\
|
|
1644
|
+
if "account_vault_id" in dictionary.keys()\
|
|
1645
|
+
else APIHelper.SKIP
|
|
1646
|
+
hosted_payment_page_id =\
|
|
1647
|
+
dictionary.get("hosted_payment_page_id")\
|
|
1648
|
+
if dictionary.get("hosted_payment_page_id")\
|
|
1649
|
+
else APIHelper.SKIP
|
|
1650
|
+
stan =\
|
|
1651
|
+
dictionary.get("stan")\
|
|
1652
|
+
if "stan" in dictionary.keys()\
|
|
1653
|
+
else APIHelper.SKIP
|
|
1654
|
+
currency =\
|
|
1655
|
+
dictionary.get("currency")\
|
|
1656
|
+
if "currency" in dictionary.keys()\
|
|
1657
|
+
else APIHelper.SKIP
|
|
1658
|
+
card_bin =\
|
|
1659
|
+
dictionary.get("card_bin")\
|
|
1660
|
+
if "card_bin" in dictionary.keys()\
|
|
1661
|
+
else APIHelper.SKIP
|
|
1662
|
+
wallet_type =\
|
|
1663
|
+
dictionary.get("wallet_type")\
|
|
1664
|
+
if "wallet_type" in dictionary.keys()\
|
|
1665
|
+
else APIHelper.SKIP
|
|
1666
|
+
|
|
1667
|
+
# Clean out expected properties from dictionary
|
|
1668
|
+
additional_properties =\
|
|
1669
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
1670
|
+
|
|
1671
|
+
# Return an object of this model
|
|
1672
|
+
return cls(additional_amounts,
|
|
1673
|
+
billing_address,
|
|
1674
|
+
checkin_date,
|
|
1675
|
+
checkout_date,
|
|
1676
|
+
clerk_number,
|
|
1677
|
+
contact_api_id,
|
|
1678
|
+
contact_id,
|
|
1679
|
+
custom_data,
|
|
1680
|
+
customer_id,
|
|
1681
|
+
description,
|
|
1682
|
+
identity_verification,
|
|
1683
|
+
iias_ind,
|
|
1684
|
+
image_front,
|
|
1685
|
+
image_back,
|
|
1686
|
+
installment,
|
|
1687
|
+
installment_number,
|
|
1688
|
+
installment_count,
|
|
1689
|
+
recurring_flag,
|
|
1690
|
+
installment_counter,
|
|
1691
|
+
installment_total,
|
|
1692
|
+
subscription,
|
|
1693
|
+
standing_order,
|
|
1694
|
+
location_api_id,
|
|
1695
|
+
location_id,
|
|
1696
|
+
product_transaction_id,
|
|
1697
|
+
advance_deposit,
|
|
1698
|
+
no_show,
|
|
1699
|
+
notification_email_address,
|
|
1700
|
+
order_number,
|
|
1701
|
+
po_number,
|
|
1702
|
+
quick_invoice_id,
|
|
1703
|
+
recurring,
|
|
1704
|
+
recurring_number,
|
|
1705
|
+
room_num,
|
|
1706
|
+
room_rate,
|
|
1707
|
+
save_account,
|
|
1708
|
+
save_account_title,
|
|
1709
|
+
subtotal_amount,
|
|
1710
|
+
surcharge_amount,
|
|
1711
|
+
tags,
|
|
1712
|
+
tax,
|
|
1713
|
+
tip_amount,
|
|
1714
|
+
transaction_amount,
|
|
1715
|
+
secondary_amount,
|
|
1716
|
+
transaction_api_id,
|
|
1717
|
+
transaction_c_1,
|
|
1718
|
+
transaction_c_2,
|
|
1719
|
+
transaction_c_3,
|
|
1720
|
+
bank_funded_only_override,
|
|
1721
|
+
allow_partial_authorization_override,
|
|
1722
|
+
auto_decline_cvv_override,
|
|
1723
|
+
auto_decline_street_override,
|
|
1724
|
+
auto_decline_zip_override,
|
|
1725
|
+
ebt_type,
|
|
1726
|
+
currency_code,
|
|
1727
|
+
id,
|
|
1728
|
+
created_ts,
|
|
1729
|
+
modified_ts,
|
|
1730
|
+
terminal_id,
|
|
1731
|
+
account_holder_name,
|
|
1732
|
+
account_type,
|
|
1733
|
+
token_api_id,
|
|
1734
|
+
token_id,
|
|
1735
|
+
ach_identifier,
|
|
1736
|
+
ach_sec_code,
|
|
1737
|
+
auth_amount,
|
|
1738
|
+
auth_code,
|
|
1739
|
+
avs,
|
|
1740
|
+
avs_enhanced,
|
|
1741
|
+
cardholder_present,
|
|
1742
|
+
card_present,
|
|
1743
|
+
check_number,
|
|
1744
|
+
customer_ip,
|
|
1745
|
+
cvv_response,
|
|
1746
|
+
entry_mode_id,
|
|
1747
|
+
emv_receipt_data,
|
|
1748
|
+
first_six,
|
|
1749
|
+
last_four,
|
|
1750
|
+
payment_method,
|
|
1751
|
+
terminal_serial_number,
|
|
1752
|
+
transaction_settlement_status,
|
|
1753
|
+
charge_back_date,
|
|
1754
|
+
is_recurring,
|
|
1755
|
+
notification_email_sent,
|
|
1756
|
+
par,
|
|
1757
|
+
reason_code_id,
|
|
1758
|
+
recurring_id,
|
|
1759
|
+
settle_date,
|
|
1760
|
+
status_code,
|
|
1761
|
+
transaction_batch_id,
|
|
1762
|
+
type_id,
|
|
1763
|
+
verbiage,
|
|
1764
|
+
voucher_number,
|
|
1765
|
+
void_date,
|
|
1766
|
+
batch,
|
|
1767
|
+
terms_agree,
|
|
1768
|
+
response_message,
|
|
1769
|
+
return_date,
|
|
1770
|
+
trx_source_id,
|
|
1771
|
+
routing_number,
|
|
1772
|
+
trx_source_code,
|
|
1773
|
+
paylink_id,
|
|
1774
|
+
is_accountvault,
|
|
1775
|
+
created_user_id,
|
|
1776
|
+
modified_user_id,
|
|
1777
|
+
transaction_code,
|
|
1778
|
+
effective_date,
|
|
1779
|
+
notification_phone,
|
|
1780
|
+
cavv_result,
|
|
1781
|
+
is_token,
|
|
1782
|
+
account_vault_id,
|
|
1783
|
+
hosted_payment_page_id,
|
|
1784
|
+
stan,
|
|
1785
|
+
currency,
|
|
1786
|
+
card_bin,
|
|
1787
|
+
wallet_type,
|
|
1788
|
+
additional_properties)
|
|
1789
|
+
|
|
1790
|
+
def __repr__(self):
|
|
1791
|
+
"""Return a unambiguous string representation."""
|
|
1792
|
+
_additional_amounts=(
|
|
1793
|
+
self.additional_amounts
|
|
1794
|
+
if hasattr(self, "additional_amounts")
|
|
1795
|
+
else None
|
|
1796
|
+
)
|
|
1797
|
+
_billing_address=(
|
|
1798
|
+
self.billing_address
|
|
1799
|
+
if hasattr(self, "billing_address")
|
|
1800
|
+
else None
|
|
1801
|
+
)
|
|
1802
|
+
_checkin_date=(
|
|
1803
|
+
self.checkin_date
|
|
1804
|
+
if hasattr(self, "checkin_date")
|
|
1805
|
+
else None
|
|
1806
|
+
)
|
|
1807
|
+
_checkout_date=(
|
|
1808
|
+
self.checkout_date
|
|
1809
|
+
if hasattr(self, "checkout_date")
|
|
1810
|
+
else None
|
|
1811
|
+
)
|
|
1812
|
+
_clerk_number=(
|
|
1813
|
+
self.clerk_number
|
|
1814
|
+
if hasattr(self, "clerk_number")
|
|
1815
|
+
else None
|
|
1816
|
+
)
|
|
1817
|
+
_contact_api_id=(
|
|
1818
|
+
self.contact_api_id
|
|
1819
|
+
if hasattr(self, "contact_api_id")
|
|
1820
|
+
else None
|
|
1821
|
+
)
|
|
1822
|
+
_contact_id=(
|
|
1823
|
+
self.contact_id
|
|
1824
|
+
if hasattr(self, "contact_id")
|
|
1825
|
+
else None
|
|
1826
|
+
)
|
|
1827
|
+
_custom_data=(
|
|
1828
|
+
self.custom_data
|
|
1829
|
+
if hasattr(self, "custom_data")
|
|
1830
|
+
else None
|
|
1831
|
+
)
|
|
1832
|
+
_customer_id=(
|
|
1833
|
+
self.customer_id
|
|
1834
|
+
if hasattr(self, "customer_id")
|
|
1835
|
+
else None
|
|
1836
|
+
)
|
|
1837
|
+
_description=(
|
|
1838
|
+
self.description
|
|
1839
|
+
if hasattr(self, "description")
|
|
1840
|
+
else None
|
|
1841
|
+
)
|
|
1842
|
+
_identity_verification=(
|
|
1843
|
+
self.identity_verification
|
|
1844
|
+
if hasattr(self, "identity_verification")
|
|
1845
|
+
else None
|
|
1846
|
+
)
|
|
1847
|
+
_iias_ind=(
|
|
1848
|
+
self.iias_ind
|
|
1849
|
+
if hasattr(self, "iias_ind")
|
|
1850
|
+
else None
|
|
1851
|
+
)
|
|
1852
|
+
_image_front=(
|
|
1853
|
+
self.image_front
|
|
1854
|
+
if hasattr(self, "image_front")
|
|
1855
|
+
else None
|
|
1856
|
+
)
|
|
1857
|
+
_image_back=(
|
|
1858
|
+
self.image_back
|
|
1859
|
+
if hasattr(self, "image_back")
|
|
1860
|
+
else None
|
|
1861
|
+
)
|
|
1862
|
+
_installment=(
|
|
1863
|
+
self.installment
|
|
1864
|
+
if hasattr(self, "installment")
|
|
1865
|
+
else None
|
|
1866
|
+
)
|
|
1867
|
+
_installment_number=(
|
|
1868
|
+
self.installment_number
|
|
1869
|
+
if hasattr(self, "installment_number")
|
|
1870
|
+
else None
|
|
1871
|
+
)
|
|
1872
|
+
_installment_count=(
|
|
1873
|
+
self.installment_count
|
|
1874
|
+
if hasattr(self, "installment_count")
|
|
1875
|
+
else None
|
|
1876
|
+
)
|
|
1877
|
+
_recurring_flag=(
|
|
1878
|
+
self.recurring_flag
|
|
1879
|
+
if hasattr(self, "recurring_flag")
|
|
1880
|
+
else None
|
|
1881
|
+
)
|
|
1882
|
+
_installment_counter=(
|
|
1883
|
+
self.installment_counter
|
|
1884
|
+
if hasattr(self, "installment_counter")
|
|
1885
|
+
else None
|
|
1886
|
+
)
|
|
1887
|
+
_installment_total=(
|
|
1888
|
+
self.installment_total
|
|
1889
|
+
if hasattr(self, "installment_total")
|
|
1890
|
+
else None
|
|
1891
|
+
)
|
|
1892
|
+
_subscription=(
|
|
1893
|
+
self.subscription
|
|
1894
|
+
if hasattr(self, "subscription")
|
|
1895
|
+
else None
|
|
1896
|
+
)
|
|
1897
|
+
_standing_order=(
|
|
1898
|
+
self.standing_order
|
|
1899
|
+
if hasattr(self, "standing_order")
|
|
1900
|
+
else None
|
|
1901
|
+
)
|
|
1902
|
+
_location_api_id=(
|
|
1903
|
+
self.location_api_id
|
|
1904
|
+
if hasattr(self, "location_api_id")
|
|
1905
|
+
else None
|
|
1906
|
+
)
|
|
1907
|
+
_location_id=(
|
|
1908
|
+
self.location_id
|
|
1909
|
+
if hasattr(self, "location_id")
|
|
1910
|
+
else None
|
|
1911
|
+
)
|
|
1912
|
+
_product_transaction_id=(
|
|
1913
|
+
self.product_transaction_id
|
|
1914
|
+
if hasattr(self, "product_transaction_id")
|
|
1915
|
+
else None
|
|
1916
|
+
)
|
|
1917
|
+
_advance_deposit=(
|
|
1918
|
+
self.advance_deposit
|
|
1919
|
+
if hasattr(self, "advance_deposit")
|
|
1920
|
+
else None
|
|
1921
|
+
)
|
|
1922
|
+
_no_show=(
|
|
1923
|
+
self.no_show
|
|
1924
|
+
if hasattr(self, "no_show")
|
|
1925
|
+
else None
|
|
1926
|
+
)
|
|
1927
|
+
_notification_email_address=(
|
|
1928
|
+
self.notification_email_address
|
|
1929
|
+
if hasattr(self, "notification_email_address")
|
|
1930
|
+
else None
|
|
1931
|
+
)
|
|
1932
|
+
_order_number=(
|
|
1933
|
+
self.order_number
|
|
1934
|
+
if hasattr(self, "order_number")
|
|
1935
|
+
else None
|
|
1936
|
+
)
|
|
1937
|
+
_po_number=(
|
|
1938
|
+
self.po_number
|
|
1939
|
+
if hasattr(self, "po_number")
|
|
1940
|
+
else None
|
|
1941
|
+
)
|
|
1942
|
+
_quick_invoice_id=(
|
|
1943
|
+
self.quick_invoice_id
|
|
1944
|
+
if hasattr(self, "quick_invoice_id")
|
|
1945
|
+
else None
|
|
1946
|
+
)
|
|
1947
|
+
_recurring=(
|
|
1948
|
+
self.recurring
|
|
1949
|
+
if hasattr(self, "recurring")
|
|
1950
|
+
else None
|
|
1951
|
+
)
|
|
1952
|
+
_recurring_number=(
|
|
1953
|
+
self.recurring_number
|
|
1954
|
+
if hasattr(self, "recurring_number")
|
|
1955
|
+
else None
|
|
1956
|
+
)
|
|
1957
|
+
_room_num=(
|
|
1958
|
+
self.room_num
|
|
1959
|
+
if hasattr(self, "room_num")
|
|
1960
|
+
else None
|
|
1961
|
+
)
|
|
1962
|
+
_room_rate=(
|
|
1963
|
+
self.room_rate
|
|
1964
|
+
if hasattr(self, "room_rate")
|
|
1965
|
+
else None
|
|
1966
|
+
)
|
|
1967
|
+
_save_account=(
|
|
1968
|
+
self.save_account
|
|
1969
|
+
if hasattr(self, "save_account")
|
|
1970
|
+
else None
|
|
1971
|
+
)
|
|
1972
|
+
_save_account_title=(
|
|
1973
|
+
self.save_account_title
|
|
1974
|
+
if hasattr(self, "save_account_title")
|
|
1975
|
+
else None
|
|
1976
|
+
)
|
|
1977
|
+
_subtotal_amount=(
|
|
1978
|
+
self.subtotal_amount
|
|
1979
|
+
if hasattr(self, "subtotal_amount")
|
|
1980
|
+
else None
|
|
1981
|
+
)
|
|
1982
|
+
_surcharge_amount=(
|
|
1983
|
+
self.surcharge_amount
|
|
1984
|
+
if hasattr(self, "surcharge_amount")
|
|
1985
|
+
else None
|
|
1986
|
+
)
|
|
1987
|
+
_tags=(
|
|
1988
|
+
self.tags
|
|
1989
|
+
if hasattr(self, "tags")
|
|
1990
|
+
else None
|
|
1991
|
+
)
|
|
1992
|
+
_tax=(
|
|
1993
|
+
self.tax
|
|
1994
|
+
if hasattr(self, "tax")
|
|
1995
|
+
else None
|
|
1996
|
+
)
|
|
1997
|
+
_tip_amount=(
|
|
1998
|
+
self.tip_amount
|
|
1999
|
+
if hasattr(self, "tip_amount")
|
|
2000
|
+
else None
|
|
2001
|
+
)
|
|
2002
|
+
_transaction_amount=(
|
|
2003
|
+
self.transaction_amount
|
|
2004
|
+
if hasattr(self, "transaction_amount")
|
|
2005
|
+
else None
|
|
2006
|
+
)
|
|
2007
|
+
_secondary_amount=(
|
|
2008
|
+
self.secondary_amount
|
|
2009
|
+
if hasattr(self, "secondary_amount")
|
|
2010
|
+
else None
|
|
2011
|
+
)
|
|
2012
|
+
_transaction_api_id=(
|
|
2013
|
+
self.transaction_api_id
|
|
2014
|
+
if hasattr(self, "transaction_api_id")
|
|
2015
|
+
else None
|
|
2016
|
+
)
|
|
2017
|
+
_transaction_c_1=(
|
|
2018
|
+
self.transaction_c_1
|
|
2019
|
+
if hasattr(self, "transaction_c_1")
|
|
2020
|
+
else None
|
|
2021
|
+
)
|
|
2022
|
+
_transaction_c_2=(
|
|
2023
|
+
self.transaction_c_2
|
|
2024
|
+
if hasattr(self, "transaction_c_2")
|
|
2025
|
+
else None
|
|
2026
|
+
)
|
|
2027
|
+
_transaction_c_3=(
|
|
2028
|
+
self.transaction_c_3
|
|
2029
|
+
if hasattr(self, "transaction_c_3")
|
|
2030
|
+
else None
|
|
2031
|
+
)
|
|
2032
|
+
_bank_funded_only_override=(
|
|
2033
|
+
self.bank_funded_only_override
|
|
2034
|
+
if hasattr(self, "bank_funded_only_override")
|
|
2035
|
+
else None
|
|
2036
|
+
)
|
|
2037
|
+
_allow_partial_authorization_override=(
|
|
2038
|
+
self.allow_partial_authorization_override
|
|
2039
|
+
if hasattr(self, "allow_partial_authorization_override")
|
|
2040
|
+
else None
|
|
2041
|
+
)
|
|
2042
|
+
_auto_decline_cvv_override=(
|
|
2043
|
+
self.auto_decline_cvv_override
|
|
2044
|
+
if hasattr(self, "auto_decline_cvv_override")
|
|
2045
|
+
else None
|
|
2046
|
+
)
|
|
2047
|
+
_auto_decline_street_override=(
|
|
2048
|
+
self.auto_decline_street_override
|
|
2049
|
+
if hasattr(self, "auto_decline_street_override")
|
|
2050
|
+
else None
|
|
2051
|
+
)
|
|
2052
|
+
_auto_decline_zip_override=(
|
|
2053
|
+
self.auto_decline_zip_override
|
|
2054
|
+
if hasattr(self, "auto_decline_zip_override")
|
|
2055
|
+
else None
|
|
2056
|
+
)
|
|
2057
|
+
_ebt_type=(
|
|
2058
|
+
self.ebt_type
|
|
2059
|
+
if hasattr(self, "ebt_type")
|
|
2060
|
+
else None
|
|
2061
|
+
)
|
|
2062
|
+
_currency_code=(
|
|
2063
|
+
self.currency_code
|
|
2064
|
+
if hasattr(self, "currency_code")
|
|
2065
|
+
else None
|
|
2066
|
+
)
|
|
2067
|
+
_id=(
|
|
2068
|
+
self.id
|
|
2069
|
+
if hasattr(self, "id")
|
|
2070
|
+
else None
|
|
2071
|
+
)
|
|
2072
|
+
_created_ts=(
|
|
2073
|
+
self.created_ts
|
|
2074
|
+
if hasattr(self, "created_ts")
|
|
2075
|
+
else None
|
|
2076
|
+
)
|
|
2077
|
+
_modified_ts=(
|
|
2078
|
+
self.modified_ts
|
|
2079
|
+
if hasattr(self, "modified_ts")
|
|
2080
|
+
else None
|
|
2081
|
+
)
|
|
2082
|
+
_terminal_id=(
|
|
2083
|
+
self.terminal_id
|
|
2084
|
+
if hasattr(self, "terminal_id")
|
|
2085
|
+
else None
|
|
2086
|
+
)
|
|
2087
|
+
_account_holder_name=(
|
|
2088
|
+
self.account_holder_name
|
|
2089
|
+
if hasattr(self, "account_holder_name")
|
|
2090
|
+
else None
|
|
2091
|
+
)
|
|
2092
|
+
_account_type=(
|
|
2093
|
+
self.account_type
|
|
2094
|
+
if hasattr(self, "account_type")
|
|
2095
|
+
else None
|
|
2096
|
+
)
|
|
2097
|
+
_token_api_id=(
|
|
2098
|
+
self.token_api_id
|
|
2099
|
+
if hasattr(self, "token_api_id")
|
|
2100
|
+
else None
|
|
2101
|
+
)
|
|
2102
|
+
_token_id=(
|
|
2103
|
+
self.token_id
|
|
2104
|
+
if hasattr(self, "token_id")
|
|
2105
|
+
else None
|
|
2106
|
+
)
|
|
2107
|
+
_ach_identifier=(
|
|
2108
|
+
self.ach_identifier
|
|
2109
|
+
if hasattr(self, "ach_identifier")
|
|
2110
|
+
else None
|
|
2111
|
+
)
|
|
2112
|
+
_ach_sec_code=(
|
|
2113
|
+
self.ach_sec_code
|
|
2114
|
+
if hasattr(self, "ach_sec_code")
|
|
2115
|
+
else None
|
|
2116
|
+
)
|
|
2117
|
+
_auth_amount=(
|
|
2118
|
+
self.auth_amount
|
|
2119
|
+
if hasattr(self, "auth_amount")
|
|
2120
|
+
else None
|
|
2121
|
+
)
|
|
2122
|
+
_auth_code=(
|
|
2123
|
+
self.auth_code
|
|
2124
|
+
if hasattr(self, "auth_code")
|
|
2125
|
+
else None
|
|
2126
|
+
)
|
|
2127
|
+
_avs=(
|
|
2128
|
+
self.avs
|
|
2129
|
+
if hasattr(self, "avs")
|
|
2130
|
+
else None
|
|
2131
|
+
)
|
|
2132
|
+
_avs_enhanced=(
|
|
2133
|
+
self.avs_enhanced
|
|
2134
|
+
if hasattr(self, "avs_enhanced")
|
|
2135
|
+
else None
|
|
2136
|
+
)
|
|
2137
|
+
_cardholder_present=(
|
|
2138
|
+
self.cardholder_present
|
|
2139
|
+
if hasattr(self, "cardholder_present")
|
|
2140
|
+
else None
|
|
2141
|
+
)
|
|
2142
|
+
_card_present=(
|
|
2143
|
+
self.card_present
|
|
2144
|
+
if hasattr(self, "card_present")
|
|
2145
|
+
else None
|
|
2146
|
+
)
|
|
2147
|
+
_check_number=(
|
|
2148
|
+
self.check_number
|
|
2149
|
+
if hasattr(self, "check_number")
|
|
2150
|
+
else None
|
|
2151
|
+
)
|
|
2152
|
+
_customer_ip=(
|
|
2153
|
+
self.customer_ip
|
|
2154
|
+
if hasattr(self, "customer_ip")
|
|
2155
|
+
else None
|
|
2156
|
+
)
|
|
2157
|
+
_cvv_response=(
|
|
2158
|
+
self.cvv_response
|
|
2159
|
+
if hasattr(self, "cvv_response")
|
|
2160
|
+
else None
|
|
2161
|
+
)
|
|
2162
|
+
_entry_mode_id=(
|
|
2163
|
+
self.entry_mode_id
|
|
2164
|
+
if hasattr(self, "entry_mode_id")
|
|
2165
|
+
else None
|
|
2166
|
+
)
|
|
2167
|
+
_emv_receipt_data=(
|
|
2168
|
+
self.emv_receipt_data
|
|
2169
|
+
if hasattr(self, "emv_receipt_data")
|
|
2170
|
+
else None
|
|
2171
|
+
)
|
|
2172
|
+
_first_six=(
|
|
2173
|
+
self.first_six
|
|
2174
|
+
if hasattr(self, "first_six")
|
|
2175
|
+
else None
|
|
2176
|
+
)
|
|
2177
|
+
_last_four=(
|
|
2178
|
+
self.last_four
|
|
2179
|
+
if hasattr(self, "last_four")
|
|
2180
|
+
else None
|
|
2181
|
+
)
|
|
2182
|
+
_payment_method=(
|
|
2183
|
+
self.payment_method
|
|
2184
|
+
if hasattr(self, "payment_method")
|
|
2185
|
+
else None
|
|
2186
|
+
)
|
|
2187
|
+
_terminal_serial_number=(
|
|
2188
|
+
self.terminal_serial_number
|
|
2189
|
+
if hasattr(self, "terminal_serial_number")
|
|
2190
|
+
else None
|
|
2191
|
+
)
|
|
2192
|
+
_transaction_settlement_status=(
|
|
2193
|
+
self.transaction_settlement_status
|
|
2194
|
+
if hasattr(self, "transaction_settlement_status")
|
|
2195
|
+
else None
|
|
2196
|
+
)
|
|
2197
|
+
_charge_back_date=(
|
|
2198
|
+
self.charge_back_date
|
|
2199
|
+
if hasattr(self, "charge_back_date")
|
|
2200
|
+
else None
|
|
2201
|
+
)
|
|
2202
|
+
_is_recurring=(
|
|
2203
|
+
self.is_recurring
|
|
2204
|
+
if hasattr(self, "is_recurring")
|
|
2205
|
+
else None
|
|
2206
|
+
)
|
|
2207
|
+
_notification_email_sent=(
|
|
2208
|
+
self.notification_email_sent
|
|
2209
|
+
if hasattr(self, "notification_email_sent")
|
|
2210
|
+
else None
|
|
2211
|
+
)
|
|
2212
|
+
_par=(
|
|
2213
|
+
self.par
|
|
2214
|
+
if hasattr(self, "par")
|
|
2215
|
+
else None
|
|
2216
|
+
)
|
|
2217
|
+
_reason_code_id=(
|
|
2218
|
+
self.reason_code_id
|
|
2219
|
+
if hasattr(self, "reason_code_id")
|
|
2220
|
+
else None
|
|
2221
|
+
)
|
|
2222
|
+
_recurring_id=(
|
|
2223
|
+
self.recurring_id
|
|
2224
|
+
if hasattr(self, "recurring_id")
|
|
2225
|
+
else None
|
|
2226
|
+
)
|
|
2227
|
+
_settle_date=(
|
|
2228
|
+
self.settle_date
|
|
2229
|
+
if hasattr(self, "settle_date")
|
|
2230
|
+
else None
|
|
2231
|
+
)
|
|
2232
|
+
_status_code=(
|
|
2233
|
+
self.status_code
|
|
2234
|
+
if hasattr(self, "status_code")
|
|
2235
|
+
else None
|
|
2236
|
+
)
|
|
2237
|
+
_transaction_batch_id=(
|
|
2238
|
+
self.transaction_batch_id
|
|
2239
|
+
if hasattr(self, "transaction_batch_id")
|
|
2240
|
+
else None
|
|
2241
|
+
)
|
|
2242
|
+
_type_id=(
|
|
2243
|
+
self.type_id
|
|
2244
|
+
if hasattr(self, "type_id")
|
|
2245
|
+
else None
|
|
2246
|
+
)
|
|
2247
|
+
_verbiage=(
|
|
2248
|
+
self.verbiage
|
|
2249
|
+
if hasattr(self, "verbiage")
|
|
2250
|
+
else None
|
|
2251
|
+
)
|
|
2252
|
+
_voucher_number=(
|
|
2253
|
+
self.voucher_number
|
|
2254
|
+
if hasattr(self, "voucher_number")
|
|
2255
|
+
else None
|
|
2256
|
+
)
|
|
2257
|
+
_void_date=(
|
|
2258
|
+
self.void_date
|
|
2259
|
+
if hasattr(self, "void_date")
|
|
2260
|
+
else None
|
|
2261
|
+
)
|
|
2262
|
+
_batch=(
|
|
2263
|
+
self.batch
|
|
2264
|
+
if hasattr(self, "batch")
|
|
2265
|
+
else None
|
|
2266
|
+
)
|
|
2267
|
+
_terms_agree=(
|
|
2268
|
+
self.terms_agree
|
|
2269
|
+
if hasattr(self, "terms_agree")
|
|
2270
|
+
else None
|
|
2271
|
+
)
|
|
2272
|
+
_response_message=(
|
|
2273
|
+
self.response_message
|
|
2274
|
+
if hasattr(self, "response_message")
|
|
2275
|
+
else None
|
|
2276
|
+
)
|
|
2277
|
+
_return_date=(
|
|
2278
|
+
self.return_date
|
|
2279
|
+
if hasattr(self, "return_date")
|
|
2280
|
+
else None
|
|
2281
|
+
)
|
|
2282
|
+
_trx_source_id=(
|
|
2283
|
+
self.trx_source_id
|
|
2284
|
+
if hasattr(self, "trx_source_id")
|
|
2285
|
+
else None
|
|
2286
|
+
)
|
|
2287
|
+
_routing_number=(
|
|
2288
|
+
self.routing_number
|
|
2289
|
+
if hasattr(self, "routing_number")
|
|
2290
|
+
else None
|
|
2291
|
+
)
|
|
2292
|
+
_trx_source_code=(
|
|
2293
|
+
self.trx_source_code
|
|
2294
|
+
if hasattr(self, "trx_source_code")
|
|
2295
|
+
else None
|
|
2296
|
+
)
|
|
2297
|
+
_paylink_id=(
|
|
2298
|
+
self.paylink_id
|
|
2299
|
+
if hasattr(self, "paylink_id")
|
|
2300
|
+
else None
|
|
2301
|
+
)
|
|
2302
|
+
_is_accountvault=(
|
|
2303
|
+
self.is_accountvault
|
|
2304
|
+
if hasattr(self, "is_accountvault")
|
|
2305
|
+
else None
|
|
2306
|
+
)
|
|
2307
|
+
_created_user_id=(
|
|
2308
|
+
self.created_user_id
|
|
2309
|
+
if hasattr(self, "created_user_id")
|
|
2310
|
+
else None
|
|
2311
|
+
)
|
|
2312
|
+
_modified_user_id=(
|
|
2313
|
+
self.modified_user_id
|
|
2314
|
+
if hasattr(self, "modified_user_id")
|
|
2315
|
+
else None
|
|
2316
|
+
)
|
|
2317
|
+
_transaction_code=(
|
|
2318
|
+
self.transaction_code
|
|
2319
|
+
if hasattr(self, "transaction_code")
|
|
2320
|
+
else None
|
|
2321
|
+
)
|
|
2322
|
+
_effective_date=(
|
|
2323
|
+
self.effective_date
|
|
2324
|
+
if hasattr(self, "effective_date")
|
|
2325
|
+
else None
|
|
2326
|
+
)
|
|
2327
|
+
_notification_phone=(
|
|
2328
|
+
self.notification_phone
|
|
2329
|
+
if hasattr(self, "notification_phone")
|
|
2330
|
+
else None
|
|
2331
|
+
)
|
|
2332
|
+
_cavv_result=(
|
|
2333
|
+
self.cavv_result
|
|
2334
|
+
if hasattr(self, "cavv_result")
|
|
2335
|
+
else None
|
|
2336
|
+
)
|
|
2337
|
+
_is_token=(
|
|
2338
|
+
self.is_token
|
|
2339
|
+
if hasattr(self, "is_token")
|
|
2340
|
+
else None
|
|
2341
|
+
)
|
|
2342
|
+
_account_vault_id=(
|
|
2343
|
+
self.account_vault_id
|
|
2344
|
+
if hasattr(self, "account_vault_id")
|
|
2345
|
+
else None
|
|
2346
|
+
)
|
|
2347
|
+
_hosted_payment_page_id=(
|
|
2348
|
+
self.hosted_payment_page_id
|
|
2349
|
+
if hasattr(self, "hosted_payment_page_id")
|
|
2350
|
+
else None
|
|
2351
|
+
)
|
|
2352
|
+
_stan=(
|
|
2353
|
+
self.stan
|
|
2354
|
+
if hasattr(self, "stan")
|
|
2355
|
+
else None
|
|
2356
|
+
)
|
|
2357
|
+
_currency=(
|
|
2358
|
+
self.currency
|
|
2359
|
+
if hasattr(self, "currency")
|
|
2360
|
+
else None
|
|
2361
|
+
)
|
|
2362
|
+
_card_bin=(
|
|
2363
|
+
self.card_bin
|
|
2364
|
+
if hasattr(self, "card_bin")
|
|
2365
|
+
else None
|
|
2366
|
+
)
|
|
2367
|
+
_wallet_type=(
|
|
2368
|
+
self.wallet_type
|
|
2369
|
+
if hasattr(self, "wallet_type")
|
|
2370
|
+
else None
|
|
2371
|
+
)
|
|
2372
|
+
_additional_properties=self.additional_properties
|
|
2373
|
+
return (
|
|
2374
|
+
f"{self.__class__.__name__}("
|
|
2375
|
+
f"additional_amounts={_additional_amounts!r}, "
|
|
2376
|
+
f"billing_address={_billing_address!r}, "
|
|
2377
|
+
f"checkin_date={_checkin_date!r}, "
|
|
2378
|
+
f"checkout_date={_checkout_date!r}, "
|
|
2379
|
+
f"clerk_number={_clerk_number!r}, "
|
|
2380
|
+
f"contact_api_id={_contact_api_id!r}, "
|
|
2381
|
+
f"contact_id={_contact_id!r}, "
|
|
2382
|
+
f"custom_data={_custom_data!r}, "
|
|
2383
|
+
f"customer_id={_customer_id!r}, "
|
|
2384
|
+
f"description={_description!r}, "
|
|
2385
|
+
f"identity_verification={_identity_verification!r}, "
|
|
2386
|
+
f"iias_ind={_iias_ind!r}, "
|
|
2387
|
+
f"image_front={_image_front!r}, "
|
|
2388
|
+
f"image_back={_image_back!r}, "
|
|
2389
|
+
f"installment={_installment!r}, "
|
|
2390
|
+
f"installment_number={_installment_number!r}, "
|
|
2391
|
+
f"installment_count={_installment_count!r}, "
|
|
2392
|
+
f"recurring_flag={_recurring_flag!r}, "
|
|
2393
|
+
f"installment_counter={_installment_counter!r}, "
|
|
2394
|
+
f"installment_total={_installment_total!r}, "
|
|
2395
|
+
f"subscription={_subscription!r}, "
|
|
2396
|
+
f"standing_order={_standing_order!r}, "
|
|
2397
|
+
f"location_api_id={_location_api_id!r}, "
|
|
2398
|
+
f"location_id={_location_id!r}, "
|
|
2399
|
+
f"product_transaction_id={_product_transaction_id!r}, "
|
|
2400
|
+
f"advance_deposit={_advance_deposit!r}, "
|
|
2401
|
+
f"no_show={_no_show!r}, "
|
|
2402
|
+
f"notification_email_address={_notification_email_address!r}, "
|
|
2403
|
+
f"order_number={_order_number!r}, "
|
|
2404
|
+
f"po_number={_po_number!r}, "
|
|
2405
|
+
f"quick_invoice_id={_quick_invoice_id!r}, "
|
|
2406
|
+
f"recurring={_recurring!r}, "
|
|
2407
|
+
f"recurring_number={_recurring_number!r}, "
|
|
2408
|
+
f"room_num={_room_num!r}, "
|
|
2409
|
+
f"room_rate={_room_rate!r}, "
|
|
2410
|
+
f"save_account={_save_account!r}, "
|
|
2411
|
+
f"save_account_title={_save_account_title!r}, "
|
|
2412
|
+
f"subtotal_amount={_subtotal_amount!r}, "
|
|
2413
|
+
f"surcharge_amount={_surcharge_amount!r}, "
|
|
2414
|
+
f"tags={_tags!r}, "
|
|
2415
|
+
f"tax={_tax!r}, "
|
|
2416
|
+
f"tip_amount={_tip_amount!r}, "
|
|
2417
|
+
f"transaction_amount={_transaction_amount!r}, "
|
|
2418
|
+
f"secondary_amount={_secondary_amount!r}, "
|
|
2419
|
+
f"transaction_api_id={_transaction_api_id!r}, "
|
|
2420
|
+
f"transaction_c_1={_transaction_c_1!r}, "
|
|
2421
|
+
f"transaction_c_2={_transaction_c_2!r}, "
|
|
2422
|
+
f"transaction_c_3={_transaction_c_3!r}, "
|
|
2423
|
+
f"bank_funded_only_override={_bank_funded_only_override!r}, "
|
|
2424
|
+
f"allow_partial_authorization_override={_allow_partial_authorization_override!r}, "
|
|
2425
|
+
f"auto_decline_cvv_override={_auto_decline_cvv_override!r}, "
|
|
2426
|
+
f"auto_decline_street_override={_auto_decline_street_override!r}, "
|
|
2427
|
+
f"auto_decline_zip_override={_auto_decline_zip_override!r}, "
|
|
2428
|
+
f"ebt_type={_ebt_type!r}, "
|
|
2429
|
+
f"currency_code={_currency_code!r}, "
|
|
2430
|
+
f"id={_id!r}, "
|
|
2431
|
+
f"created_ts={_created_ts!r}, "
|
|
2432
|
+
f"modified_ts={_modified_ts!r}, "
|
|
2433
|
+
f"terminal_id={_terminal_id!r}, "
|
|
2434
|
+
f"account_holder_name={_account_holder_name!r}, "
|
|
2435
|
+
f"account_type={_account_type!r}, "
|
|
2436
|
+
f"token_api_id={_token_api_id!r}, "
|
|
2437
|
+
f"token_id={_token_id!r}, "
|
|
2438
|
+
f"ach_identifier={_ach_identifier!r}, "
|
|
2439
|
+
f"ach_sec_code={_ach_sec_code!r}, "
|
|
2440
|
+
f"auth_amount={_auth_amount!r}, "
|
|
2441
|
+
f"auth_code={_auth_code!r}, "
|
|
2442
|
+
f"avs={_avs!r}, "
|
|
2443
|
+
f"avs_enhanced={_avs_enhanced!r}, "
|
|
2444
|
+
f"cardholder_present={_cardholder_present!r}, "
|
|
2445
|
+
f"card_present={_card_present!r}, "
|
|
2446
|
+
f"check_number={_check_number!r}, "
|
|
2447
|
+
f"customer_ip={_customer_ip!r}, "
|
|
2448
|
+
f"cvv_response={_cvv_response!r}, "
|
|
2449
|
+
f"entry_mode_id={_entry_mode_id!r}, "
|
|
2450
|
+
f"emv_receipt_data={_emv_receipt_data!r}, "
|
|
2451
|
+
f"first_six={_first_six!r}, "
|
|
2452
|
+
f"last_four={_last_four!r}, "
|
|
2453
|
+
f"payment_method={_payment_method!r}, "
|
|
2454
|
+
f"terminal_serial_number={_terminal_serial_number!r}, "
|
|
2455
|
+
f"transaction_settlement_status={_transaction_settlement_status!r}, "
|
|
2456
|
+
f"charge_back_date={_charge_back_date!r}, "
|
|
2457
|
+
f"is_recurring={_is_recurring!r}, "
|
|
2458
|
+
f"notification_email_sent={_notification_email_sent!r}, "
|
|
2459
|
+
f"par={_par!r}, "
|
|
2460
|
+
f"reason_code_id={_reason_code_id!r}, "
|
|
2461
|
+
f"recurring_id={_recurring_id!r}, "
|
|
2462
|
+
f"settle_date={_settle_date!r}, "
|
|
2463
|
+
f"status_code={_status_code!r}, "
|
|
2464
|
+
f"transaction_batch_id={_transaction_batch_id!r}, "
|
|
2465
|
+
f"type_id={_type_id!r}, "
|
|
2466
|
+
f"verbiage={_verbiage!r}, "
|
|
2467
|
+
f"voucher_number={_voucher_number!r}, "
|
|
2468
|
+
f"void_date={_void_date!r}, "
|
|
2469
|
+
f"batch={_batch!r}, "
|
|
2470
|
+
f"terms_agree={_terms_agree!r}, "
|
|
2471
|
+
f"response_message={_response_message!r}, "
|
|
2472
|
+
f"return_date={_return_date!r}, "
|
|
2473
|
+
f"trx_source_id={_trx_source_id!r}, "
|
|
2474
|
+
f"routing_number={_routing_number!r}, "
|
|
2475
|
+
f"trx_source_code={_trx_source_code!r}, "
|
|
2476
|
+
f"paylink_id={_paylink_id!r}, "
|
|
2477
|
+
f"is_accountvault={_is_accountvault!r}, "
|
|
2478
|
+
f"created_user_id={_created_user_id!r}, "
|
|
2479
|
+
f"modified_user_id={_modified_user_id!r}, "
|
|
2480
|
+
f"transaction_code={_transaction_code!r}, "
|
|
2481
|
+
f"effective_date={_effective_date!r}, "
|
|
2482
|
+
f"notification_phone={_notification_phone!r}, "
|
|
2483
|
+
f"cavv_result={_cavv_result!r}, "
|
|
2484
|
+
f"is_token={_is_token!r}, "
|
|
2485
|
+
f"account_vault_id={_account_vault_id!r}, "
|
|
2486
|
+
f"hosted_payment_page_id={_hosted_payment_page_id!r}, "
|
|
2487
|
+
f"stan={_stan!r}, "
|
|
2488
|
+
f"currency={_currency!r}, "
|
|
2489
|
+
f"card_bin={_card_bin!r}, "
|
|
2490
|
+
f"wallet_type={_wallet_type!r}, "
|
|
2491
|
+
f"additional_properties={_additional_properties!r}, "
|
|
2492
|
+
f")"
|
|
2493
|
+
)
|
|
2494
|
+
|
|
2495
|
+
def __str__(self):
|
|
2496
|
+
"""Return a human-readable string representation."""
|
|
2497
|
+
_additional_amounts=(
|
|
2498
|
+
self.additional_amounts
|
|
2499
|
+
if hasattr(self, "additional_amounts")
|
|
2500
|
+
else None
|
|
2501
|
+
)
|
|
2502
|
+
_billing_address=(
|
|
2503
|
+
self.billing_address
|
|
2504
|
+
if hasattr(self, "billing_address")
|
|
2505
|
+
else None
|
|
2506
|
+
)
|
|
2507
|
+
_checkin_date=(
|
|
2508
|
+
self.checkin_date
|
|
2509
|
+
if hasattr(self, "checkin_date")
|
|
2510
|
+
else None
|
|
2511
|
+
)
|
|
2512
|
+
_checkout_date=(
|
|
2513
|
+
self.checkout_date
|
|
2514
|
+
if hasattr(self, "checkout_date")
|
|
2515
|
+
else None
|
|
2516
|
+
)
|
|
2517
|
+
_clerk_number=(
|
|
2518
|
+
self.clerk_number
|
|
2519
|
+
if hasattr(self, "clerk_number")
|
|
2520
|
+
else None
|
|
2521
|
+
)
|
|
2522
|
+
_contact_api_id=(
|
|
2523
|
+
self.contact_api_id
|
|
2524
|
+
if hasattr(self, "contact_api_id")
|
|
2525
|
+
else None
|
|
2526
|
+
)
|
|
2527
|
+
_contact_id=(
|
|
2528
|
+
self.contact_id
|
|
2529
|
+
if hasattr(self, "contact_id")
|
|
2530
|
+
else None
|
|
2531
|
+
)
|
|
2532
|
+
_custom_data=(
|
|
2533
|
+
self.custom_data
|
|
2534
|
+
if hasattr(self, "custom_data")
|
|
2535
|
+
else None
|
|
2536
|
+
)
|
|
2537
|
+
_customer_id=(
|
|
2538
|
+
self.customer_id
|
|
2539
|
+
if hasattr(self, "customer_id")
|
|
2540
|
+
else None
|
|
2541
|
+
)
|
|
2542
|
+
_description=(
|
|
2543
|
+
self.description
|
|
2544
|
+
if hasattr(self, "description")
|
|
2545
|
+
else None
|
|
2546
|
+
)
|
|
2547
|
+
_identity_verification=(
|
|
2548
|
+
self.identity_verification
|
|
2549
|
+
if hasattr(self, "identity_verification")
|
|
2550
|
+
else None
|
|
2551
|
+
)
|
|
2552
|
+
_iias_ind=(
|
|
2553
|
+
self.iias_ind
|
|
2554
|
+
if hasattr(self, "iias_ind")
|
|
2555
|
+
else None
|
|
2556
|
+
)
|
|
2557
|
+
_image_front=(
|
|
2558
|
+
self.image_front
|
|
2559
|
+
if hasattr(self, "image_front")
|
|
2560
|
+
else None
|
|
2561
|
+
)
|
|
2562
|
+
_image_back=(
|
|
2563
|
+
self.image_back
|
|
2564
|
+
if hasattr(self, "image_back")
|
|
2565
|
+
else None
|
|
2566
|
+
)
|
|
2567
|
+
_installment=(
|
|
2568
|
+
self.installment
|
|
2569
|
+
if hasattr(self, "installment")
|
|
2570
|
+
else None
|
|
2571
|
+
)
|
|
2572
|
+
_installment_number=(
|
|
2573
|
+
self.installment_number
|
|
2574
|
+
if hasattr(self, "installment_number")
|
|
2575
|
+
else None
|
|
2576
|
+
)
|
|
2577
|
+
_installment_count=(
|
|
2578
|
+
self.installment_count
|
|
2579
|
+
if hasattr(self, "installment_count")
|
|
2580
|
+
else None
|
|
2581
|
+
)
|
|
2582
|
+
_recurring_flag=(
|
|
2583
|
+
self.recurring_flag
|
|
2584
|
+
if hasattr(self, "recurring_flag")
|
|
2585
|
+
else None
|
|
2586
|
+
)
|
|
2587
|
+
_installment_counter=(
|
|
2588
|
+
self.installment_counter
|
|
2589
|
+
if hasattr(self, "installment_counter")
|
|
2590
|
+
else None
|
|
2591
|
+
)
|
|
2592
|
+
_installment_total=(
|
|
2593
|
+
self.installment_total
|
|
2594
|
+
if hasattr(self, "installment_total")
|
|
2595
|
+
else None
|
|
2596
|
+
)
|
|
2597
|
+
_subscription=(
|
|
2598
|
+
self.subscription
|
|
2599
|
+
if hasattr(self, "subscription")
|
|
2600
|
+
else None
|
|
2601
|
+
)
|
|
2602
|
+
_standing_order=(
|
|
2603
|
+
self.standing_order
|
|
2604
|
+
if hasattr(self, "standing_order")
|
|
2605
|
+
else None
|
|
2606
|
+
)
|
|
2607
|
+
_location_api_id=(
|
|
2608
|
+
self.location_api_id
|
|
2609
|
+
if hasattr(self, "location_api_id")
|
|
2610
|
+
else None
|
|
2611
|
+
)
|
|
2612
|
+
_location_id=(
|
|
2613
|
+
self.location_id
|
|
2614
|
+
if hasattr(self, "location_id")
|
|
2615
|
+
else None
|
|
2616
|
+
)
|
|
2617
|
+
_product_transaction_id=(
|
|
2618
|
+
self.product_transaction_id
|
|
2619
|
+
if hasattr(self, "product_transaction_id")
|
|
2620
|
+
else None
|
|
2621
|
+
)
|
|
2622
|
+
_advance_deposit=(
|
|
2623
|
+
self.advance_deposit
|
|
2624
|
+
if hasattr(self, "advance_deposit")
|
|
2625
|
+
else None
|
|
2626
|
+
)
|
|
2627
|
+
_no_show=(
|
|
2628
|
+
self.no_show
|
|
2629
|
+
if hasattr(self, "no_show")
|
|
2630
|
+
else None
|
|
2631
|
+
)
|
|
2632
|
+
_notification_email_address=(
|
|
2633
|
+
self.notification_email_address
|
|
2634
|
+
if hasattr(self, "notification_email_address")
|
|
2635
|
+
else None
|
|
2636
|
+
)
|
|
2637
|
+
_order_number=(
|
|
2638
|
+
self.order_number
|
|
2639
|
+
if hasattr(self, "order_number")
|
|
2640
|
+
else None
|
|
2641
|
+
)
|
|
2642
|
+
_po_number=(
|
|
2643
|
+
self.po_number
|
|
2644
|
+
if hasattr(self, "po_number")
|
|
2645
|
+
else None
|
|
2646
|
+
)
|
|
2647
|
+
_quick_invoice_id=(
|
|
2648
|
+
self.quick_invoice_id
|
|
2649
|
+
if hasattr(self, "quick_invoice_id")
|
|
2650
|
+
else None
|
|
2651
|
+
)
|
|
2652
|
+
_recurring=(
|
|
2653
|
+
self.recurring
|
|
2654
|
+
if hasattr(self, "recurring")
|
|
2655
|
+
else None
|
|
2656
|
+
)
|
|
2657
|
+
_recurring_number=(
|
|
2658
|
+
self.recurring_number
|
|
2659
|
+
if hasattr(self, "recurring_number")
|
|
2660
|
+
else None
|
|
2661
|
+
)
|
|
2662
|
+
_room_num=(
|
|
2663
|
+
self.room_num
|
|
2664
|
+
if hasattr(self, "room_num")
|
|
2665
|
+
else None
|
|
2666
|
+
)
|
|
2667
|
+
_room_rate=(
|
|
2668
|
+
self.room_rate
|
|
2669
|
+
if hasattr(self, "room_rate")
|
|
2670
|
+
else None
|
|
2671
|
+
)
|
|
2672
|
+
_save_account=(
|
|
2673
|
+
self.save_account
|
|
2674
|
+
if hasattr(self, "save_account")
|
|
2675
|
+
else None
|
|
2676
|
+
)
|
|
2677
|
+
_save_account_title=(
|
|
2678
|
+
self.save_account_title
|
|
2679
|
+
if hasattr(self, "save_account_title")
|
|
2680
|
+
else None
|
|
2681
|
+
)
|
|
2682
|
+
_subtotal_amount=(
|
|
2683
|
+
self.subtotal_amount
|
|
2684
|
+
if hasattr(self, "subtotal_amount")
|
|
2685
|
+
else None
|
|
2686
|
+
)
|
|
2687
|
+
_surcharge_amount=(
|
|
2688
|
+
self.surcharge_amount
|
|
2689
|
+
if hasattr(self, "surcharge_amount")
|
|
2690
|
+
else None
|
|
2691
|
+
)
|
|
2692
|
+
_tags=(
|
|
2693
|
+
self.tags
|
|
2694
|
+
if hasattr(self, "tags")
|
|
2695
|
+
else None
|
|
2696
|
+
)
|
|
2697
|
+
_tax=(
|
|
2698
|
+
self.tax
|
|
2699
|
+
if hasattr(self, "tax")
|
|
2700
|
+
else None
|
|
2701
|
+
)
|
|
2702
|
+
_tip_amount=(
|
|
2703
|
+
self.tip_amount
|
|
2704
|
+
if hasattr(self, "tip_amount")
|
|
2705
|
+
else None
|
|
2706
|
+
)
|
|
2707
|
+
_transaction_amount=(
|
|
2708
|
+
self.transaction_amount
|
|
2709
|
+
if hasattr(self, "transaction_amount")
|
|
2710
|
+
else None
|
|
2711
|
+
)
|
|
2712
|
+
_secondary_amount=(
|
|
2713
|
+
self.secondary_amount
|
|
2714
|
+
if hasattr(self, "secondary_amount")
|
|
2715
|
+
else None
|
|
2716
|
+
)
|
|
2717
|
+
_transaction_api_id=(
|
|
2718
|
+
self.transaction_api_id
|
|
2719
|
+
if hasattr(self, "transaction_api_id")
|
|
2720
|
+
else None
|
|
2721
|
+
)
|
|
2722
|
+
_transaction_c_1=(
|
|
2723
|
+
self.transaction_c_1
|
|
2724
|
+
if hasattr(self, "transaction_c_1")
|
|
2725
|
+
else None
|
|
2726
|
+
)
|
|
2727
|
+
_transaction_c_2=(
|
|
2728
|
+
self.transaction_c_2
|
|
2729
|
+
if hasattr(self, "transaction_c_2")
|
|
2730
|
+
else None
|
|
2731
|
+
)
|
|
2732
|
+
_transaction_c_3=(
|
|
2733
|
+
self.transaction_c_3
|
|
2734
|
+
if hasattr(self, "transaction_c_3")
|
|
2735
|
+
else None
|
|
2736
|
+
)
|
|
2737
|
+
_bank_funded_only_override=(
|
|
2738
|
+
self.bank_funded_only_override
|
|
2739
|
+
if hasattr(self, "bank_funded_only_override")
|
|
2740
|
+
else None
|
|
2741
|
+
)
|
|
2742
|
+
_allow_partial_authorization_override=(
|
|
2743
|
+
self.allow_partial_authorization_override
|
|
2744
|
+
if hasattr(self, "allow_partial_authorization_override")
|
|
2745
|
+
else None
|
|
2746
|
+
)
|
|
2747
|
+
_auto_decline_cvv_override=(
|
|
2748
|
+
self.auto_decline_cvv_override
|
|
2749
|
+
if hasattr(self, "auto_decline_cvv_override")
|
|
2750
|
+
else None
|
|
2751
|
+
)
|
|
2752
|
+
_auto_decline_street_override=(
|
|
2753
|
+
self.auto_decline_street_override
|
|
2754
|
+
if hasattr(self, "auto_decline_street_override")
|
|
2755
|
+
else None
|
|
2756
|
+
)
|
|
2757
|
+
_auto_decline_zip_override=(
|
|
2758
|
+
self.auto_decline_zip_override
|
|
2759
|
+
if hasattr(self, "auto_decline_zip_override")
|
|
2760
|
+
else None
|
|
2761
|
+
)
|
|
2762
|
+
_ebt_type=(
|
|
2763
|
+
self.ebt_type
|
|
2764
|
+
if hasattr(self, "ebt_type")
|
|
2765
|
+
else None
|
|
2766
|
+
)
|
|
2767
|
+
_currency_code=(
|
|
2768
|
+
self.currency_code
|
|
2769
|
+
if hasattr(self, "currency_code")
|
|
2770
|
+
else None
|
|
2771
|
+
)
|
|
2772
|
+
_id=(
|
|
2773
|
+
self.id
|
|
2774
|
+
if hasattr(self, "id")
|
|
2775
|
+
else None
|
|
2776
|
+
)
|
|
2777
|
+
_created_ts=(
|
|
2778
|
+
self.created_ts
|
|
2779
|
+
if hasattr(self, "created_ts")
|
|
2780
|
+
else None
|
|
2781
|
+
)
|
|
2782
|
+
_modified_ts=(
|
|
2783
|
+
self.modified_ts
|
|
2784
|
+
if hasattr(self, "modified_ts")
|
|
2785
|
+
else None
|
|
2786
|
+
)
|
|
2787
|
+
_terminal_id=(
|
|
2788
|
+
self.terminal_id
|
|
2789
|
+
if hasattr(self, "terminal_id")
|
|
2790
|
+
else None
|
|
2791
|
+
)
|
|
2792
|
+
_account_holder_name=(
|
|
2793
|
+
self.account_holder_name
|
|
2794
|
+
if hasattr(self, "account_holder_name")
|
|
2795
|
+
else None
|
|
2796
|
+
)
|
|
2797
|
+
_account_type=(
|
|
2798
|
+
self.account_type
|
|
2799
|
+
if hasattr(self, "account_type")
|
|
2800
|
+
else None
|
|
2801
|
+
)
|
|
2802
|
+
_token_api_id=(
|
|
2803
|
+
self.token_api_id
|
|
2804
|
+
if hasattr(self, "token_api_id")
|
|
2805
|
+
else None
|
|
2806
|
+
)
|
|
2807
|
+
_token_id=(
|
|
2808
|
+
self.token_id
|
|
2809
|
+
if hasattr(self, "token_id")
|
|
2810
|
+
else None
|
|
2811
|
+
)
|
|
2812
|
+
_ach_identifier=(
|
|
2813
|
+
self.ach_identifier
|
|
2814
|
+
if hasattr(self, "ach_identifier")
|
|
2815
|
+
else None
|
|
2816
|
+
)
|
|
2817
|
+
_ach_sec_code=(
|
|
2818
|
+
self.ach_sec_code
|
|
2819
|
+
if hasattr(self, "ach_sec_code")
|
|
2820
|
+
else None
|
|
2821
|
+
)
|
|
2822
|
+
_auth_amount=(
|
|
2823
|
+
self.auth_amount
|
|
2824
|
+
if hasattr(self, "auth_amount")
|
|
2825
|
+
else None
|
|
2826
|
+
)
|
|
2827
|
+
_auth_code=(
|
|
2828
|
+
self.auth_code
|
|
2829
|
+
if hasattr(self, "auth_code")
|
|
2830
|
+
else None
|
|
2831
|
+
)
|
|
2832
|
+
_avs=(
|
|
2833
|
+
self.avs
|
|
2834
|
+
if hasattr(self, "avs")
|
|
2835
|
+
else None
|
|
2836
|
+
)
|
|
2837
|
+
_avs_enhanced=(
|
|
2838
|
+
self.avs_enhanced
|
|
2839
|
+
if hasattr(self, "avs_enhanced")
|
|
2840
|
+
else None
|
|
2841
|
+
)
|
|
2842
|
+
_cardholder_present=(
|
|
2843
|
+
self.cardholder_present
|
|
2844
|
+
if hasattr(self, "cardholder_present")
|
|
2845
|
+
else None
|
|
2846
|
+
)
|
|
2847
|
+
_card_present=(
|
|
2848
|
+
self.card_present
|
|
2849
|
+
if hasattr(self, "card_present")
|
|
2850
|
+
else None
|
|
2851
|
+
)
|
|
2852
|
+
_check_number=(
|
|
2853
|
+
self.check_number
|
|
2854
|
+
if hasattr(self, "check_number")
|
|
2855
|
+
else None
|
|
2856
|
+
)
|
|
2857
|
+
_customer_ip=(
|
|
2858
|
+
self.customer_ip
|
|
2859
|
+
if hasattr(self, "customer_ip")
|
|
2860
|
+
else None
|
|
2861
|
+
)
|
|
2862
|
+
_cvv_response=(
|
|
2863
|
+
self.cvv_response
|
|
2864
|
+
if hasattr(self, "cvv_response")
|
|
2865
|
+
else None
|
|
2866
|
+
)
|
|
2867
|
+
_entry_mode_id=(
|
|
2868
|
+
self.entry_mode_id
|
|
2869
|
+
if hasattr(self, "entry_mode_id")
|
|
2870
|
+
else None
|
|
2871
|
+
)
|
|
2872
|
+
_emv_receipt_data=(
|
|
2873
|
+
self.emv_receipt_data
|
|
2874
|
+
if hasattr(self, "emv_receipt_data")
|
|
2875
|
+
else None
|
|
2876
|
+
)
|
|
2877
|
+
_first_six=(
|
|
2878
|
+
self.first_six
|
|
2879
|
+
if hasattr(self, "first_six")
|
|
2880
|
+
else None
|
|
2881
|
+
)
|
|
2882
|
+
_last_four=(
|
|
2883
|
+
self.last_four
|
|
2884
|
+
if hasattr(self, "last_four")
|
|
2885
|
+
else None
|
|
2886
|
+
)
|
|
2887
|
+
_payment_method=(
|
|
2888
|
+
self.payment_method
|
|
2889
|
+
if hasattr(self, "payment_method")
|
|
2890
|
+
else None
|
|
2891
|
+
)
|
|
2892
|
+
_terminal_serial_number=(
|
|
2893
|
+
self.terminal_serial_number
|
|
2894
|
+
if hasattr(self, "terminal_serial_number")
|
|
2895
|
+
else None
|
|
2896
|
+
)
|
|
2897
|
+
_transaction_settlement_status=(
|
|
2898
|
+
self.transaction_settlement_status
|
|
2899
|
+
if hasattr(self, "transaction_settlement_status")
|
|
2900
|
+
else None
|
|
2901
|
+
)
|
|
2902
|
+
_charge_back_date=(
|
|
2903
|
+
self.charge_back_date
|
|
2904
|
+
if hasattr(self, "charge_back_date")
|
|
2905
|
+
else None
|
|
2906
|
+
)
|
|
2907
|
+
_is_recurring=(
|
|
2908
|
+
self.is_recurring
|
|
2909
|
+
if hasattr(self, "is_recurring")
|
|
2910
|
+
else None
|
|
2911
|
+
)
|
|
2912
|
+
_notification_email_sent=(
|
|
2913
|
+
self.notification_email_sent
|
|
2914
|
+
if hasattr(self, "notification_email_sent")
|
|
2915
|
+
else None
|
|
2916
|
+
)
|
|
2917
|
+
_par=(
|
|
2918
|
+
self.par
|
|
2919
|
+
if hasattr(self, "par")
|
|
2920
|
+
else None
|
|
2921
|
+
)
|
|
2922
|
+
_reason_code_id=(
|
|
2923
|
+
self.reason_code_id
|
|
2924
|
+
if hasattr(self, "reason_code_id")
|
|
2925
|
+
else None
|
|
2926
|
+
)
|
|
2927
|
+
_recurring_id=(
|
|
2928
|
+
self.recurring_id
|
|
2929
|
+
if hasattr(self, "recurring_id")
|
|
2930
|
+
else None
|
|
2931
|
+
)
|
|
2932
|
+
_settle_date=(
|
|
2933
|
+
self.settle_date
|
|
2934
|
+
if hasattr(self, "settle_date")
|
|
2935
|
+
else None
|
|
2936
|
+
)
|
|
2937
|
+
_status_code=(
|
|
2938
|
+
self.status_code
|
|
2939
|
+
if hasattr(self, "status_code")
|
|
2940
|
+
else None
|
|
2941
|
+
)
|
|
2942
|
+
_transaction_batch_id=(
|
|
2943
|
+
self.transaction_batch_id
|
|
2944
|
+
if hasattr(self, "transaction_batch_id")
|
|
2945
|
+
else None
|
|
2946
|
+
)
|
|
2947
|
+
_type_id=(
|
|
2948
|
+
self.type_id
|
|
2949
|
+
if hasattr(self, "type_id")
|
|
2950
|
+
else None
|
|
2951
|
+
)
|
|
2952
|
+
_verbiage=(
|
|
2953
|
+
self.verbiage
|
|
2954
|
+
if hasattr(self, "verbiage")
|
|
2955
|
+
else None
|
|
2956
|
+
)
|
|
2957
|
+
_voucher_number=(
|
|
2958
|
+
self.voucher_number
|
|
2959
|
+
if hasattr(self, "voucher_number")
|
|
2960
|
+
else None
|
|
2961
|
+
)
|
|
2962
|
+
_void_date=(
|
|
2963
|
+
self.void_date
|
|
2964
|
+
if hasattr(self, "void_date")
|
|
2965
|
+
else None
|
|
2966
|
+
)
|
|
2967
|
+
_batch=(
|
|
2968
|
+
self.batch
|
|
2969
|
+
if hasattr(self, "batch")
|
|
2970
|
+
else None
|
|
2971
|
+
)
|
|
2972
|
+
_terms_agree=(
|
|
2973
|
+
self.terms_agree
|
|
2974
|
+
if hasattr(self, "terms_agree")
|
|
2975
|
+
else None
|
|
2976
|
+
)
|
|
2977
|
+
_response_message=(
|
|
2978
|
+
self.response_message
|
|
2979
|
+
if hasattr(self, "response_message")
|
|
2980
|
+
else None
|
|
2981
|
+
)
|
|
2982
|
+
_return_date=(
|
|
2983
|
+
self.return_date
|
|
2984
|
+
if hasattr(self, "return_date")
|
|
2985
|
+
else None
|
|
2986
|
+
)
|
|
2987
|
+
_trx_source_id=(
|
|
2988
|
+
self.trx_source_id
|
|
2989
|
+
if hasattr(self, "trx_source_id")
|
|
2990
|
+
else None
|
|
2991
|
+
)
|
|
2992
|
+
_routing_number=(
|
|
2993
|
+
self.routing_number
|
|
2994
|
+
if hasattr(self, "routing_number")
|
|
2995
|
+
else None
|
|
2996
|
+
)
|
|
2997
|
+
_trx_source_code=(
|
|
2998
|
+
self.trx_source_code
|
|
2999
|
+
if hasattr(self, "trx_source_code")
|
|
3000
|
+
else None
|
|
3001
|
+
)
|
|
3002
|
+
_paylink_id=(
|
|
3003
|
+
self.paylink_id
|
|
3004
|
+
if hasattr(self, "paylink_id")
|
|
3005
|
+
else None
|
|
3006
|
+
)
|
|
3007
|
+
_is_accountvault=(
|
|
3008
|
+
self.is_accountvault
|
|
3009
|
+
if hasattr(self, "is_accountvault")
|
|
3010
|
+
else None
|
|
3011
|
+
)
|
|
3012
|
+
_created_user_id=(
|
|
3013
|
+
self.created_user_id
|
|
3014
|
+
if hasattr(self, "created_user_id")
|
|
3015
|
+
else None
|
|
3016
|
+
)
|
|
3017
|
+
_modified_user_id=(
|
|
3018
|
+
self.modified_user_id
|
|
3019
|
+
if hasattr(self, "modified_user_id")
|
|
3020
|
+
else None
|
|
3021
|
+
)
|
|
3022
|
+
_transaction_code=(
|
|
3023
|
+
self.transaction_code
|
|
3024
|
+
if hasattr(self, "transaction_code")
|
|
3025
|
+
else None
|
|
3026
|
+
)
|
|
3027
|
+
_effective_date=(
|
|
3028
|
+
self.effective_date
|
|
3029
|
+
if hasattr(self, "effective_date")
|
|
3030
|
+
else None
|
|
3031
|
+
)
|
|
3032
|
+
_notification_phone=(
|
|
3033
|
+
self.notification_phone
|
|
3034
|
+
if hasattr(self, "notification_phone")
|
|
3035
|
+
else None
|
|
3036
|
+
)
|
|
3037
|
+
_cavv_result=(
|
|
3038
|
+
self.cavv_result
|
|
3039
|
+
if hasattr(self, "cavv_result")
|
|
3040
|
+
else None
|
|
3041
|
+
)
|
|
3042
|
+
_is_token=(
|
|
3043
|
+
self.is_token
|
|
3044
|
+
if hasattr(self, "is_token")
|
|
3045
|
+
else None
|
|
3046
|
+
)
|
|
3047
|
+
_account_vault_id=(
|
|
3048
|
+
self.account_vault_id
|
|
3049
|
+
if hasattr(self, "account_vault_id")
|
|
3050
|
+
else None
|
|
3051
|
+
)
|
|
3052
|
+
_hosted_payment_page_id=(
|
|
3053
|
+
self.hosted_payment_page_id
|
|
3054
|
+
if hasattr(self, "hosted_payment_page_id")
|
|
3055
|
+
else None
|
|
3056
|
+
)
|
|
3057
|
+
_stan=(
|
|
3058
|
+
self.stan
|
|
3059
|
+
if hasattr(self, "stan")
|
|
3060
|
+
else None
|
|
3061
|
+
)
|
|
3062
|
+
_currency=(
|
|
3063
|
+
self.currency
|
|
3064
|
+
if hasattr(self, "currency")
|
|
3065
|
+
else None
|
|
3066
|
+
)
|
|
3067
|
+
_card_bin=(
|
|
3068
|
+
self.card_bin
|
|
3069
|
+
if hasattr(self, "card_bin")
|
|
3070
|
+
else None
|
|
3071
|
+
)
|
|
3072
|
+
_wallet_type=(
|
|
3073
|
+
self.wallet_type
|
|
3074
|
+
if hasattr(self, "wallet_type")
|
|
3075
|
+
else None
|
|
3076
|
+
)
|
|
3077
|
+
_additional_properties=self.additional_properties
|
|
3078
|
+
return (
|
|
3079
|
+
f"{self.__class__.__name__}("
|
|
3080
|
+
f"additional_amounts={_additional_amounts!s}, "
|
|
3081
|
+
f"billing_address={_billing_address!s}, "
|
|
3082
|
+
f"checkin_date={_checkin_date!s}, "
|
|
3083
|
+
f"checkout_date={_checkout_date!s}, "
|
|
3084
|
+
f"clerk_number={_clerk_number!s}, "
|
|
3085
|
+
f"contact_api_id={_contact_api_id!s}, "
|
|
3086
|
+
f"contact_id={_contact_id!s}, "
|
|
3087
|
+
f"custom_data={_custom_data!s}, "
|
|
3088
|
+
f"customer_id={_customer_id!s}, "
|
|
3089
|
+
f"description={_description!s}, "
|
|
3090
|
+
f"identity_verification={_identity_verification!s}, "
|
|
3091
|
+
f"iias_ind={_iias_ind!s}, "
|
|
3092
|
+
f"image_front={_image_front!s}, "
|
|
3093
|
+
f"image_back={_image_back!s}, "
|
|
3094
|
+
f"installment={_installment!s}, "
|
|
3095
|
+
f"installment_number={_installment_number!s}, "
|
|
3096
|
+
f"installment_count={_installment_count!s}, "
|
|
3097
|
+
f"recurring_flag={_recurring_flag!s}, "
|
|
3098
|
+
f"installment_counter={_installment_counter!s}, "
|
|
3099
|
+
f"installment_total={_installment_total!s}, "
|
|
3100
|
+
f"subscription={_subscription!s}, "
|
|
3101
|
+
f"standing_order={_standing_order!s}, "
|
|
3102
|
+
f"location_api_id={_location_api_id!s}, "
|
|
3103
|
+
f"location_id={_location_id!s}, "
|
|
3104
|
+
f"product_transaction_id={_product_transaction_id!s}, "
|
|
3105
|
+
f"advance_deposit={_advance_deposit!s}, "
|
|
3106
|
+
f"no_show={_no_show!s}, "
|
|
3107
|
+
f"notification_email_address={_notification_email_address!s}, "
|
|
3108
|
+
f"order_number={_order_number!s}, "
|
|
3109
|
+
f"po_number={_po_number!s}, "
|
|
3110
|
+
f"quick_invoice_id={_quick_invoice_id!s}, "
|
|
3111
|
+
f"recurring={_recurring!s}, "
|
|
3112
|
+
f"recurring_number={_recurring_number!s}, "
|
|
3113
|
+
f"room_num={_room_num!s}, "
|
|
3114
|
+
f"room_rate={_room_rate!s}, "
|
|
3115
|
+
f"save_account={_save_account!s}, "
|
|
3116
|
+
f"save_account_title={_save_account_title!s}, "
|
|
3117
|
+
f"subtotal_amount={_subtotal_amount!s}, "
|
|
3118
|
+
f"surcharge_amount={_surcharge_amount!s}, "
|
|
3119
|
+
f"tags={_tags!s}, "
|
|
3120
|
+
f"tax={_tax!s}, "
|
|
3121
|
+
f"tip_amount={_tip_amount!s}, "
|
|
3122
|
+
f"transaction_amount={_transaction_amount!s}, "
|
|
3123
|
+
f"secondary_amount={_secondary_amount!s}, "
|
|
3124
|
+
f"transaction_api_id={_transaction_api_id!s}, "
|
|
3125
|
+
f"transaction_c_1={_transaction_c_1!s}, "
|
|
3126
|
+
f"transaction_c_2={_transaction_c_2!s}, "
|
|
3127
|
+
f"transaction_c_3={_transaction_c_3!s}, "
|
|
3128
|
+
f"bank_funded_only_override={_bank_funded_only_override!s}, "
|
|
3129
|
+
f"allow_partial_authorization_override={_allow_partial_authorization_override!s}, "
|
|
3130
|
+
f"auto_decline_cvv_override={_auto_decline_cvv_override!s}, "
|
|
3131
|
+
f"auto_decline_street_override={_auto_decline_street_override!s}, "
|
|
3132
|
+
f"auto_decline_zip_override={_auto_decline_zip_override!s}, "
|
|
3133
|
+
f"ebt_type={_ebt_type!s}, "
|
|
3134
|
+
f"currency_code={_currency_code!s}, "
|
|
3135
|
+
f"id={_id!s}, "
|
|
3136
|
+
f"created_ts={_created_ts!s}, "
|
|
3137
|
+
f"modified_ts={_modified_ts!s}, "
|
|
3138
|
+
f"terminal_id={_terminal_id!s}, "
|
|
3139
|
+
f"account_holder_name={_account_holder_name!s}, "
|
|
3140
|
+
f"account_type={_account_type!s}, "
|
|
3141
|
+
f"token_api_id={_token_api_id!s}, "
|
|
3142
|
+
f"token_id={_token_id!s}, "
|
|
3143
|
+
f"ach_identifier={_ach_identifier!s}, "
|
|
3144
|
+
f"ach_sec_code={_ach_sec_code!s}, "
|
|
3145
|
+
f"auth_amount={_auth_amount!s}, "
|
|
3146
|
+
f"auth_code={_auth_code!s}, "
|
|
3147
|
+
f"avs={_avs!s}, "
|
|
3148
|
+
f"avs_enhanced={_avs_enhanced!s}, "
|
|
3149
|
+
f"cardholder_present={_cardholder_present!s}, "
|
|
3150
|
+
f"card_present={_card_present!s}, "
|
|
3151
|
+
f"check_number={_check_number!s}, "
|
|
3152
|
+
f"customer_ip={_customer_ip!s}, "
|
|
3153
|
+
f"cvv_response={_cvv_response!s}, "
|
|
3154
|
+
f"entry_mode_id={_entry_mode_id!s}, "
|
|
3155
|
+
f"emv_receipt_data={_emv_receipt_data!s}, "
|
|
3156
|
+
f"first_six={_first_six!s}, "
|
|
3157
|
+
f"last_four={_last_four!s}, "
|
|
3158
|
+
f"payment_method={_payment_method!s}, "
|
|
3159
|
+
f"terminal_serial_number={_terminal_serial_number!s}, "
|
|
3160
|
+
f"transaction_settlement_status={_transaction_settlement_status!s}, "
|
|
3161
|
+
f"charge_back_date={_charge_back_date!s}, "
|
|
3162
|
+
f"is_recurring={_is_recurring!s}, "
|
|
3163
|
+
f"notification_email_sent={_notification_email_sent!s}, "
|
|
3164
|
+
f"par={_par!s}, "
|
|
3165
|
+
f"reason_code_id={_reason_code_id!s}, "
|
|
3166
|
+
f"recurring_id={_recurring_id!s}, "
|
|
3167
|
+
f"settle_date={_settle_date!s}, "
|
|
3168
|
+
f"status_code={_status_code!s}, "
|
|
3169
|
+
f"transaction_batch_id={_transaction_batch_id!s}, "
|
|
3170
|
+
f"type_id={_type_id!s}, "
|
|
3171
|
+
f"verbiage={_verbiage!s}, "
|
|
3172
|
+
f"voucher_number={_voucher_number!s}, "
|
|
3173
|
+
f"void_date={_void_date!s}, "
|
|
3174
|
+
f"batch={_batch!s}, "
|
|
3175
|
+
f"terms_agree={_terms_agree!s}, "
|
|
3176
|
+
f"response_message={_response_message!s}, "
|
|
3177
|
+
f"return_date={_return_date!s}, "
|
|
3178
|
+
f"trx_source_id={_trx_source_id!s}, "
|
|
3179
|
+
f"routing_number={_routing_number!s}, "
|
|
3180
|
+
f"trx_source_code={_trx_source_code!s}, "
|
|
3181
|
+
f"paylink_id={_paylink_id!s}, "
|
|
3182
|
+
f"is_accountvault={_is_accountvault!s}, "
|
|
3183
|
+
f"created_user_id={_created_user_id!s}, "
|
|
3184
|
+
f"modified_user_id={_modified_user_id!s}, "
|
|
3185
|
+
f"transaction_code={_transaction_code!s}, "
|
|
3186
|
+
f"effective_date={_effective_date!s}, "
|
|
3187
|
+
f"notification_phone={_notification_phone!s}, "
|
|
3188
|
+
f"cavv_result={_cavv_result!s}, "
|
|
3189
|
+
f"is_token={_is_token!s}, "
|
|
3190
|
+
f"account_vault_id={_account_vault_id!s}, "
|
|
3191
|
+
f"hosted_payment_page_id={_hosted_payment_page_id!s}, "
|
|
3192
|
+
f"stan={_stan!s}, "
|
|
3193
|
+
f"currency={_currency!s}, "
|
|
3194
|
+
f"card_bin={_card_bin!s}, "
|
|
3195
|
+
f"wallet_type={_wallet_type!s}, "
|
|
3196
|
+
f"additional_properties={_additional_properties!s}, "
|
|
3197
|
+
f")"
|
|
3198
|
+
)
|