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,2164 @@
|
|
|
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.identity_verification import (
|
|
15
|
+
IdentityVerification,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class V1TransactionsCcAuthOnlyKeyedRequest(object):
|
|
20
|
+
"""Implementation of the 'V1 Transactions Cc Auth Only Keyed Request' model.
|
|
21
|
+
|
|
22
|
+
Attributes:
|
|
23
|
+
additional_amounts (List[AdditionalAmount]): Additional amounts
|
|
24
|
+
billing_address (BillingAddress1): Billing Address Object
|
|
25
|
+
checkin_date (str): Checkin Date - The time difference between checkin_date
|
|
26
|
+
and checkout_date must be less than or equal to 99 days. NOTE: if
|
|
27
|
+
checkin_date is in the future, set the advance_deposit to 1 >Required if
|
|
28
|
+
merchant industry type is lodging. >
|
|
29
|
+
checkout_date (str): Checkout Date - The time difference between checkin_date
|
|
30
|
+
and checkout_date must be less than or equal to 99 days. >Required if
|
|
31
|
+
merchant industry type is lodging. >
|
|
32
|
+
clerk_number (str): Clerk or Employee Identifier
|
|
33
|
+
contact_api_id (str): This can be supplied in place of contact_id if you
|
|
34
|
+
would like to use a contact for the transaction and are using your own
|
|
35
|
+
custom api_id's to track contacts in the system.
|
|
36
|
+
contact_id (str): If contact_id is provided, ensure it belongs to the same
|
|
37
|
+
location as the transaction. You cannot move transaction across locations.
|
|
38
|
+
custom_data (Any): A field that allows custom JSON to be entered to store
|
|
39
|
+
extra data.
|
|
40
|
+
customer_id (str): Can be used by Merchants to identify Contacts in our
|
|
41
|
+
system by an ID from another system.
|
|
42
|
+
description (str): Description
|
|
43
|
+
identity_verification (IdentityVerification): Identity Verification
|
|
44
|
+
iias_ind (IiasIndEnum): Possible values are '0', '1','2'
|
|
45
|
+
image_front (str): A base64 encoded string for the image. Used with Check21
|
|
46
|
+
ACH transactions.
|
|
47
|
+
image_back (str): A base64 encoded string for the image. Used with Check21
|
|
48
|
+
ACH transactions.
|
|
49
|
+
installment (bool): Flag that is allowed to be passed on card not present
|
|
50
|
+
industries to signify the transaction is a fixed installment plan
|
|
51
|
+
transaction.
|
|
52
|
+
installment_number (int): If this is a fixed installment plan and installment
|
|
53
|
+
field is being passed as 1, then this field must have a vlue of 1-999
|
|
54
|
+
specifying the current installment number that is running.
|
|
55
|
+
installment_count (int): If this is a fixed installment plan and installment
|
|
56
|
+
field is being passed as 1, then this field must have a vlue of 1-999
|
|
57
|
+
specifying the total number of installments on the plan. This number must
|
|
58
|
+
be grater than or equal to installment_number.
|
|
59
|
+
recurring_flag (RecurringFlagEnum): Recurring Flag
|
|
60
|
+
installment_counter (int): Installment Counter
|
|
61
|
+
installment_total (int): Installment Total
|
|
62
|
+
subscription (bool): Subscription
|
|
63
|
+
standing_order (bool): Standing Order
|
|
64
|
+
location_api_id (str): This can be supplied in place of location_id for the
|
|
65
|
+
transaction if you are using your own custom api_id's for your locations.
|
|
66
|
+
location_id (str): A valid Location Id to associate the transaction with.
|
|
67
|
+
product_transaction_id (str): The Product's method (cc/ach) has to match the
|
|
68
|
+
action. If not provided, the API will use the default configured for the
|
|
69
|
+
Location.
|
|
70
|
+
advance_deposit (bool): Advance Deposit
|
|
71
|
+
no_show (bool): Used in Lodging
|
|
72
|
+
notification_email_address (str): If email is supplied then receipt will be
|
|
73
|
+
emailed
|
|
74
|
+
order_number (str): Required for CC transactions , if merchant's deposit
|
|
75
|
+
account's duplicate check per batch has 'order_number' field
|
|
76
|
+
po_number (str): Purchase Order number
|
|
77
|
+
quick_invoice_id (str): Can be used to associate a transaction to a Quick
|
|
78
|
+
Invoice. Quick Invoice transactions will have a value for this field
|
|
79
|
+
automatically.
|
|
80
|
+
recurring (bool): Flag that is allowed to be passed on card not present
|
|
81
|
+
industries to signify the transaction is an ongoing recurring
|
|
82
|
+
transaction. Possible values to send are 0 or 1. This field must be 0 or
|
|
83
|
+
not present if installment is sent as 1.
|
|
84
|
+
recurring_number (int): If this is an ongoing recurring and recurring field
|
|
85
|
+
is being passed as 1, then this field must have a vlue of 1-999
|
|
86
|
+
specifying the current recurring number that is running.
|
|
87
|
+
room_num (str): Used in Lodging
|
|
88
|
+
room_rate (int): Required if merchant industry type is lodging.
|
|
89
|
+
save_account (bool): Specifies to save account to contacts profile if
|
|
90
|
+
account_number/track_data is present with either contact_id or
|
|
91
|
+
contact_api_id in params.
|
|
92
|
+
save_account_title (str): If saving token while running a transaction, this
|
|
93
|
+
will be the title of the token.
|
|
94
|
+
subtotal_amount (int): This field is allowed and required for transactions
|
|
95
|
+
that have a product where surcharge is configured. Use only integer
|
|
96
|
+
numbers, so $10.99 will be 1099.
|
|
97
|
+
surcharge_amount (int): This field is allowed and required for transactions
|
|
98
|
+
that have a product where surcharge is configured. Use only integer
|
|
99
|
+
numbers, so $10.99 will be 1099.
|
|
100
|
+
tags (List[str]): Tags
|
|
101
|
+
tax (int): The total tax amount for the transaction, including any tax on the
|
|
102
|
+
surcharge (Extra Tax).
|
|
103
|
+
tip_amount (int): Optional tip amount. Tip is not supported for lodging and
|
|
104
|
+
ecommerce merchants. Use only integer numbers, so $10.99 will be 1099.
|
|
105
|
+
transaction_amount (int): Amount of the transaction. This should always be
|
|
106
|
+
the desired settle amount of the transaction. Use only integer numbers,
|
|
107
|
+
so $10.99 will be 1099.
|
|
108
|
+
secondary_amount (int): Retained Amount of the transaction. This should
|
|
109
|
+
always be less than transaction amount. Use only integer numbers, so
|
|
110
|
+
$10.99 will be 1099
|
|
111
|
+
transaction_api_id (str): See api_id page for more details
|
|
112
|
+
transaction_c_1 (str): Custom field 1 for api users to store custom data
|
|
113
|
+
transaction_c_2 (str): Custom field 2 for api users to store custom data
|
|
114
|
+
transaction_c_3 (str): Custom field 3 for api users to store custom data
|
|
115
|
+
bank_funded_only_override (bool): Bank Funded Only Override
|
|
116
|
+
allow_partial_authorization_override (bool): Allow Partial Authorization
|
|
117
|
+
Override
|
|
118
|
+
auto_decline_cvv_override (bool): Auto Decline CVV Override
|
|
119
|
+
auto_decline_street_override (bool): Auto Decline Street Override
|
|
120
|
+
auto_decline_zip_override (bool): Auto Decline Zip Override
|
|
121
|
+
ebt_type (EbtTypeEnum): EBT Type
|
|
122
|
+
currency_code (CurrencyCodeEnum): The currency code, in ISO 4217 format. It
|
|
123
|
+
can be either the 3-letter code (e.g., USD) or the numeric code (e.g.,
|
|
124
|
+
840).
|
|
125
|
+
cardholder_present (bool): If the cardholder is present at the point of
|
|
126
|
+
service
|
|
127
|
+
card_present (bool): A POST only field to specify whether or not the card is
|
|
128
|
+
present. >This field will be defaulted to '1' for all card present
|
|
129
|
+
industries (retail, lodging, restaurant) and '0' for card not present
|
|
130
|
+
industries (MOTO/e-commerce). For lodging, if the no_show flag is set to
|
|
131
|
+
'1', this field will automatically be set to '0'. For transactions where
|
|
132
|
+
account_vault_id is used, this filed will be set to '0'. >
|
|
133
|
+
secure_auth_data (str): (ECOMM) The token authentication value associated
|
|
134
|
+
with 3D secure transactions (Such as CAVV, UCAF auth data)
|
|
135
|
+
secure_protocol_version (int): (ECOMM) Secure Program Protocol Version
|
|
136
|
+
secure_collection_indicator (int): (ECOMM) Used for UCAF collection indicator
|
|
137
|
+
or Discover Autentication type
|
|
138
|
+
secure_cryptogram (str): (ECOMM) Used to supply the Digital Payment
|
|
139
|
+
Cryptogram obtained from a Digital Secure Remote Payment (DSRP)
|
|
140
|
+
transaction
|
|
141
|
+
secure_directory_server_transaction_id (str): (ECOMM) Directory Server
|
|
142
|
+
Transaction ID (Such as XID, TAVV)
|
|
143
|
+
secure_ecomm_url (str): (ECOMM) This field is used to enter a merchant
|
|
144
|
+
identifier such as the Merchant URL or reverse domain name as presented
|
|
145
|
+
to the consumer during the checkout process for a Digital Secure Remote
|
|
146
|
+
payment transaction
|
|
147
|
+
terminal_serial_number (str): If transaction was processed using a terminal,
|
|
148
|
+
this field would contain the terminal's serial number
|
|
149
|
+
threedsecure (bool): (ECOMM) Specify if the transaction is obtained by
|
|
150
|
+
3DSecure.
|
|
151
|
+
three_ds_server_trans_id (str): 3DS Server Transaction ID. If this field is
|
|
152
|
+
sent and 3DS authentication was done with Fortis, the 3DS fields
|
|
153
|
+
secure_directory_server_transaction_id, secure_protocol_version, and
|
|
154
|
+
secure_collection_indicator will be pre-populated.
|
|
155
|
+
wallet_type (WalletTypeEnum): This value provides information from where the
|
|
156
|
+
transaction was initialized (Such as In-App provider) >000 - Unknown
|
|
157
|
+
wallet type (i.e., Discover PayButton) > >101 - MasterPass by MasterCard
|
|
158
|
+
> >103 - Apple Pay > >216 - Google Pay > >217 - Samsung Pay > >327 -
|
|
159
|
+
Merchant tokenization program >
|
|
160
|
+
clerk_id (str): Clerk ID
|
|
161
|
+
voucher_number (str): Voucher Number
|
|
162
|
+
initiation_type (InitiationTypeEnum): Initiation Type
|
|
163
|
+
bill_payment (bool): If transaction is a bill payment
|
|
164
|
+
delay_charge (bool): Delay Charge
|
|
165
|
+
deferred_auth (bool): Deferred Auth
|
|
166
|
+
mini_bar (bool): Mini Bar
|
|
167
|
+
ebt_food_eligible_amount (int): EBT Food Eligible Amount
|
|
168
|
+
ebt_cash_eligible_amount (int): EBT Cash Eligible Amount
|
|
169
|
+
extra_tax (int): The tax amount that applies specifically to the surcharge,
|
|
170
|
+
if applicable.
|
|
171
|
+
account_holder_name (str): For CC, this is the 'Name (as it appears) on
|
|
172
|
+
Card'. For ACH, this is the 'Name on Account'. >Required for ACH
|
|
173
|
+
transactions if account_vault_id is not provided. For CC transactions
|
|
174
|
+
that are run through a terminal, this field may be overwritten by data
|
|
175
|
+
acquired from the credit card track data. >
|
|
176
|
+
account_number (str): For CC transactions, a credit card number. For ACH
|
|
177
|
+
transactions, a bank account number. >String lengths are conditional, CC
|
|
178
|
+
should be 13-19 and ACH should be 4-19. Required if account_vault_id ,
|
|
179
|
+
track_data, or micr_data is not provided. >
|
|
180
|
+
cvv (str): Required for CC transactions if vt_require_cvv is true on
|
|
181
|
+
producttransaction(Merchant Deposit Account).
|
|
182
|
+
entry_mode_id (EntryModeIdEnum): Entry Mode - See entry mode section for more
|
|
183
|
+
detail
|
|
184
|
+
exp_date (str): Required for CC. The Expiration Date for the credit card.
|
|
185
|
+
(MMYY format).
|
|
186
|
+
track_data (str): Track Data from a magnetic card swipe.
|
|
187
|
+
pin (str): Pin
|
|
188
|
+
ksn (str): KSN (Key Serial Number)
|
|
189
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
190
|
+
model.
|
|
191
|
+
|
|
192
|
+
"""
|
|
193
|
+
|
|
194
|
+
# Create a mapping from Model property names to API property names
|
|
195
|
+
_names = {
|
|
196
|
+
"transaction_amount": "transaction_amount",
|
|
197
|
+
"account_number": "account_number",
|
|
198
|
+
"exp_date": "exp_date",
|
|
199
|
+
"additional_amounts": "additional_amounts",
|
|
200
|
+
"billing_address": "billing_address",
|
|
201
|
+
"checkin_date": "checkin_date",
|
|
202
|
+
"checkout_date": "checkout_date",
|
|
203
|
+
"clerk_number": "clerk_number",
|
|
204
|
+
"contact_api_id": "contact_api_id",
|
|
205
|
+
"contact_id": "contact_id",
|
|
206
|
+
"custom_data": "custom_data",
|
|
207
|
+
"customer_id": "customer_id",
|
|
208
|
+
"description": "description",
|
|
209
|
+
"identity_verification": "identity_verification",
|
|
210
|
+
"iias_ind": "iias_ind",
|
|
211
|
+
"image_front": "image_front",
|
|
212
|
+
"image_back": "image_back",
|
|
213
|
+
"installment": "installment",
|
|
214
|
+
"installment_number": "installment_number",
|
|
215
|
+
"installment_count": "installment_count",
|
|
216
|
+
"recurring_flag": "recurring_flag",
|
|
217
|
+
"installment_counter": "installment_counter",
|
|
218
|
+
"installment_total": "installment_total",
|
|
219
|
+
"subscription": "subscription",
|
|
220
|
+
"standing_order": "standing_order",
|
|
221
|
+
"location_api_id": "location_api_id",
|
|
222
|
+
"location_id": "location_id",
|
|
223
|
+
"product_transaction_id": "product_transaction_id",
|
|
224
|
+
"advance_deposit": "advance_deposit",
|
|
225
|
+
"no_show": "no_show",
|
|
226
|
+
"notification_email_address": "notification_email_address",
|
|
227
|
+
"order_number": "order_number",
|
|
228
|
+
"po_number": "po_number",
|
|
229
|
+
"quick_invoice_id": "quick_invoice_id",
|
|
230
|
+
"recurring": "recurring",
|
|
231
|
+
"recurring_number": "recurring_number",
|
|
232
|
+
"room_num": "room_num",
|
|
233
|
+
"room_rate": "room_rate",
|
|
234
|
+
"save_account": "save_account",
|
|
235
|
+
"save_account_title": "save_account_title",
|
|
236
|
+
"subtotal_amount": "subtotal_amount",
|
|
237
|
+
"surcharge_amount": "surcharge_amount",
|
|
238
|
+
"tags": "tags",
|
|
239
|
+
"tax": "tax",
|
|
240
|
+
"tip_amount": "tip_amount",
|
|
241
|
+
"secondary_amount": "secondary_amount",
|
|
242
|
+
"transaction_api_id": "transaction_api_id",
|
|
243
|
+
"transaction_c_1": "transaction_c1",
|
|
244
|
+
"transaction_c_2": "transaction_c2",
|
|
245
|
+
"transaction_c_3": "transaction_c3",
|
|
246
|
+
"bank_funded_only_override": "bank_funded_only_override",
|
|
247
|
+
"allow_partial_authorization_override": "allow_partial_authorization_override",
|
|
248
|
+
"auto_decline_cvv_override": "auto_decline_cvv_override",
|
|
249
|
+
"auto_decline_street_override": "auto_decline_street_override",
|
|
250
|
+
"auto_decline_zip_override": "auto_decline_zip_override",
|
|
251
|
+
"ebt_type": "ebt_type",
|
|
252
|
+
"currency_code": "currency_code",
|
|
253
|
+
"cardholder_present": "cardholder_present",
|
|
254
|
+
"card_present": "card_present",
|
|
255
|
+
"secure_auth_data": "secure_auth_data",
|
|
256
|
+
"secure_protocol_version": "secure_protocol_version",
|
|
257
|
+
"secure_collection_indicator": "secure_collection_indicator",
|
|
258
|
+
"secure_cryptogram": "secure_cryptogram",
|
|
259
|
+
"secure_directory_server_transaction_id":
|
|
260
|
+
"secure_directory_server_transaction_id",
|
|
261
|
+
"secure_ecomm_url": "secure_ecomm_url",
|
|
262
|
+
"terminal_serial_number": "terminal_serial_number",
|
|
263
|
+
"threedsecure": "threedsecure",
|
|
264
|
+
"three_ds_server_trans_id": "three_ds_server_trans_id",
|
|
265
|
+
"wallet_type": "wallet_type",
|
|
266
|
+
"clerk_id": "clerk_id",
|
|
267
|
+
"voucher_number": "voucher_number",
|
|
268
|
+
"initiation_type": "initiation_type",
|
|
269
|
+
"bill_payment": "bill_payment",
|
|
270
|
+
"delay_charge": "delay_charge",
|
|
271
|
+
"deferred_auth": "deferred_auth",
|
|
272
|
+
"mini_bar": "mini_bar",
|
|
273
|
+
"ebt_food_eligible_amount": "ebt_food_eligible_amount",
|
|
274
|
+
"ebt_cash_eligible_amount": "ebt_cash_eligible_amount",
|
|
275
|
+
"extra_tax": "extra_tax",
|
|
276
|
+
"account_holder_name": "account_holder_name",
|
|
277
|
+
"cvv": "cvv",
|
|
278
|
+
"entry_mode_id": "entry_mode_id",
|
|
279
|
+
"track_data": "track_data",
|
|
280
|
+
"pin": "pin",
|
|
281
|
+
"ksn": "ksn",
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
_optionals = [
|
|
285
|
+
"additional_amounts",
|
|
286
|
+
"billing_address",
|
|
287
|
+
"checkin_date",
|
|
288
|
+
"checkout_date",
|
|
289
|
+
"clerk_number",
|
|
290
|
+
"contact_api_id",
|
|
291
|
+
"contact_id",
|
|
292
|
+
"custom_data",
|
|
293
|
+
"customer_id",
|
|
294
|
+
"description",
|
|
295
|
+
"identity_verification",
|
|
296
|
+
"iias_ind",
|
|
297
|
+
"image_front",
|
|
298
|
+
"image_back",
|
|
299
|
+
"installment",
|
|
300
|
+
"installment_number",
|
|
301
|
+
"installment_count",
|
|
302
|
+
"recurring_flag",
|
|
303
|
+
"installment_counter",
|
|
304
|
+
"installment_total",
|
|
305
|
+
"subscription",
|
|
306
|
+
"standing_order",
|
|
307
|
+
"location_api_id",
|
|
308
|
+
"location_id",
|
|
309
|
+
"product_transaction_id",
|
|
310
|
+
"advance_deposit",
|
|
311
|
+
"no_show",
|
|
312
|
+
"notification_email_address",
|
|
313
|
+
"order_number",
|
|
314
|
+
"po_number",
|
|
315
|
+
"quick_invoice_id",
|
|
316
|
+
"recurring",
|
|
317
|
+
"recurring_number",
|
|
318
|
+
"room_num",
|
|
319
|
+
"room_rate",
|
|
320
|
+
"save_account",
|
|
321
|
+
"save_account_title",
|
|
322
|
+
"subtotal_amount",
|
|
323
|
+
"surcharge_amount",
|
|
324
|
+
"tags",
|
|
325
|
+
"tax",
|
|
326
|
+
"tip_amount",
|
|
327
|
+
"secondary_amount",
|
|
328
|
+
"transaction_api_id",
|
|
329
|
+
"transaction_c_1",
|
|
330
|
+
"transaction_c_2",
|
|
331
|
+
"transaction_c_3",
|
|
332
|
+
"bank_funded_only_override",
|
|
333
|
+
"allow_partial_authorization_override",
|
|
334
|
+
"auto_decline_cvv_override",
|
|
335
|
+
"auto_decline_street_override",
|
|
336
|
+
"auto_decline_zip_override",
|
|
337
|
+
"ebt_type",
|
|
338
|
+
"currency_code",
|
|
339
|
+
"cardholder_present",
|
|
340
|
+
"card_present",
|
|
341
|
+
"secure_auth_data",
|
|
342
|
+
"secure_protocol_version",
|
|
343
|
+
"secure_collection_indicator",
|
|
344
|
+
"secure_cryptogram",
|
|
345
|
+
"secure_directory_server_transaction_id",
|
|
346
|
+
"secure_ecomm_url",
|
|
347
|
+
"terminal_serial_number",
|
|
348
|
+
"threedsecure",
|
|
349
|
+
"three_ds_server_trans_id",
|
|
350
|
+
"wallet_type",
|
|
351
|
+
"clerk_id",
|
|
352
|
+
"voucher_number",
|
|
353
|
+
"initiation_type",
|
|
354
|
+
"bill_payment",
|
|
355
|
+
"delay_charge",
|
|
356
|
+
"deferred_auth",
|
|
357
|
+
"mini_bar",
|
|
358
|
+
"ebt_food_eligible_amount",
|
|
359
|
+
"ebt_cash_eligible_amount",
|
|
360
|
+
"extra_tax",
|
|
361
|
+
"account_holder_name",
|
|
362
|
+
"cvv",
|
|
363
|
+
"entry_mode_id",
|
|
364
|
+
"track_data",
|
|
365
|
+
"pin",
|
|
366
|
+
"ksn",
|
|
367
|
+
]
|
|
368
|
+
|
|
369
|
+
_nullables = [
|
|
370
|
+
"checkin_date",
|
|
371
|
+
"checkout_date",
|
|
372
|
+
"clerk_number",
|
|
373
|
+
"contact_api_id",
|
|
374
|
+
"contact_id",
|
|
375
|
+
"customer_id",
|
|
376
|
+
"description",
|
|
377
|
+
"iias_ind",
|
|
378
|
+
"image_front",
|
|
379
|
+
"image_back",
|
|
380
|
+
"installment_number",
|
|
381
|
+
"installment_count",
|
|
382
|
+
"recurring_flag",
|
|
383
|
+
"installment_counter",
|
|
384
|
+
"installment_total",
|
|
385
|
+
"location_api_id",
|
|
386
|
+
"location_id",
|
|
387
|
+
"product_transaction_id",
|
|
388
|
+
"notification_email_address",
|
|
389
|
+
"order_number",
|
|
390
|
+
"po_number",
|
|
391
|
+
"quick_invoice_id",
|
|
392
|
+
"recurring_number",
|
|
393
|
+
"room_num",
|
|
394
|
+
"room_rate",
|
|
395
|
+
"save_account_title",
|
|
396
|
+
"subtotal_amount",
|
|
397
|
+
"surcharge_amount",
|
|
398
|
+
"tags",
|
|
399
|
+
"tax",
|
|
400
|
+
"tip_amount",
|
|
401
|
+
"secondary_amount",
|
|
402
|
+
"transaction_api_id",
|
|
403
|
+
"transaction_c_1",
|
|
404
|
+
"transaction_c_2",
|
|
405
|
+
"transaction_c_3",
|
|
406
|
+
"ebt_type",
|
|
407
|
+
"secure_auth_data",
|
|
408
|
+
"secure_protocol_version",
|
|
409
|
+
"secure_collection_indicator",
|
|
410
|
+
"secure_cryptogram",
|
|
411
|
+
"secure_directory_server_transaction_id",
|
|
412
|
+
"secure_ecomm_url",
|
|
413
|
+
"terminal_serial_number",
|
|
414
|
+
"three_ds_server_trans_id",
|
|
415
|
+
"wallet_type",
|
|
416
|
+
"clerk_id",
|
|
417
|
+
"voucher_number",
|
|
418
|
+
"initiation_type",
|
|
419
|
+
"ebt_food_eligible_amount",
|
|
420
|
+
"ebt_cash_eligible_amount",
|
|
421
|
+
"extra_tax",
|
|
422
|
+
"account_holder_name",
|
|
423
|
+
"cvv",
|
|
424
|
+
"entry_mode_id",
|
|
425
|
+
"track_data",
|
|
426
|
+
"pin",
|
|
427
|
+
"ksn",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
def __init__(
|
|
431
|
+
self,
|
|
432
|
+
transaction_amount=None,
|
|
433
|
+
account_number=None,
|
|
434
|
+
exp_date=None,
|
|
435
|
+
additional_amounts=APIHelper.SKIP,
|
|
436
|
+
billing_address=APIHelper.SKIP,
|
|
437
|
+
checkin_date=APIHelper.SKIP,
|
|
438
|
+
checkout_date=APIHelper.SKIP,
|
|
439
|
+
clerk_number=APIHelper.SKIP,
|
|
440
|
+
contact_api_id=APIHelper.SKIP,
|
|
441
|
+
contact_id=APIHelper.SKIP,
|
|
442
|
+
custom_data=APIHelper.SKIP,
|
|
443
|
+
customer_id=APIHelper.SKIP,
|
|
444
|
+
description=APIHelper.SKIP,
|
|
445
|
+
identity_verification=APIHelper.SKIP,
|
|
446
|
+
iias_ind=APIHelper.SKIP,
|
|
447
|
+
image_front=APIHelper.SKIP,
|
|
448
|
+
image_back=APIHelper.SKIP,
|
|
449
|
+
installment=APIHelper.SKIP,
|
|
450
|
+
installment_number=APIHelper.SKIP,
|
|
451
|
+
installment_count=APIHelper.SKIP,
|
|
452
|
+
recurring_flag=APIHelper.SKIP,
|
|
453
|
+
installment_counter=APIHelper.SKIP,
|
|
454
|
+
installment_total=APIHelper.SKIP,
|
|
455
|
+
subscription=APIHelper.SKIP,
|
|
456
|
+
standing_order=APIHelper.SKIP,
|
|
457
|
+
location_api_id=APIHelper.SKIP,
|
|
458
|
+
location_id=APIHelper.SKIP,
|
|
459
|
+
product_transaction_id=APIHelper.SKIP,
|
|
460
|
+
advance_deposit=APIHelper.SKIP,
|
|
461
|
+
no_show=APIHelper.SKIP,
|
|
462
|
+
notification_email_address=APIHelper.SKIP,
|
|
463
|
+
order_number=APIHelper.SKIP,
|
|
464
|
+
po_number=APIHelper.SKIP,
|
|
465
|
+
quick_invoice_id=APIHelper.SKIP,
|
|
466
|
+
recurring=APIHelper.SKIP,
|
|
467
|
+
recurring_number=APIHelper.SKIP,
|
|
468
|
+
room_num=APIHelper.SKIP,
|
|
469
|
+
room_rate=APIHelper.SKIP,
|
|
470
|
+
save_account=APIHelper.SKIP,
|
|
471
|
+
save_account_title=APIHelper.SKIP,
|
|
472
|
+
subtotal_amount=APIHelper.SKIP,
|
|
473
|
+
surcharge_amount=APIHelper.SKIP,
|
|
474
|
+
tags=APIHelper.SKIP,
|
|
475
|
+
tax=APIHelper.SKIP,
|
|
476
|
+
tip_amount=APIHelper.SKIP,
|
|
477
|
+
secondary_amount=APIHelper.SKIP,
|
|
478
|
+
transaction_api_id=APIHelper.SKIP,
|
|
479
|
+
transaction_c_1=APIHelper.SKIP,
|
|
480
|
+
transaction_c_2=APIHelper.SKIP,
|
|
481
|
+
transaction_c_3=APIHelper.SKIP,
|
|
482
|
+
bank_funded_only_override=APIHelper.SKIP,
|
|
483
|
+
allow_partial_authorization_override=APIHelper.SKIP,
|
|
484
|
+
auto_decline_cvv_override=APIHelper.SKIP,
|
|
485
|
+
auto_decline_street_override=APIHelper.SKIP,
|
|
486
|
+
auto_decline_zip_override=APIHelper.SKIP,
|
|
487
|
+
ebt_type=APIHelper.SKIP,
|
|
488
|
+
currency_code=APIHelper.SKIP,
|
|
489
|
+
cardholder_present=APIHelper.SKIP,
|
|
490
|
+
card_present=APIHelper.SKIP,
|
|
491
|
+
secure_auth_data=APIHelper.SKIP,
|
|
492
|
+
secure_protocol_version=APIHelper.SKIP,
|
|
493
|
+
secure_collection_indicator=APIHelper.SKIP,
|
|
494
|
+
secure_cryptogram=APIHelper.SKIP,
|
|
495
|
+
secure_directory_server_transaction_id=APIHelper.SKIP,
|
|
496
|
+
secure_ecomm_url=APIHelper.SKIP,
|
|
497
|
+
terminal_serial_number=APIHelper.SKIP,
|
|
498
|
+
threedsecure=APIHelper.SKIP,
|
|
499
|
+
three_ds_server_trans_id=APIHelper.SKIP,
|
|
500
|
+
wallet_type=APIHelper.SKIP,
|
|
501
|
+
clerk_id=APIHelper.SKIP,
|
|
502
|
+
voucher_number=APIHelper.SKIP,
|
|
503
|
+
initiation_type=APIHelper.SKIP,
|
|
504
|
+
bill_payment=APIHelper.SKIP,
|
|
505
|
+
delay_charge=APIHelper.SKIP,
|
|
506
|
+
deferred_auth=APIHelper.SKIP,
|
|
507
|
+
mini_bar=APIHelper.SKIP,
|
|
508
|
+
ebt_food_eligible_amount=APIHelper.SKIP,
|
|
509
|
+
ebt_cash_eligible_amount=APIHelper.SKIP,
|
|
510
|
+
extra_tax=APIHelper.SKIP,
|
|
511
|
+
account_holder_name=APIHelper.SKIP,
|
|
512
|
+
cvv=APIHelper.SKIP,
|
|
513
|
+
entry_mode_id=APIHelper.SKIP,
|
|
514
|
+
track_data=APIHelper.SKIP,
|
|
515
|
+
pin=APIHelper.SKIP,
|
|
516
|
+
ksn=APIHelper.SKIP,
|
|
517
|
+
additional_properties=None):
|
|
518
|
+
"""Initialize a V1TransactionsCcAuthOnlyKeyedRequest instance."""
|
|
519
|
+
# Initialize members of the class
|
|
520
|
+
if additional_amounts is not APIHelper.SKIP:
|
|
521
|
+
self.additional_amounts = additional_amounts
|
|
522
|
+
if billing_address is not APIHelper.SKIP:
|
|
523
|
+
self.billing_address = billing_address
|
|
524
|
+
if checkin_date is not APIHelper.SKIP:
|
|
525
|
+
self.checkin_date = checkin_date
|
|
526
|
+
if checkout_date is not APIHelper.SKIP:
|
|
527
|
+
self.checkout_date = checkout_date
|
|
528
|
+
if clerk_number is not APIHelper.SKIP:
|
|
529
|
+
self.clerk_number = clerk_number
|
|
530
|
+
if contact_api_id is not APIHelper.SKIP:
|
|
531
|
+
self.contact_api_id = contact_api_id
|
|
532
|
+
if contact_id is not APIHelper.SKIP:
|
|
533
|
+
self.contact_id = contact_id
|
|
534
|
+
if custom_data is not APIHelper.SKIP:
|
|
535
|
+
self.custom_data = custom_data
|
|
536
|
+
if customer_id is not APIHelper.SKIP:
|
|
537
|
+
self.customer_id = customer_id
|
|
538
|
+
if description is not APIHelper.SKIP:
|
|
539
|
+
self.description = description
|
|
540
|
+
if identity_verification is not APIHelper.SKIP:
|
|
541
|
+
self.identity_verification = identity_verification
|
|
542
|
+
if iias_ind is not APIHelper.SKIP:
|
|
543
|
+
self.iias_ind = iias_ind
|
|
544
|
+
if image_front is not APIHelper.SKIP:
|
|
545
|
+
self.image_front = image_front
|
|
546
|
+
if image_back is not APIHelper.SKIP:
|
|
547
|
+
self.image_back = image_back
|
|
548
|
+
if installment is not APIHelper.SKIP:
|
|
549
|
+
self.installment = installment
|
|
550
|
+
if installment_number is not APIHelper.SKIP:
|
|
551
|
+
self.installment_number = installment_number
|
|
552
|
+
if installment_count is not APIHelper.SKIP:
|
|
553
|
+
self.installment_count = installment_count
|
|
554
|
+
if recurring_flag is not APIHelper.SKIP:
|
|
555
|
+
self.recurring_flag = recurring_flag
|
|
556
|
+
if installment_counter is not APIHelper.SKIP:
|
|
557
|
+
self.installment_counter = installment_counter
|
|
558
|
+
if installment_total is not APIHelper.SKIP:
|
|
559
|
+
self.installment_total = installment_total
|
|
560
|
+
if subscription is not APIHelper.SKIP:
|
|
561
|
+
self.subscription = subscription
|
|
562
|
+
if standing_order is not APIHelper.SKIP:
|
|
563
|
+
self.standing_order = standing_order
|
|
564
|
+
if location_api_id is not APIHelper.SKIP:
|
|
565
|
+
self.location_api_id = location_api_id
|
|
566
|
+
if location_id is not APIHelper.SKIP:
|
|
567
|
+
self.location_id = location_id
|
|
568
|
+
if product_transaction_id is not APIHelper.SKIP:
|
|
569
|
+
self.product_transaction_id = product_transaction_id
|
|
570
|
+
if advance_deposit is not APIHelper.SKIP:
|
|
571
|
+
self.advance_deposit = advance_deposit
|
|
572
|
+
if no_show is not APIHelper.SKIP:
|
|
573
|
+
self.no_show = no_show
|
|
574
|
+
if notification_email_address is not APIHelper.SKIP:
|
|
575
|
+
self.notification_email_address = notification_email_address
|
|
576
|
+
if order_number is not APIHelper.SKIP:
|
|
577
|
+
self.order_number = order_number
|
|
578
|
+
if po_number is not APIHelper.SKIP:
|
|
579
|
+
self.po_number = po_number
|
|
580
|
+
if quick_invoice_id is not APIHelper.SKIP:
|
|
581
|
+
self.quick_invoice_id = quick_invoice_id
|
|
582
|
+
if recurring is not APIHelper.SKIP:
|
|
583
|
+
self.recurring = recurring
|
|
584
|
+
if recurring_number is not APIHelper.SKIP:
|
|
585
|
+
self.recurring_number = recurring_number
|
|
586
|
+
if room_num is not APIHelper.SKIP:
|
|
587
|
+
self.room_num = room_num
|
|
588
|
+
if room_rate is not APIHelper.SKIP:
|
|
589
|
+
self.room_rate = room_rate
|
|
590
|
+
if save_account is not APIHelper.SKIP:
|
|
591
|
+
self.save_account = save_account
|
|
592
|
+
if save_account_title is not APIHelper.SKIP:
|
|
593
|
+
self.save_account_title = save_account_title
|
|
594
|
+
if subtotal_amount is not APIHelper.SKIP:
|
|
595
|
+
self.subtotal_amount = subtotal_amount
|
|
596
|
+
if surcharge_amount is not APIHelper.SKIP:
|
|
597
|
+
self.surcharge_amount = surcharge_amount
|
|
598
|
+
if tags is not APIHelper.SKIP:
|
|
599
|
+
self.tags = tags
|
|
600
|
+
if tax is not APIHelper.SKIP:
|
|
601
|
+
self.tax = tax
|
|
602
|
+
if tip_amount is not APIHelper.SKIP:
|
|
603
|
+
self.tip_amount = tip_amount
|
|
604
|
+
self.transaction_amount = transaction_amount
|
|
605
|
+
if secondary_amount is not APIHelper.SKIP:
|
|
606
|
+
self.secondary_amount = secondary_amount
|
|
607
|
+
if transaction_api_id is not APIHelper.SKIP:
|
|
608
|
+
self.transaction_api_id = transaction_api_id
|
|
609
|
+
if transaction_c_1 is not APIHelper.SKIP:
|
|
610
|
+
self.transaction_c_1 = transaction_c_1
|
|
611
|
+
if transaction_c_2 is not APIHelper.SKIP:
|
|
612
|
+
self.transaction_c_2 = transaction_c_2
|
|
613
|
+
if transaction_c_3 is not APIHelper.SKIP:
|
|
614
|
+
self.transaction_c_3 = transaction_c_3
|
|
615
|
+
if bank_funded_only_override is not APIHelper.SKIP:
|
|
616
|
+
self.bank_funded_only_override = bank_funded_only_override
|
|
617
|
+
if allow_partial_authorization_override is not APIHelper.SKIP:
|
|
618
|
+
self.allow_partial_authorization_override =\
|
|
619
|
+
allow_partial_authorization_override
|
|
620
|
+
if auto_decline_cvv_override is not APIHelper.SKIP:
|
|
621
|
+
self.auto_decline_cvv_override = auto_decline_cvv_override
|
|
622
|
+
if auto_decline_street_override is not APIHelper.SKIP:
|
|
623
|
+
self.auto_decline_street_override = auto_decline_street_override
|
|
624
|
+
if auto_decline_zip_override is not APIHelper.SKIP:
|
|
625
|
+
self.auto_decline_zip_override = auto_decline_zip_override
|
|
626
|
+
if ebt_type is not APIHelper.SKIP:
|
|
627
|
+
self.ebt_type = ebt_type
|
|
628
|
+
if currency_code is not APIHelper.SKIP:
|
|
629
|
+
self.currency_code = currency_code
|
|
630
|
+
if cardholder_present is not APIHelper.SKIP:
|
|
631
|
+
self.cardholder_present = cardholder_present
|
|
632
|
+
if card_present is not APIHelper.SKIP:
|
|
633
|
+
self.card_present = card_present
|
|
634
|
+
if secure_auth_data is not APIHelper.SKIP:
|
|
635
|
+
self.secure_auth_data = secure_auth_data
|
|
636
|
+
if secure_protocol_version is not APIHelper.SKIP:
|
|
637
|
+
self.secure_protocol_version = secure_protocol_version
|
|
638
|
+
if secure_collection_indicator is not APIHelper.SKIP:
|
|
639
|
+
self.secure_collection_indicator = secure_collection_indicator
|
|
640
|
+
if secure_cryptogram is not APIHelper.SKIP:
|
|
641
|
+
self.secure_cryptogram = secure_cryptogram
|
|
642
|
+
if secure_directory_server_transaction_id is not APIHelper.SKIP:
|
|
643
|
+
self.secure_directory_server_transaction_id =\
|
|
644
|
+
secure_directory_server_transaction_id
|
|
645
|
+
if secure_ecomm_url is not APIHelper.SKIP:
|
|
646
|
+
self.secure_ecomm_url = secure_ecomm_url
|
|
647
|
+
if terminal_serial_number is not APIHelper.SKIP:
|
|
648
|
+
self.terminal_serial_number = terminal_serial_number
|
|
649
|
+
if threedsecure is not APIHelper.SKIP:
|
|
650
|
+
self.threedsecure = threedsecure
|
|
651
|
+
if three_ds_server_trans_id is not APIHelper.SKIP:
|
|
652
|
+
self.three_ds_server_trans_id = three_ds_server_trans_id
|
|
653
|
+
if wallet_type is not APIHelper.SKIP:
|
|
654
|
+
self.wallet_type = wallet_type
|
|
655
|
+
if clerk_id is not APIHelper.SKIP:
|
|
656
|
+
self.clerk_id = clerk_id
|
|
657
|
+
if voucher_number is not APIHelper.SKIP:
|
|
658
|
+
self.voucher_number = voucher_number
|
|
659
|
+
if initiation_type is not APIHelper.SKIP:
|
|
660
|
+
self.initiation_type = initiation_type
|
|
661
|
+
if bill_payment is not APIHelper.SKIP:
|
|
662
|
+
self.bill_payment = bill_payment
|
|
663
|
+
if delay_charge is not APIHelper.SKIP:
|
|
664
|
+
self.delay_charge = delay_charge
|
|
665
|
+
if deferred_auth is not APIHelper.SKIP:
|
|
666
|
+
self.deferred_auth = deferred_auth
|
|
667
|
+
if mini_bar is not APIHelper.SKIP:
|
|
668
|
+
self.mini_bar = mini_bar
|
|
669
|
+
if ebt_food_eligible_amount is not APIHelper.SKIP:
|
|
670
|
+
self.ebt_food_eligible_amount = ebt_food_eligible_amount
|
|
671
|
+
if ebt_cash_eligible_amount is not APIHelper.SKIP:
|
|
672
|
+
self.ebt_cash_eligible_amount = ebt_cash_eligible_amount
|
|
673
|
+
if extra_tax is not APIHelper.SKIP:
|
|
674
|
+
self.extra_tax = extra_tax
|
|
675
|
+
if account_holder_name is not APIHelper.SKIP:
|
|
676
|
+
self.account_holder_name = account_holder_name
|
|
677
|
+
self.account_number = account_number
|
|
678
|
+
if cvv is not APIHelper.SKIP:
|
|
679
|
+
self.cvv = cvv
|
|
680
|
+
if entry_mode_id is not APIHelper.SKIP:
|
|
681
|
+
self.entry_mode_id = entry_mode_id
|
|
682
|
+
self.exp_date = exp_date
|
|
683
|
+
if track_data is not APIHelper.SKIP:
|
|
684
|
+
self.track_data = track_data
|
|
685
|
+
if pin is not APIHelper.SKIP:
|
|
686
|
+
self.pin = pin
|
|
687
|
+
if ksn is not APIHelper.SKIP:
|
|
688
|
+
self.ksn = ksn
|
|
689
|
+
|
|
690
|
+
# Add additional model properties to the instance
|
|
691
|
+
if additional_properties is None:
|
|
692
|
+
additional_properties = {}
|
|
693
|
+
self.additional_properties = additional_properties
|
|
694
|
+
|
|
695
|
+
@classmethod
|
|
696
|
+
def from_dictionary(cls,
|
|
697
|
+
dictionary):
|
|
698
|
+
"""Create an instance of this model from a dictionary
|
|
699
|
+
|
|
700
|
+
Args:
|
|
701
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
702
|
+
as obtained from the deserialization of the server's response. The
|
|
703
|
+
keys MUST match property names in the API description.
|
|
704
|
+
|
|
705
|
+
Returns:
|
|
706
|
+
object: An instance of this structure class.
|
|
707
|
+
|
|
708
|
+
"""
|
|
709
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
710
|
+
return None
|
|
711
|
+
|
|
712
|
+
# Extract variables from the dictionary
|
|
713
|
+
transaction_amount =\
|
|
714
|
+
dictionary.get("transaction_amount")\
|
|
715
|
+
if dictionary.get("transaction_amount")\
|
|
716
|
+
else None
|
|
717
|
+
account_number =\
|
|
718
|
+
dictionary.get("account_number")\
|
|
719
|
+
if dictionary.get("account_number")\
|
|
720
|
+
else None
|
|
721
|
+
exp_date =\
|
|
722
|
+
dictionary.get("exp_date")\
|
|
723
|
+
if dictionary.get("exp_date")\
|
|
724
|
+
else None
|
|
725
|
+
additional_amounts = None
|
|
726
|
+
if dictionary.get("additional_amounts") is not None:
|
|
727
|
+
additional_amounts = [
|
|
728
|
+
AdditionalAmount.from_dictionary(x)
|
|
729
|
+
for x in dictionary.get("additional_amounts")
|
|
730
|
+
]
|
|
731
|
+
else:
|
|
732
|
+
additional_amounts = APIHelper.SKIP
|
|
733
|
+
billing_address =\
|
|
734
|
+
BillingAddress1.from_dictionary(
|
|
735
|
+
dictionary.get("billing_address"))\
|
|
736
|
+
if "billing_address" in dictionary.keys()\
|
|
737
|
+
else APIHelper.SKIP
|
|
738
|
+
checkin_date =\
|
|
739
|
+
dictionary.get("checkin_date")\
|
|
740
|
+
if "checkin_date" in dictionary.keys()\
|
|
741
|
+
else APIHelper.SKIP
|
|
742
|
+
checkout_date =\
|
|
743
|
+
dictionary.get("checkout_date")\
|
|
744
|
+
if "checkout_date" in dictionary.keys()\
|
|
745
|
+
else APIHelper.SKIP
|
|
746
|
+
clerk_number =\
|
|
747
|
+
dictionary.get("clerk_number")\
|
|
748
|
+
if "clerk_number" in dictionary.keys()\
|
|
749
|
+
else APIHelper.SKIP
|
|
750
|
+
contact_api_id =\
|
|
751
|
+
dictionary.get("contact_api_id")\
|
|
752
|
+
if "contact_api_id" in dictionary.keys()\
|
|
753
|
+
else APIHelper.SKIP
|
|
754
|
+
contact_id =\
|
|
755
|
+
dictionary.get("contact_id")\
|
|
756
|
+
if "contact_id" in dictionary.keys()\
|
|
757
|
+
else APIHelper.SKIP
|
|
758
|
+
custom_data =\
|
|
759
|
+
dictionary.get("custom_data")\
|
|
760
|
+
if dictionary.get("custom_data")\
|
|
761
|
+
else APIHelper.SKIP
|
|
762
|
+
customer_id =\
|
|
763
|
+
dictionary.get("customer_id")\
|
|
764
|
+
if "customer_id" in dictionary.keys()\
|
|
765
|
+
else APIHelper.SKIP
|
|
766
|
+
description =\
|
|
767
|
+
dictionary.get("description")\
|
|
768
|
+
if "description" in dictionary.keys()\
|
|
769
|
+
else APIHelper.SKIP
|
|
770
|
+
identity_verification =\
|
|
771
|
+
IdentityVerification.from_dictionary(
|
|
772
|
+
dictionary.get("identity_verification"))\
|
|
773
|
+
if "identity_verification" in dictionary.keys()\
|
|
774
|
+
else APIHelper.SKIP
|
|
775
|
+
iias_ind =\
|
|
776
|
+
dictionary.get("iias_ind")\
|
|
777
|
+
if "iias_ind" in dictionary.keys()\
|
|
778
|
+
else APIHelper.SKIP
|
|
779
|
+
image_front =\
|
|
780
|
+
dictionary.get("image_front")\
|
|
781
|
+
if "image_front" in dictionary.keys()\
|
|
782
|
+
else APIHelper.SKIP
|
|
783
|
+
image_back =\
|
|
784
|
+
dictionary.get("image_back")\
|
|
785
|
+
if "image_back" in dictionary.keys()\
|
|
786
|
+
else APIHelper.SKIP
|
|
787
|
+
installment =\
|
|
788
|
+
dictionary.get("installment")\
|
|
789
|
+
if "installment" in dictionary.keys()\
|
|
790
|
+
else APIHelper.SKIP
|
|
791
|
+
installment_number =\
|
|
792
|
+
dictionary.get("installment_number")\
|
|
793
|
+
if "installment_number" in dictionary.keys()\
|
|
794
|
+
else APIHelper.SKIP
|
|
795
|
+
installment_count =\
|
|
796
|
+
dictionary.get("installment_count")\
|
|
797
|
+
if "installment_count" in dictionary.keys()\
|
|
798
|
+
else APIHelper.SKIP
|
|
799
|
+
recurring_flag =\
|
|
800
|
+
dictionary.get("recurring_flag")\
|
|
801
|
+
if "recurring_flag" in dictionary.keys()\
|
|
802
|
+
else APIHelper.SKIP
|
|
803
|
+
installment_counter =\
|
|
804
|
+
dictionary.get("installment_counter")\
|
|
805
|
+
if "installment_counter" in dictionary.keys()\
|
|
806
|
+
else APIHelper.SKIP
|
|
807
|
+
installment_total =\
|
|
808
|
+
dictionary.get("installment_total")\
|
|
809
|
+
if "installment_total" in dictionary.keys()\
|
|
810
|
+
else APIHelper.SKIP
|
|
811
|
+
subscription =\
|
|
812
|
+
dictionary.get("subscription")\
|
|
813
|
+
if "subscription" in dictionary.keys()\
|
|
814
|
+
else APIHelper.SKIP
|
|
815
|
+
standing_order =\
|
|
816
|
+
dictionary.get("standing_order")\
|
|
817
|
+
if "standing_order" in dictionary.keys()\
|
|
818
|
+
else APIHelper.SKIP
|
|
819
|
+
location_api_id =\
|
|
820
|
+
dictionary.get("location_api_id")\
|
|
821
|
+
if "location_api_id" in dictionary.keys()\
|
|
822
|
+
else APIHelper.SKIP
|
|
823
|
+
location_id =\
|
|
824
|
+
dictionary.get("location_id")\
|
|
825
|
+
if "location_id" in dictionary.keys()\
|
|
826
|
+
else APIHelper.SKIP
|
|
827
|
+
product_transaction_id =\
|
|
828
|
+
dictionary.get("product_transaction_id")\
|
|
829
|
+
if "product_transaction_id" in dictionary.keys()\
|
|
830
|
+
else APIHelper.SKIP
|
|
831
|
+
advance_deposit =\
|
|
832
|
+
dictionary.get("advance_deposit")\
|
|
833
|
+
if "advance_deposit" in dictionary.keys()\
|
|
834
|
+
else APIHelper.SKIP
|
|
835
|
+
no_show =\
|
|
836
|
+
dictionary.get("no_show")\
|
|
837
|
+
if "no_show" in dictionary.keys()\
|
|
838
|
+
else APIHelper.SKIP
|
|
839
|
+
notification_email_address =\
|
|
840
|
+
dictionary.get("notification_email_address")\
|
|
841
|
+
if "notification_email_address" in dictionary.keys()\
|
|
842
|
+
else APIHelper.SKIP
|
|
843
|
+
order_number =\
|
|
844
|
+
dictionary.get("order_number")\
|
|
845
|
+
if "order_number" in dictionary.keys()\
|
|
846
|
+
else APIHelper.SKIP
|
|
847
|
+
po_number =\
|
|
848
|
+
dictionary.get("po_number")\
|
|
849
|
+
if "po_number" in dictionary.keys()\
|
|
850
|
+
else APIHelper.SKIP
|
|
851
|
+
quick_invoice_id =\
|
|
852
|
+
dictionary.get("quick_invoice_id")\
|
|
853
|
+
if "quick_invoice_id" in dictionary.keys()\
|
|
854
|
+
else APIHelper.SKIP
|
|
855
|
+
recurring =\
|
|
856
|
+
dictionary.get("recurring")\
|
|
857
|
+
if "recurring" in dictionary.keys()\
|
|
858
|
+
else APIHelper.SKIP
|
|
859
|
+
recurring_number =\
|
|
860
|
+
dictionary.get("recurring_number")\
|
|
861
|
+
if "recurring_number" in dictionary.keys()\
|
|
862
|
+
else APIHelper.SKIP
|
|
863
|
+
room_num =\
|
|
864
|
+
dictionary.get("room_num")\
|
|
865
|
+
if "room_num" in dictionary.keys()\
|
|
866
|
+
else APIHelper.SKIP
|
|
867
|
+
room_rate =\
|
|
868
|
+
dictionary.get("room_rate")\
|
|
869
|
+
if "room_rate" in dictionary.keys()\
|
|
870
|
+
else APIHelper.SKIP
|
|
871
|
+
save_account =\
|
|
872
|
+
dictionary.get("save_account")\
|
|
873
|
+
if "save_account" in dictionary.keys()\
|
|
874
|
+
else APIHelper.SKIP
|
|
875
|
+
save_account_title =\
|
|
876
|
+
dictionary.get("save_account_title")\
|
|
877
|
+
if "save_account_title" in dictionary.keys()\
|
|
878
|
+
else APIHelper.SKIP
|
|
879
|
+
subtotal_amount =\
|
|
880
|
+
dictionary.get("subtotal_amount")\
|
|
881
|
+
if "subtotal_amount" in dictionary.keys()\
|
|
882
|
+
else APIHelper.SKIP
|
|
883
|
+
surcharge_amount =\
|
|
884
|
+
dictionary.get("surcharge_amount")\
|
|
885
|
+
if "surcharge_amount" in dictionary.keys()\
|
|
886
|
+
else APIHelper.SKIP
|
|
887
|
+
tags =\
|
|
888
|
+
dictionary.get("tags")\
|
|
889
|
+
if "tags" in dictionary.keys()\
|
|
890
|
+
else APIHelper.SKIP
|
|
891
|
+
tax =\
|
|
892
|
+
dictionary.get("tax")\
|
|
893
|
+
if "tax" in dictionary.keys()\
|
|
894
|
+
else APIHelper.SKIP
|
|
895
|
+
tip_amount =\
|
|
896
|
+
dictionary.get("tip_amount")\
|
|
897
|
+
if "tip_amount" in dictionary.keys()\
|
|
898
|
+
else APIHelper.SKIP
|
|
899
|
+
secondary_amount =\
|
|
900
|
+
dictionary.get("secondary_amount")\
|
|
901
|
+
if "secondary_amount" in dictionary.keys()\
|
|
902
|
+
else APIHelper.SKIP
|
|
903
|
+
transaction_api_id =\
|
|
904
|
+
dictionary.get("transaction_api_id")\
|
|
905
|
+
if "transaction_api_id" in dictionary.keys()\
|
|
906
|
+
else APIHelper.SKIP
|
|
907
|
+
transaction_c_1 =\
|
|
908
|
+
dictionary.get("transaction_c1")\
|
|
909
|
+
if "transaction_c1" in dictionary.keys()\
|
|
910
|
+
else APIHelper.SKIP
|
|
911
|
+
transaction_c_2 =\
|
|
912
|
+
dictionary.get("transaction_c2")\
|
|
913
|
+
if "transaction_c2" in dictionary.keys()\
|
|
914
|
+
else APIHelper.SKIP
|
|
915
|
+
transaction_c_3 =\
|
|
916
|
+
dictionary.get("transaction_c3")\
|
|
917
|
+
if "transaction_c3" in dictionary.keys()\
|
|
918
|
+
else APIHelper.SKIP
|
|
919
|
+
bank_funded_only_override =\
|
|
920
|
+
dictionary.get("bank_funded_only_override")\
|
|
921
|
+
if "bank_funded_only_override" in dictionary.keys()\
|
|
922
|
+
else APIHelper.SKIP
|
|
923
|
+
allow_partial_authorization_override =\
|
|
924
|
+
dictionary.get("allow_partial_authorization_override")\
|
|
925
|
+
if "allow_partial_authorization_override" in dictionary.keys()\
|
|
926
|
+
else APIHelper.SKIP
|
|
927
|
+
auto_decline_cvv_override =\
|
|
928
|
+
dictionary.get("auto_decline_cvv_override")\
|
|
929
|
+
if "auto_decline_cvv_override" in dictionary.keys()\
|
|
930
|
+
else APIHelper.SKIP
|
|
931
|
+
auto_decline_street_override =\
|
|
932
|
+
dictionary.get("auto_decline_street_override")\
|
|
933
|
+
if "auto_decline_street_override" in dictionary.keys()\
|
|
934
|
+
else APIHelper.SKIP
|
|
935
|
+
auto_decline_zip_override =\
|
|
936
|
+
dictionary.get("auto_decline_zip_override")\
|
|
937
|
+
if "auto_decline_zip_override" in dictionary.keys()\
|
|
938
|
+
else APIHelper.SKIP
|
|
939
|
+
ebt_type =\
|
|
940
|
+
dictionary.get("ebt_type")\
|
|
941
|
+
if "ebt_type" in dictionary.keys()\
|
|
942
|
+
else APIHelper.SKIP
|
|
943
|
+
currency_code =\
|
|
944
|
+
dictionary.get("currency_code")\
|
|
945
|
+
if dictionary.get("currency_code")\
|
|
946
|
+
else APIHelper.SKIP
|
|
947
|
+
cardholder_present =\
|
|
948
|
+
dictionary.get("cardholder_present")\
|
|
949
|
+
if "cardholder_present" in dictionary.keys()\
|
|
950
|
+
else APIHelper.SKIP
|
|
951
|
+
card_present =\
|
|
952
|
+
dictionary.get("card_present")\
|
|
953
|
+
if "card_present" in dictionary.keys()\
|
|
954
|
+
else APIHelper.SKIP
|
|
955
|
+
secure_auth_data =\
|
|
956
|
+
dictionary.get("secure_auth_data")\
|
|
957
|
+
if "secure_auth_data" in dictionary.keys()\
|
|
958
|
+
else APIHelper.SKIP
|
|
959
|
+
secure_protocol_version =\
|
|
960
|
+
dictionary.get("secure_protocol_version")\
|
|
961
|
+
if "secure_protocol_version" in dictionary.keys()\
|
|
962
|
+
else APIHelper.SKIP
|
|
963
|
+
secure_collection_indicator =\
|
|
964
|
+
dictionary.get("secure_collection_indicator")\
|
|
965
|
+
if "secure_collection_indicator" in dictionary.keys()\
|
|
966
|
+
else APIHelper.SKIP
|
|
967
|
+
secure_cryptogram =\
|
|
968
|
+
dictionary.get("secure_cryptogram")\
|
|
969
|
+
if "secure_cryptogram" in dictionary.keys()\
|
|
970
|
+
else APIHelper.SKIP
|
|
971
|
+
secure_directory_server_transaction_id =\
|
|
972
|
+
dictionary.get("secure_directory_server_transaction_id")\
|
|
973
|
+
if "secure_directory_server_transaction_id" in dictionary.keys()\
|
|
974
|
+
else APIHelper.SKIP
|
|
975
|
+
secure_ecomm_url =\
|
|
976
|
+
dictionary.get("secure_ecomm_url")\
|
|
977
|
+
if "secure_ecomm_url" in dictionary.keys()\
|
|
978
|
+
else APIHelper.SKIP
|
|
979
|
+
terminal_serial_number =\
|
|
980
|
+
dictionary.get("terminal_serial_number")\
|
|
981
|
+
if "terminal_serial_number" in dictionary.keys()\
|
|
982
|
+
else APIHelper.SKIP
|
|
983
|
+
threedsecure =\
|
|
984
|
+
dictionary.get("threedsecure")\
|
|
985
|
+
if "threedsecure" in dictionary.keys()\
|
|
986
|
+
else APIHelper.SKIP
|
|
987
|
+
three_ds_server_trans_id =\
|
|
988
|
+
dictionary.get("three_ds_server_trans_id")\
|
|
989
|
+
if "three_ds_server_trans_id" in dictionary.keys()\
|
|
990
|
+
else APIHelper.SKIP
|
|
991
|
+
wallet_type =\
|
|
992
|
+
dictionary.get("wallet_type")\
|
|
993
|
+
if "wallet_type" in dictionary.keys()\
|
|
994
|
+
else APIHelper.SKIP
|
|
995
|
+
clerk_id =\
|
|
996
|
+
dictionary.get("clerk_id")\
|
|
997
|
+
if "clerk_id" in dictionary.keys()\
|
|
998
|
+
else APIHelper.SKIP
|
|
999
|
+
voucher_number =\
|
|
1000
|
+
dictionary.get("voucher_number")\
|
|
1001
|
+
if "voucher_number" in dictionary.keys()\
|
|
1002
|
+
else APIHelper.SKIP
|
|
1003
|
+
initiation_type =\
|
|
1004
|
+
dictionary.get("initiation_type")\
|
|
1005
|
+
if "initiation_type" in dictionary.keys()\
|
|
1006
|
+
else APIHelper.SKIP
|
|
1007
|
+
bill_payment =\
|
|
1008
|
+
dictionary.get("bill_payment")\
|
|
1009
|
+
if "bill_payment" in dictionary.keys()\
|
|
1010
|
+
else APIHelper.SKIP
|
|
1011
|
+
delay_charge =\
|
|
1012
|
+
dictionary.get("delay_charge")\
|
|
1013
|
+
if "delay_charge" in dictionary.keys()\
|
|
1014
|
+
else APIHelper.SKIP
|
|
1015
|
+
deferred_auth =\
|
|
1016
|
+
dictionary.get("deferred_auth")\
|
|
1017
|
+
if "deferred_auth" in dictionary.keys()\
|
|
1018
|
+
else APIHelper.SKIP
|
|
1019
|
+
mini_bar =\
|
|
1020
|
+
dictionary.get("mini_bar")\
|
|
1021
|
+
if "mini_bar" in dictionary.keys()\
|
|
1022
|
+
else APIHelper.SKIP
|
|
1023
|
+
ebt_food_eligible_amount =\
|
|
1024
|
+
dictionary.get("ebt_food_eligible_amount")\
|
|
1025
|
+
if "ebt_food_eligible_amount" in dictionary.keys()\
|
|
1026
|
+
else APIHelper.SKIP
|
|
1027
|
+
ebt_cash_eligible_amount =\
|
|
1028
|
+
dictionary.get("ebt_cash_eligible_amount")\
|
|
1029
|
+
if "ebt_cash_eligible_amount" in dictionary.keys()\
|
|
1030
|
+
else APIHelper.SKIP
|
|
1031
|
+
extra_tax =\
|
|
1032
|
+
dictionary.get("extra_tax")\
|
|
1033
|
+
if "extra_tax" in dictionary.keys()\
|
|
1034
|
+
else APIHelper.SKIP
|
|
1035
|
+
account_holder_name =\
|
|
1036
|
+
dictionary.get("account_holder_name")\
|
|
1037
|
+
if "account_holder_name" in dictionary.keys()\
|
|
1038
|
+
else APIHelper.SKIP
|
|
1039
|
+
cvv =\
|
|
1040
|
+
dictionary.get("cvv")\
|
|
1041
|
+
if "cvv" in dictionary.keys()\
|
|
1042
|
+
else APIHelper.SKIP
|
|
1043
|
+
entry_mode_id =\
|
|
1044
|
+
dictionary.get("entry_mode_id")\
|
|
1045
|
+
if "entry_mode_id" in dictionary.keys()\
|
|
1046
|
+
else APIHelper.SKIP
|
|
1047
|
+
track_data =\
|
|
1048
|
+
dictionary.get("track_data")\
|
|
1049
|
+
if "track_data" in dictionary.keys()\
|
|
1050
|
+
else APIHelper.SKIP
|
|
1051
|
+
pin =\
|
|
1052
|
+
dictionary.get("pin")\
|
|
1053
|
+
if "pin" in dictionary.keys()\
|
|
1054
|
+
else APIHelper.SKIP
|
|
1055
|
+
ksn =\
|
|
1056
|
+
dictionary.get("ksn")\
|
|
1057
|
+
if "ksn" in dictionary.keys()\
|
|
1058
|
+
else APIHelper.SKIP
|
|
1059
|
+
|
|
1060
|
+
# Clean out expected properties from dictionary
|
|
1061
|
+
additional_properties =\
|
|
1062
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
1063
|
+
|
|
1064
|
+
# Return an object of this model
|
|
1065
|
+
return cls(transaction_amount,
|
|
1066
|
+
account_number,
|
|
1067
|
+
exp_date,
|
|
1068
|
+
additional_amounts,
|
|
1069
|
+
billing_address,
|
|
1070
|
+
checkin_date,
|
|
1071
|
+
checkout_date,
|
|
1072
|
+
clerk_number,
|
|
1073
|
+
contact_api_id,
|
|
1074
|
+
contact_id,
|
|
1075
|
+
custom_data,
|
|
1076
|
+
customer_id,
|
|
1077
|
+
description,
|
|
1078
|
+
identity_verification,
|
|
1079
|
+
iias_ind,
|
|
1080
|
+
image_front,
|
|
1081
|
+
image_back,
|
|
1082
|
+
installment,
|
|
1083
|
+
installment_number,
|
|
1084
|
+
installment_count,
|
|
1085
|
+
recurring_flag,
|
|
1086
|
+
installment_counter,
|
|
1087
|
+
installment_total,
|
|
1088
|
+
subscription,
|
|
1089
|
+
standing_order,
|
|
1090
|
+
location_api_id,
|
|
1091
|
+
location_id,
|
|
1092
|
+
product_transaction_id,
|
|
1093
|
+
advance_deposit,
|
|
1094
|
+
no_show,
|
|
1095
|
+
notification_email_address,
|
|
1096
|
+
order_number,
|
|
1097
|
+
po_number,
|
|
1098
|
+
quick_invoice_id,
|
|
1099
|
+
recurring,
|
|
1100
|
+
recurring_number,
|
|
1101
|
+
room_num,
|
|
1102
|
+
room_rate,
|
|
1103
|
+
save_account,
|
|
1104
|
+
save_account_title,
|
|
1105
|
+
subtotal_amount,
|
|
1106
|
+
surcharge_amount,
|
|
1107
|
+
tags,
|
|
1108
|
+
tax,
|
|
1109
|
+
tip_amount,
|
|
1110
|
+
secondary_amount,
|
|
1111
|
+
transaction_api_id,
|
|
1112
|
+
transaction_c_1,
|
|
1113
|
+
transaction_c_2,
|
|
1114
|
+
transaction_c_3,
|
|
1115
|
+
bank_funded_only_override,
|
|
1116
|
+
allow_partial_authorization_override,
|
|
1117
|
+
auto_decline_cvv_override,
|
|
1118
|
+
auto_decline_street_override,
|
|
1119
|
+
auto_decline_zip_override,
|
|
1120
|
+
ebt_type,
|
|
1121
|
+
currency_code,
|
|
1122
|
+
cardholder_present,
|
|
1123
|
+
card_present,
|
|
1124
|
+
secure_auth_data,
|
|
1125
|
+
secure_protocol_version,
|
|
1126
|
+
secure_collection_indicator,
|
|
1127
|
+
secure_cryptogram,
|
|
1128
|
+
secure_directory_server_transaction_id,
|
|
1129
|
+
secure_ecomm_url,
|
|
1130
|
+
terminal_serial_number,
|
|
1131
|
+
threedsecure,
|
|
1132
|
+
three_ds_server_trans_id,
|
|
1133
|
+
wallet_type,
|
|
1134
|
+
clerk_id,
|
|
1135
|
+
voucher_number,
|
|
1136
|
+
initiation_type,
|
|
1137
|
+
bill_payment,
|
|
1138
|
+
delay_charge,
|
|
1139
|
+
deferred_auth,
|
|
1140
|
+
mini_bar,
|
|
1141
|
+
ebt_food_eligible_amount,
|
|
1142
|
+
ebt_cash_eligible_amount,
|
|
1143
|
+
extra_tax,
|
|
1144
|
+
account_holder_name,
|
|
1145
|
+
cvv,
|
|
1146
|
+
entry_mode_id,
|
|
1147
|
+
track_data,
|
|
1148
|
+
pin,
|
|
1149
|
+
ksn,
|
|
1150
|
+
additional_properties)
|
|
1151
|
+
|
|
1152
|
+
def __repr__(self):
|
|
1153
|
+
"""Return a unambiguous string representation."""
|
|
1154
|
+
_additional_amounts=(
|
|
1155
|
+
self.additional_amounts
|
|
1156
|
+
if hasattr(self, "additional_amounts")
|
|
1157
|
+
else None
|
|
1158
|
+
)
|
|
1159
|
+
_billing_address=(
|
|
1160
|
+
self.billing_address
|
|
1161
|
+
if hasattr(self, "billing_address")
|
|
1162
|
+
else None
|
|
1163
|
+
)
|
|
1164
|
+
_checkin_date=(
|
|
1165
|
+
self.checkin_date
|
|
1166
|
+
if hasattr(self, "checkin_date")
|
|
1167
|
+
else None
|
|
1168
|
+
)
|
|
1169
|
+
_checkout_date=(
|
|
1170
|
+
self.checkout_date
|
|
1171
|
+
if hasattr(self, "checkout_date")
|
|
1172
|
+
else None
|
|
1173
|
+
)
|
|
1174
|
+
_clerk_number=(
|
|
1175
|
+
self.clerk_number
|
|
1176
|
+
if hasattr(self, "clerk_number")
|
|
1177
|
+
else None
|
|
1178
|
+
)
|
|
1179
|
+
_contact_api_id=(
|
|
1180
|
+
self.contact_api_id
|
|
1181
|
+
if hasattr(self, "contact_api_id")
|
|
1182
|
+
else None
|
|
1183
|
+
)
|
|
1184
|
+
_contact_id=(
|
|
1185
|
+
self.contact_id
|
|
1186
|
+
if hasattr(self, "contact_id")
|
|
1187
|
+
else None
|
|
1188
|
+
)
|
|
1189
|
+
_custom_data=(
|
|
1190
|
+
self.custom_data
|
|
1191
|
+
if hasattr(self, "custom_data")
|
|
1192
|
+
else None
|
|
1193
|
+
)
|
|
1194
|
+
_customer_id=(
|
|
1195
|
+
self.customer_id
|
|
1196
|
+
if hasattr(self, "customer_id")
|
|
1197
|
+
else None
|
|
1198
|
+
)
|
|
1199
|
+
_description=(
|
|
1200
|
+
self.description
|
|
1201
|
+
if hasattr(self, "description")
|
|
1202
|
+
else None
|
|
1203
|
+
)
|
|
1204
|
+
_identity_verification=(
|
|
1205
|
+
self.identity_verification
|
|
1206
|
+
if hasattr(self, "identity_verification")
|
|
1207
|
+
else None
|
|
1208
|
+
)
|
|
1209
|
+
_iias_ind=(
|
|
1210
|
+
self.iias_ind
|
|
1211
|
+
if hasattr(self, "iias_ind")
|
|
1212
|
+
else None
|
|
1213
|
+
)
|
|
1214
|
+
_image_front=(
|
|
1215
|
+
self.image_front
|
|
1216
|
+
if hasattr(self, "image_front")
|
|
1217
|
+
else None
|
|
1218
|
+
)
|
|
1219
|
+
_image_back=(
|
|
1220
|
+
self.image_back
|
|
1221
|
+
if hasattr(self, "image_back")
|
|
1222
|
+
else None
|
|
1223
|
+
)
|
|
1224
|
+
_installment=(
|
|
1225
|
+
self.installment
|
|
1226
|
+
if hasattr(self, "installment")
|
|
1227
|
+
else None
|
|
1228
|
+
)
|
|
1229
|
+
_installment_number=(
|
|
1230
|
+
self.installment_number
|
|
1231
|
+
if hasattr(self, "installment_number")
|
|
1232
|
+
else None
|
|
1233
|
+
)
|
|
1234
|
+
_installment_count=(
|
|
1235
|
+
self.installment_count
|
|
1236
|
+
if hasattr(self, "installment_count")
|
|
1237
|
+
else None
|
|
1238
|
+
)
|
|
1239
|
+
_recurring_flag=(
|
|
1240
|
+
self.recurring_flag
|
|
1241
|
+
if hasattr(self, "recurring_flag")
|
|
1242
|
+
else None
|
|
1243
|
+
)
|
|
1244
|
+
_installment_counter=(
|
|
1245
|
+
self.installment_counter
|
|
1246
|
+
if hasattr(self, "installment_counter")
|
|
1247
|
+
else None
|
|
1248
|
+
)
|
|
1249
|
+
_installment_total=(
|
|
1250
|
+
self.installment_total
|
|
1251
|
+
if hasattr(self, "installment_total")
|
|
1252
|
+
else None
|
|
1253
|
+
)
|
|
1254
|
+
_subscription=(
|
|
1255
|
+
self.subscription
|
|
1256
|
+
if hasattr(self, "subscription")
|
|
1257
|
+
else None
|
|
1258
|
+
)
|
|
1259
|
+
_standing_order=(
|
|
1260
|
+
self.standing_order
|
|
1261
|
+
if hasattr(self, "standing_order")
|
|
1262
|
+
else None
|
|
1263
|
+
)
|
|
1264
|
+
_location_api_id=(
|
|
1265
|
+
self.location_api_id
|
|
1266
|
+
if hasattr(self, "location_api_id")
|
|
1267
|
+
else None
|
|
1268
|
+
)
|
|
1269
|
+
_location_id=(
|
|
1270
|
+
self.location_id
|
|
1271
|
+
if hasattr(self, "location_id")
|
|
1272
|
+
else None
|
|
1273
|
+
)
|
|
1274
|
+
_product_transaction_id=(
|
|
1275
|
+
self.product_transaction_id
|
|
1276
|
+
if hasattr(self, "product_transaction_id")
|
|
1277
|
+
else None
|
|
1278
|
+
)
|
|
1279
|
+
_advance_deposit=(
|
|
1280
|
+
self.advance_deposit
|
|
1281
|
+
if hasattr(self, "advance_deposit")
|
|
1282
|
+
else None
|
|
1283
|
+
)
|
|
1284
|
+
_no_show=(
|
|
1285
|
+
self.no_show
|
|
1286
|
+
if hasattr(self, "no_show")
|
|
1287
|
+
else None
|
|
1288
|
+
)
|
|
1289
|
+
_notification_email_address=(
|
|
1290
|
+
self.notification_email_address
|
|
1291
|
+
if hasattr(self, "notification_email_address")
|
|
1292
|
+
else None
|
|
1293
|
+
)
|
|
1294
|
+
_order_number=(
|
|
1295
|
+
self.order_number
|
|
1296
|
+
if hasattr(self, "order_number")
|
|
1297
|
+
else None
|
|
1298
|
+
)
|
|
1299
|
+
_po_number=(
|
|
1300
|
+
self.po_number
|
|
1301
|
+
if hasattr(self, "po_number")
|
|
1302
|
+
else None
|
|
1303
|
+
)
|
|
1304
|
+
_quick_invoice_id=(
|
|
1305
|
+
self.quick_invoice_id
|
|
1306
|
+
if hasattr(self, "quick_invoice_id")
|
|
1307
|
+
else None
|
|
1308
|
+
)
|
|
1309
|
+
_recurring=(
|
|
1310
|
+
self.recurring
|
|
1311
|
+
if hasattr(self, "recurring")
|
|
1312
|
+
else None
|
|
1313
|
+
)
|
|
1314
|
+
_recurring_number=(
|
|
1315
|
+
self.recurring_number
|
|
1316
|
+
if hasattr(self, "recurring_number")
|
|
1317
|
+
else None
|
|
1318
|
+
)
|
|
1319
|
+
_room_num=(
|
|
1320
|
+
self.room_num
|
|
1321
|
+
if hasattr(self, "room_num")
|
|
1322
|
+
else None
|
|
1323
|
+
)
|
|
1324
|
+
_room_rate=(
|
|
1325
|
+
self.room_rate
|
|
1326
|
+
if hasattr(self, "room_rate")
|
|
1327
|
+
else None
|
|
1328
|
+
)
|
|
1329
|
+
_save_account=(
|
|
1330
|
+
self.save_account
|
|
1331
|
+
if hasattr(self, "save_account")
|
|
1332
|
+
else None
|
|
1333
|
+
)
|
|
1334
|
+
_save_account_title=(
|
|
1335
|
+
self.save_account_title
|
|
1336
|
+
if hasattr(self, "save_account_title")
|
|
1337
|
+
else None
|
|
1338
|
+
)
|
|
1339
|
+
_subtotal_amount=(
|
|
1340
|
+
self.subtotal_amount
|
|
1341
|
+
if hasattr(self, "subtotal_amount")
|
|
1342
|
+
else None
|
|
1343
|
+
)
|
|
1344
|
+
_surcharge_amount=(
|
|
1345
|
+
self.surcharge_amount
|
|
1346
|
+
if hasattr(self, "surcharge_amount")
|
|
1347
|
+
else None
|
|
1348
|
+
)
|
|
1349
|
+
_tags=(
|
|
1350
|
+
self.tags
|
|
1351
|
+
if hasattr(self, "tags")
|
|
1352
|
+
else None
|
|
1353
|
+
)
|
|
1354
|
+
_tax=(
|
|
1355
|
+
self.tax
|
|
1356
|
+
if hasattr(self, "tax")
|
|
1357
|
+
else None
|
|
1358
|
+
)
|
|
1359
|
+
_tip_amount=(
|
|
1360
|
+
self.tip_amount
|
|
1361
|
+
if hasattr(self, "tip_amount")
|
|
1362
|
+
else None
|
|
1363
|
+
)
|
|
1364
|
+
_transaction_amount=self.transaction_amount
|
|
1365
|
+
_secondary_amount=(
|
|
1366
|
+
self.secondary_amount
|
|
1367
|
+
if hasattr(self, "secondary_amount")
|
|
1368
|
+
else None
|
|
1369
|
+
)
|
|
1370
|
+
_transaction_api_id=(
|
|
1371
|
+
self.transaction_api_id
|
|
1372
|
+
if hasattr(self, "transaction_api_id")
|
|
1373
|
+
else None
|
|
1374
|
+
)
|
|
1375
|
+
_transaction_c_1=(
|
|
1376
|
+
self.transaction_c_1
|
|
1377
|
+
if hasattr(self, "transaction_c_1")
|
|
1378
|
+
else None
|
|
1379
|
+
)
|
|
1380
|
+
_transaction_c_2=(
|
|
1381
|
+
self.transaction_c_2
|
|
1382
|
+
if hasattr(self, "transaction_c_2")
|
|
1383
|
+
else None
|
|
1384
|
+
)
|
|
1385
|
+
_transaction_c_3=(
|
|
1386
|
+
self.transaction_c_3
|
|
1387
|
+
if hasattr(self, "transaction_c_3")
|
|
1388
|
+
else None
|
|
1389
|
+
)
|
|
1390
|
+
_bank_funded_only_override=(
|
|
1391
|
+
self.bank_funded_only_override
|
|
1392
|
+
if hasattr(self, "bank_funded_only_override")
|
|
1393
|
+
else None
|
|
1394
|
+
)
|
|
1395
|
+
_allow_partial_authorization_override=(
|
|
1396
|
+
self.allow_partial_authorization_override
|
|
1397
|
+
if hasattr(self, "allow_partial_authorization_override")
|
|
1398
|
+
else None
|
|
1399
|
+
)
|
|
1400
|
+
_auto_decline_cvv_override=(
|
|
1401
|
+
self.auto_decline_cvv_override
|
|
1402
|
+
if hasattr(self, "auto_decline_cvv_override")
|
|
1403
|
+
else None
|
|
1404
|
+
)
|
|
1405
|
+
_auto_decline_street_override=(
|
|
1406
|
+
self.auto_decline_street_override
|
|
1407
|
+
if hasattr(self, "auto_decline_street_override")
|
|
1408
|
+
else None
|
|
1409
|
+
)
|
|
1410
|
+
_auto_decline_zip_override=(
|
|
1411
|
+
self.auto_decline_zip_override
|
|
1412
|
+
if hasattr(self, "auto_decline_zip_override")
|
|
1413
|
+
else None
|
|
1414
|
+
)
|
|
1415
|
+
_ebt_type=(
|
|
1416
|
+
self.ebt_type
|
|
1417
|
+
if hasattr(self, "ebt_type")
|
|
1418
|
+
else None
|
|
1419
|
+
)
|
|
1420
|
+
_currency_code=(
|
|
1421
|
+
self.currency_code
|
|
1422
|
+
if hasattr(self, "currency_code")
|
|
1423
|
+
else None
|
|
1424
|
+
)
|
|
1425
|
+
_cardholder_present=(
|
|
1426
|
+
self.cardholder_present
|
|
1427
|
+
if hasattr(self, "cardholder_present")
|
|
1428
|
+
else None
|
|
1429
|
+
)
|
|
1430
|
+
_card_present=(
|
|
1431
|
+
self.card_present
|
|
1432
|
+
if hasattr(self, "card_present")
|
|
1433
|
+
else None
|
|
1434
|
+
)
|
|
1435
|
+
_secure_auth_data=(
|
|
1436
|
+
self.secure_auth_data
|
|
1437
|
+
if hasattr(self, "secure_auth_data")
|
|
1438
|
+
else None
|
|
1439
|
+
)
|
|
1440
|
+
_secure_protocol_version=(
|
|
1441
|
+
self.secure_protocol_version
|
|
1442
|
+
if hasattr(self, "secure_protocol_version")
|
|
1443
|
+
else None
|
|
1444
|
+
)
|
|
1445
|
+
_secure_collection_indicator=(
|
|
1446
|
+
self.secure_collection_indicator
|
|
1447
|
+
if hasattr(self, "secure_collection_indicator")
|
|
1448
|
+
else None
|
|
1449
|
+
)
|
|
1450
|
+
_secure_cryptogram=(
|
|
1451
|
+
self.secure_cryptogram
|
|
1452
|
+
if hasattr(self, "secure_cryptogram")
|
|
1453
|
+
else None
|
|
1454
|
+
)
|
|
1455
|
+
_secure_directory_server_transaction_id=(
|
|
1456
|
+
self.secure_directory_server_transaction_id
|
|
1457
|
+
if hasattr(self, "secure_directory_server_transaction_id")
|
|
1458
|
+
else None
|
|
1459
|
+
)
|
|
1460
|
+
_secure_ecomm_url=(
|
|
1461
|
+
self.secure_ecomm_url
|
|
1462
|
+
if hasattr(self, "secure_ecomm_url")
|
|
1463
|
+
else None
|
|
1464
|
+
)
|
|
1465
|
+
_terminal_serial_number=(
|
|
1466
|
+
self.terminal_serial_number
|
|
1467
|
+
if hasattr(self, "terminal_serial_number")
|
|
1468
|
+
else None
|
|
1469
|
+
)
|
|
1470
|
+
_threedsecure=(
|
|
1471
|
+
self.threedsecure
|
|
1472
|
+
if hasattr(self, "threedsecure")
|
|
1473
|
+
else None
|
|
1474
|
+
)
|
|
1475
|
+
_three_ds_server_trans_id=(
|
|
1476
|
+
self.three_ds_server_trans_id
|
|
1477
|
+
if hasattr(self, "three_ds_server_trans_id")
|
|
1478
|
+
else None
|
|
1479
|
+
)
|
|
1480
|
+
_wallet_type=(
|
|
1481
|
+
self.wallet_type
|
|
1482
|
+
if hasattr(self, "wallet_type")
|
|
1483
|
+
else None
|
|
1484
|
+
)
|
|
1485
|
+
_clerk_id=(
|
|
1486
|
+
self.clerk_id
|
|
1487
|
+
if hasattr(self, "clerk_id")
|
|
1488
|
+
else None
|
|
1489
|
+
)
|
|
1490
|
+
_voucher_number=(
|
|
1491
|
+
self.voucher_number
|
|
1492
|
+
if hasattr(self, "voucher_number")
|
|
1493
|
+
else None
|
|
1494
|
+
)
|
|
1495
|
+
_initiation_type=(
|
|
1496
|
+
self.initiation_type
|
|
1497
|
+
if hasattr(self, "initiation_type")
|
|
1498
|
+
else None
|
|
1499
|
+
)
|
|
1500
|
+
_bill_payment=(
|
|
1501
|
+
self.bill_payment
|
|
1502
|
+
if hasattr(self, "bill_payment")
|
|
1503
|
+
else None
|
|
1504
|
+
)
|
|
1505
|
+
_delay_charge=(
|
|
1506
|
+
self.delay_charge
|
|
1507
|
+
if hasattr(self, "delay_charge")
|
|
1508
|
+
else None
|
|
1509
|
+
)
|
|
1510
|
+
_deferred_auth=(
|
|
1511
|
+
self.deferred_auth
|
|
1512
|
+
if hasattr(self, "deferred_auth")
|
|
1513
|
+
else None
|
|
1514
|
+
)
|
|
1515
|
+
_mini_bar=(
|
|
1516
|
+
self.mini_bar
|
|
1517
|
+
if hasattr(self, "mini_bar")
|
|
1518
|
+
else None
|
|
1519
|
+
)
|
|
1520
|
+
_ebt_food_eligible_amount=(
|
|
1521
|
+
self.ebt_food_eligible_amount
|
|
1522
|
+
if hasattr(self, "ebt_food_eligible_amount")
|
|
1523
|
+
else None
|
|
1524
|
+
)
|
|
1525
|
+
_ebt_cash_eligible_amount=(
|
|
1526
|
+
self.ebt_cash_eligible_amount
|
|
1527
|
+
if hasattr(self, "ebt_cash_eligible_amount")
|
|
1528
|
+
else None
|
|
1529
|
+
)
|
|
1530
|
+
_extra_tax=(
|
|
1531
|
+
self.extra_tax
|
|
1532
|
+
if hasattr(self, "extra_tax")
|
|
1533
|
+
else None
|
|
1534
|
+
)
|
|
1535
|
+
_account_holder_name=(
|
|
1536
|
+
self.account_holder_name
|
|
1537
|
+
if hasattr(self, "account_holder_name")
|
|
1538
|
+
else None
|
|
1539
|
+
)
|
|
1540
|
+
_account_number=self.account_number
|
|
1541
|
+
_cvv=(
|
|
1542
|
+
self.cvv
|
|
1543
|
+
if hasattr(self, "cvv")
|
|
1544
|
+
else None
|
|
1545
|
+
)
|
|
1546
|
+
_entry_mode_id=(
|
|
1547
|
+
self.entry_mode_id
|
|
1548
|
+
if hasattr(self, "entry_mode_id")
|
|
1549
|
+
else None
|
|
1550
|
+
)
|
|
1551
|
+
_exp_date=self.exp_date
|
|
1552
|
+
_track_data=(
|
|
1553
|
+
self.track_data
|
|
1554
|
+
if hasattr(self, "track_data")
|
|
1555
|
+
else None
|
|
1556
|
+
)
|
|
1557
|
+
_pin=(
|
|
1558
|
+
self.pin
|
|
1559
|
+
if hasattr(self, "pin")
|
|
1560
|
+
else None
|
|
1561
|
+
)
|
|
1562
|
+
_ksn=(
|
|
1563
|
+
self.ksn
|
|
1564
|
+
if hasattr(self, "ksn")
|
|
1565
|
+
else None
|
|
1566
|
+
)
|
|
1567
|
+
_additional_properties=self.additional_properties
|
|
1568
|
+
return (
|
|
1569
|
+
f"{self.__class__.__name__}("
|
|
1570
|
+
f"additional_amounts={_additional_amounts!r}, "
|
|
1571
|
+
f"billing_address={_billing_address!r}, "
|
|
1572
|
+
f"checkin_date={_checkin_date!r}, "
|
|
1573
|
+
f"checkout_date={_checkout_date!r}, "
|
|
1574
|
+
f"clerk_number={_clerk_number!r}, "
|
|
1575
|
+
f"contact_api_id={_contact_api_id!r}, "
|
|
1576
|
+
f"contact_id={_contact_id!r}, "
|
|
1577
|
+
f"custom_data={_custom_data!r}, "
|
|
1578
|
+
f"customer_id={_customer_id!r}, "
|
|
1579
|
+
f"description={_description!r}, "
|
|
1580
|
+
f"identity_verification={_identity_verification!r}, "
|
|
1581
|
+
f"iias_ind={_iias_ind!r}, "
|
|
1582
|
+
f"image_front={_image_front!r}, "
|
|
1583
|
+
f"image_back={_image_back!r}, "
|
|
1584
|
+
f"installment={_installment!r}, "
|
|
1585
|
+
f"installment_number={_installment_number!r}, "
|
|
1586
|
+
f"installment_count={_installment_count!r}, "
|
|
1587
|
+
f"recurring_flag={_recurring_flag!r}, "
|
|
1588
|
+
f"installment_counter={_installment_counter!r}, "
|
|
1589
|
+
f"installment_total={_installment_total!r}, "
|
|
1590
|
+
f"subscription={_subscription!r}, "
|
|
1591
|
+
f"standing_order={_standing_order!r}, "
|
|
1592
|
+
f"location_api_id={_location_api_id!r}, "
|
|
1593
|
+
f"location_id={_location_id!r}, "
|
|
1594
|
+
f"product_transaction_id={_product_transaction_id!r}, "
|
|
1595
|
+
f"advance_deposit={_advance_deposit!r}, "
|
|
1596
|
+
f"no_show={_no_show!r}, "
|
|
1597
|
+
f"notification_email_address={_notification_email_address!r}, "
|
|
1598
|
+
f"order_number={_order_number!r}, "
|
|
1599
|
+
f"po_number={_po_number!r}, "
|
|
1600
|
+
f"quick_invoice_id={_quick_invoice_id!r}, "
|
|
1601
|
+
f"recurring={_recurring!r}, "
|
|
1602
|
+
f"recurring_number={_recurring_number!r}, "
|
|
1603
|
+
f"room_num={_room_num!r}, "
|
|
1604
|
+
f"room_rate={_room_rate!r}, "
|
|
1605
|
+
f"save_account={_save_account!r}, "
|
|
1606
|
+
f"save_account_title={_save_account_title!r}, "
|
|
1607
|
+
f"subtotal_amount={_subtotal_amount!r}, "
|
|
1608
|
+
f"surcharge_amount={_surcharge_amount!r}, "
|
|
1609
|
+
f"tags={_tags!r}, "
|
|
1610
|
+
f"tax={_tax!r}, "
|
|
1611
|
+
f"tip_amount={_tip_amount!r}, "
|
|
1612
|
+
f"transaction_amount={_transaction_amount!r}, "
|
|
1613
|
+
f"secondary_amount={_secondary_amount!r}, "
|
|
1614
|
+
f"transaction_api_id={_transaction_api_id!r}, "
|
|
1615
|
+
f"transaction_c_1={_transaction_c_1!r}, "
|
|
1616
|
+
f"transaction_c_2={_transaction_c_2!r}, "
|
|
1617
|
+
f"transaction_c_3={_transaction_c_3!r}, "
|
|
1618
|
+
f"bank_funded_only_override={_bank_funded_only_override!r}, "
|
|
1619
|
+
f"allow_partial_authorization_override={_allow_partial_authorization_override!r}, "
|
|
1620
|
+
f"auto_decline_cvv_override={_auto_decline_cvv_override!r}, "
|
|
1621
|
+
f"auto_decline_street_override={_auto_decline_street_override!r}, "
|
|
1622
|
+
f"auto_decline_zip_override={_auto_decline_zip_override!r}, "
|
|
1623
|
+
f"ebt_type={_ebt_type!r}, "
|
|
1624
|
+
f"currency_code={_currency_code!r}, "
|
|
1625
|
+
f"cardholder_present={_cardholder_present!r}, "
|
|
1626
|
+
f"card_present={_card_present!r}, "
|
|
1627
|
+
f"secure_auth_data={_secure_auth_data!r}, "
|
|
1628
|
+
f"secure_protocol_version={_secure_protocol_version!r}, "
|
|
1629
|
+
f"secure_collection_indicator={_secure_collection_indicator!r}, "
|
|
1630
|
+
f"secure_cryptogram={_secure_cryptogram!r}, "
|
|
1631
|
+
f"secure_directory_server_transaction_id={_secure_directory_server_transaction_id!r}, "
|
|
1632
|
+
f"secure_ecomm_url={_secure_ecomm_url!r}, "
|
|
1633
|
+
f"terminal_serial_number={_terminal_serial_number!r}, "
|
|
1634
|
+
f"threedsecure={_threedsecure!r}, "
|
|
1635
|
+
f"three_ds_server_trans_id={_three_ds_server_trans_id!r}, "
|
|
1636
|
+
f"wallet_type={_wallet_type!r}, "
|
|
1637
|
+
f"clerk_id={_clerk_id!r}, "
|
|
1638
|
+
f"voucher_number={_voucher_number!r}, "
|
|
1639
|
+
f"initiation_type={_initiation_type!r}, "
|
|
1640
|
+
f"bill_payment={_bill_payment!r}, "
|
|
1641
|
+
f"delay_charge={_delay_charge!r}, "
|
|
1642
|
+
f"deferred_auth={_deferred_auth!r}, "
|
|
1643
|
+
f"mini_bar={_mini_bar!r}, "
|
|
1644
|
+
f"ebt_food_eligible_amount={_ebt_food_eligible_amount!r}, "
|
|
1645
|
+
f"ebt_cash_eligible_amount={_ebt_cash_eligible_amount!r}, "
|
|
1646
|
+
f"extra_tax={_extra_tax!r}, "
|
|
1647
|
+
f"account_holder_name={_account_holder_name!r}, "
|
|
1648
|
+
f"account_number={_account_number!r}, "
|
|
1649
|
+
f"cvv={_cvv!r}, "
|
|
1650
|
+
f"entry_mode_id={_entry_mode_id!r}, "
|
|
1651
|
+
f"exp_date={_exp_date!r}, "
|
|
1652
|
+
f"track_data={_track_data!r}, "
|
|
1653
|
+
f"pin={_pin!r}, "
|
|
1654
|
+
f"ksn={_ksn!r}, "
|
|
1655
|
+
f"additional_properties={_additional_properties!r}, "
|
|
1656
|
+
f")"
|
|
1657
|
+
)
|
|
1658
|
+
|
|
1659
|
+
def __str__(self):
|
|
1660
|
+
"""Return a human-readable string representation."""
|
|
1661
|
+
_additional_amounts=(
|
|
1662
|
+
self.additional_amounts
|
|
1663
|
+
if hasattr(self, "additional_amounts")
|
|
1664
|
+
else None
|
|
1665
|
+
)
|
|
1666
|
+
_billing_address=(
|
|
1667
|
+
self.billing_address
|
|
1668
|
+
if hasattr(self, "billing_address")
|
|
1669
|
+
else None
|
|
1670
|
+
)
|
|
1671
|
+
_checkin_date=(
|
|
1672
|
+
self.checkin_date
|
|
1673
|
+
if hasattr(self, "checkin_date")
|
|
1674
|
+
else None
|
|
1675
|
+
)
|
|
1676
|
+
_checkout_date=(
|
|
1677
|
+
self.checkout_date
|
|
1678
|
+
if hasattr(self, "checkout_date")
|
|
1679
|
+
else None
|
|
1680
|
+
)
|
|
1681
|
+
_clerk_number=(
|
|
1682
|
+
self.clerk_number
|
|
1683
|
+
if hasattr(self, "clerk_number")
|
|
1684
|
+
else None
|
|
1685
|
+
)
|
|
1686
|
+
_contact_api_id=(
|
|
1687
|
+
self.contact_api_id
|
|
1688
|
+
if hasattr(self, "contact_api_id")
|
|
1689
|
+
else None
|
|
1690
|
+
)
|
|
1691
|
+
_contact_id=(
|
|
1692
|
+
self.contact_id
|
|
1693
|
+
if hasattr(self, "contact_id")
|
|
1694
|
+
else None
|
|
1695
|
+
)
|
|
1696
|
+
_custom_data=(
|
|
1697
|
+
self.custom_data
|
|
1698
|
+
if hasattr(self, "custom_data")
|
|
1699
|
+
else None
|
|
1700
|
+
)
|
|
1701
|
+
_customer_id=(
|
|
1702
|
+
self.customer_id
|
|
1703
|
+
if hasattr(self, "customer_id")
|
|
1704
|
+
else None
|
|
1705
|
+
)
|
|
1706
|
+
_description=(
|
|
1707
|
+
self.description
|
|
1708
|
+
if hasattr(self, "description")
|
|
1709
|
+
else None
|
|
1710
|
+
)
|
|
1711
|
+
_identity_verification=(
|
|
1712
|
+
self.identity_verification
|
|
1713
|
+
if hasattr(self, "identity_verification")
|
|
1714
|
+
else None
|
|
1715
|
+
)
|
|
1716
|
+
_iias_ind=(
|
|
1717
|
+
self.iias_ind
|
|
1718
|
+
if hasattr(self, "iias_ind")
|
|
1719
|
+
else None
|
|
1720
|
+
)
|
|
1721
|
+
_image_front=(
|
|
1722
|
+
self.image_front
|
|
1723
|
+
if hasattr(self, "image_front")
|
|
1724
|
+
else None
|
|
1725
|
+
)
|
|
1726
|
+
_image_back=(
|
|
1727
|
+
self.image_back
|
|
1728
|
+
if hasattr(self, "image_back")
|
|
1729
|
+
else None
|
|
1730
|
+
)
|
|
1731
|
+
_installment=(
|
|
1732
|
+
self.installment
|
|
1733
|
+
if hasattr(self, "installment")
|
|
1734
|
+
else None
|
|
1735
|
+
)
|
|
1736
|
+
_installment_number=(
|
|
1737
|
+
self.installment_number
|
|
1738
|
+
if hasattr(self, "installment_number")
|
|
1739
|
+
else None
|
|
1740
|
+
)
|
|
1741
|
+
_installment_count=(
|
|
1742
|
+
self.installment_count
|
|
1743
|
+
if hasattr(self, "installment_count")
|
|
1744
|
+
else None
|
|
1745
|
+
)
|
|
1746
|
+
_recurring_flag=(
|
|
1747
|
+
self.recurring_flag
|
|
1748
|
+
if hasattr(self, "recurring_flag")
|
|
1749
|
+
else None
|
|
1750
|
+
)
|
|
1751
|
+
_installment_counter=(
|
|
1752
|
+
self.installment_counter
|
|
1753
|
+
if hasattr(self, "installment_counter")
|
|
1754
|
+
else None
|
|
1755
|
+
)
|
|
1756
|
+
_installment_total=(
|
|
1757
|
+
self.installment_total
|
|
1758
|
+
if hasattr(self, "installment_total")
|
|
1759
|
+
else None
|
|
1760
|
+
)
|
|
1761
|
+
_subscription=(
|
|
1762
|
+
self.subscription
|
|
1763
|
+
if hasattr(self, "subscription")
|
|
1764
|
+
else None
|
|
1765
|
+
)
|
|
1766
|
+
_standing_order=(
|
|
1767
|
+
self.standing_order
|
|
1768
|
+
if hasattr(self, "standing_order")
|
|
1769
|
+
else None
|
|
1770
|
+
)
|
|
1771
|
+
_location_api_id=(
|
|
1772
|
+
self.location_api_id
|
|
1773
|
+
if hasattr(self, "location_api_id")
|
|
1774
|
+
else None
|
|
1775
|
+
)
|
|
1776
|
+
_location_id=(
|
|
1777
|
+
self.location_id
|
|
1778
|
+
if hasattr(self, "location_id")
|
|
1779
|
+
else None
|
|
1780
|
+
)
|
|
1781
|
+
_product_transaction_id=(
|
|
1782
|
+
self.product_transaction_id
|
|
1783
|
+
if hasattr(self, "product_transaction_id")
|
|
1784
|
+
else None
|
|
1785
|
+
)
|
|
1786
|
+
_advance_deposit=(
|
|
1787
|
+
self.advance_deposit
|
|
1788
|
+
if hasattr(self, "advance_deposit")
|
|
1789
|
+
else None
|
|
1790
|
+
)
|
|
1791
|
+
_no_show=(
|
|
1792
|
+
self.no_show
|
|
1793
|
+
if hasattr(self, "no_show")
|
|
1794
|
+
else None
|
|
1795
|
+
)
|
|
1796
|
+
_notification_email_address=(
|
|
1797
|
+
self.notification_email_address
|
|
1798
|
+
if hasattr(self, "notification_email_address")
|
|
1799
|
+
else None
|
|
1800
|
+
)
|
|
1801
|
+
_order_number=(
|
|
1802
|
+
self.order_number
|
|
1803
|
+
if hasattr(self, "order_number")
|
|
1804
|
+
else None
|
|
1805
|
+
)
|
|
1806
|
+
_po_number=(
|
|
1807
|
+
self.po_number
|
|
1808
|
+
if hasattr(self, "po_number")
|
|
1809
|
+
else None
|
|
1810
|
+
)
|
|
1811
|
+
_quick_invoice_id=(
|
|
1812
|
+
self.quick_invoice_id
|
|
1813
|
+
if hasattr(self, "quick_invoice_id")
|
|
1814
|
+
else None
|
|
1815
|
+
)
|
|
1816
|
+
_recurring=(
|
|
1817
|
+
self.recurring
|
|
1818
|
+
if hasattr(self, "recurring")
|
|
1819
|
+
else None
|
|
1820
|
+
)
|
|
1821
|
+
_recurring_number=(
|
|
1822
|
+
self.recurring_number
|
|
1823
|
+
if hasattr(self, "recurring_number")
|
|
1824
|
+
else None
|
|
1825
|
+
)
|
|
1826
|
+
_room_num=(
|
|
1827
|
+
self.room_num
|
|
1828
|
+
if hasattr(self, "room_num")
|
|
1829
|
+
else None
|
|
1830
|
+
)
|
|
1831
|
+
_room_rate=(
|
|
1832
|
+
self.room_rate
|
|
1833
|
+
if hasattr(self, "room_rate")
|
|
1834
|
+
else None
|
|
1835
|
+
)
|
|
1836
|
+
_save_account=(
|
|
1837
|
+
self.save_account
|
|
1838
|
+
if hasattr(self, "save_account")
|
|
1839
|
+
else None
|
|
1840
|
+
)
|
|
1841
|
+
_save_account_title=(
|
|
1842
|
+
self.save_account_title
|
|
1843
|
+
if hasattr(self, "save_account_title")
|
|
1844
|
+
else None
|
|
1845
|
+
)
|
|
1846
|
+
_subtotal_amount=(
|
|
1847
|
+
self.subtotal_amount
|
|
1848
|
+
if hasattr(self, "subtotal_amount")
|
|
1849
|
+
else None
|
|
1850
|
+
)
|
|
1851
|
+
_surcharge_amount=(
|
|
1852
|
+
self.surcharge_amount
|
|
1853
|
+
if hasattr(self, "surcharge_amount")
|
|
1854
|
+
else None
|
|
1855
|
+
)
|
|
1856
|
+
_tags=(
|
|
1857
|
+
self.tags
|
|
1858
|
+
if hasattr(self, "tags")
|
|
1859
|
+
else None
|
|
1860
|
+
)
|
|
1861
|
+
_tax=(
|
|
1862
|
+
self.tax
|
|
1863
|
+
if hasattr(self, "tax")
|
|
1864
|
+
else None
|
|
1865
|
+
)
|
|
1866
|
+
_tip_amount=(
|
|
1867
|
+
self.tip_amount
|
|
1868
|
+
if hasattr(self, "tip_amount")
|
|
1869
|
+
else None
|
|
1870
|
+
)
|
|
1871
|
+
_transaction_amount=self.transaction_amount
|
|
1872
|
+
_secondary_amount=(
|
|
1873
|
+
self.secondary_amount
|
|
1874
|
+
if hasattr(self, "secondary_amount")
|
|
1875
|
+
else None
|
|
1876
|
+
)
|
|
1877
|
+
_transaction_api_id=(
|
|
1878
|
+
self.transaction_api_id
|
|
1879
|
+
if hasattr(self, "transaction_api_id")
|
|
1880
|
+
else None
|
|
1881
|
+
)
|
|
1882
|
+
_transaction_c_1=(
|
|
1883
|
+
self.transaction_c_1
|
|
1884
|
+
if hasattr(self, "transaction_c_1")
|
|
1885
|
+
else None
|
|
1886
|
+
)
|
|
1887
|
+
_transaction_c_2=(
|
|
1888
|
+
self.transaction_c_2
|
|
1889
|
+
if hasattr(self, "transaction_c_2")
|
|
1890
|
+
else None
|
|
1891
|
+
)
|
|
1892
|
+
_transaction_c_3=(
|
|
1893
|
+
self.transaction_c_3
|
|
1894
|
+
if hasattr(self, "transaction_c_3")
|
|
1895
|
+
else None
|
|
1896
|
+
)
|
|
1897
|
+
_bank_funded_only_override=(
|
|
1898
|
+
self.bank_funded_only_override
|
|
1899
|
+
if hasattr(self, "bank_funded_only_override")
|
|
1900
|
+
else None
|
|
1901
|
+
)
|
|
1902
|
+
_allow_partial_authorization_override=(
|
|
1903
|
+
self.allow_partial_authorization_override
|
|
1904
|
+
if hasattr(self, "allow_partial_authorization_override")
|
|
1905
|
+
else None
|
|
1906
|
+
)
|
|
1907
|
+
_auto_decline_cvv_override=(
|
|
1908
|
+
self.auto_decline_cvv_override
|
|
1909
|
+
if hasattr(self, "auto_decline_cvv_override")
|
|
1910
|
+
else None
|
|
1911
|
+
)
|
|
1912
|
+
_auto_decline_street_override=(
|
|
1913
|
+
self.auto_decline_street_override
|
|
1914
|
+
if hasattr(self, "auto_decline_street_override")
|
|
1915
|
+
else None
|
|
1916
|
+
)
|
|
1917
|
+
_auto_decline_zip_override=(
|
|
1918
|
+
self.auto_decline_zip_override
|
|
1919
|
+
if hasattr(self, "auto_decline_zip_override")
|
|
1920
|
+
else None
|
|
1921
|
+
)
|
|
1922
|
+
_ebt_type=(
|
|
1923
|
+
self.ebt_type
|
|
1924
|
+
if hasattr(self, "ebt_type")
|
|
1925
|
+
else None
|
|
1926
|
+
)
|
|
1927
|
+
_currency_code=(
|
|
1928
|
+
self.currency_code
|
|
1929
|
+
if hasattr(self, "currency_code")
|
|
1930
|
+
else None
|
|
1931
|
+
)
|
|
1932
|
+
_cardholder_present=(
|
|
1933
|
+
self.cardholder_present
|
|
1934
|
+
if hasattr(self, "cardholder_present")
|
|
1935
|
+
else None
|
|
1936
|
+
)
|
|
1937
|
+
_card_present=(
|
|
1938
|
+
self.card_present
|
|
1939
|
+
if hasattr(self, "card_present")
|
|
1940
|
+
else None
|
|
1941
|
+
)
|
|
1942
|
+
_secure_auth_data=(
|
|
1943
|
+
self.secure_auth_data
|
|
1944
|
+
if hasattr(self, "secure_auth_data")
|
|
1945
|
+
else None
|
|
1946
|
+
)
|
|
1947
|
+
_secure_protocol_version=(
|
|
1948
|
+
self.secure_protocol_version
|
|
1949
|
+
if hasattr(self, "secure_protocol_version")
|
|
1950
|
+
else None
|
|
1951
|
+
)
|
|
1952
|
+
_secure_collection_indicator=(
|
|
1953
|
+
self.secure_collection_indicator
|
|
1954
|
+
if hasattr(self, "secure_collection_indicator")
|
|
1955
|
+
else None
|
|
1956
|
+
)
|
|
1957
|
+
_secure_cryptogram=(
|
|
1958
|
+
self.secure_cryptogram
|
|
1959
|
+
if hasattr(self, "secure_cryptogram")
|
|
1960
|
+
else None
|
|
1961
|
+
)
|
|
1962
|
+
_secure_directory_server_transaction_id=(
|
|
1963
|
+
self.secure_directory_server_transaction_id
|
|
1964
|
+
if hasattr(self, "secure_directory_server_transaction_id")
|
|
1965
|
+
else None
|
|
1966
|
+
)
|
|
1967
|
+
_secure_ecomm_url=(
|
|
1968
|
+
self.secure_ecomm_url
|
|
1969
|
+
if hasattr(self, "secure_ecomm_url")
|
|
1970
|
+
else None
|
|
1971
|
+
)
|
|
1972
|
+
_terminal_serial_number=(
|
|
1973
|
+
self.terminal_serial_number
|
|
1974
|
+
if hasattr(self, "terminal_serial_number")
|
|
1975
|
+
else None
|
|
1976
|
+
)
|
|
1977
|
+
_threedsecure=(
|
|
1978
|
+
self.threedsecure
|
|
1979
|
+
if hasattr(self, "threedsecure")
|
|
1980
|
+
else None
|
|
1981
|
+
)
|
|
1982
|
+
_three_ds_server_trans_id=(
|
|
1983
|
+
self.three_ds_server_trans_id
|
|
1984
|
+
if hasattr(self, "three_ds_server_trans_id")
|
|
1985
|
+
else None
|
|
1986
|
+
)
|
|
1987
|
+
_wallet_type=(
|
|
1988
|
+
self.wallet_type
|
|
1989
|
+
if hasattr(self, "wallet_type")
|
|
1990
|
+
else None
|
|
1991
|
+
)
|
|
1992
|
+
_clerk_id=(
|
|
1993
|
+
self.clerk_id
|
|
1994
|
+
if hasattr(self, "clerk_id")
|
|
1995
|
+
else None
|
|
1996
|
+
)
|
|
1997
|
+
_voucher_number=(
|
|
1998
|
+
self.voucher_number
|
|
1999
|
+
if hasattr(self, "voucher_number")
|
|
2000
|
+
else None
|
|
2001
|
+
)
|
|
2002
|
+
_initiation_type=(
|
|
2003
|
+
self.initiation_type
|
|
2004
|
+
if hasattr(self, "initiation_type")
|
|
2005
|
+
else None
|
|
2006
|
+
)
|
|
2007
|
+
_bill_payment=(
|
|
2008
|
+
self.bill_payment
|
|
2009
|
+
if hasattr(self, "bill_payment")
|
|
2010
|
+
else None
|
|
2011
|
+
)
|
|
2012
|
+
_delay_charge=(
|
|
2013
|
+
self.delay_charge
|
|
2014
|
+
if hasattr(self, "delay_charge")
|
|
2015
|
+
else None
|
|
2016
|
+
)
|
|
2017
|
+
_deferred_auth=(
|
|
2018
|
+
self.deferred_auth
|
|
2019
|
+
if hasattr(self, "deferred_auth")
|
|
2020
|
+
else None
|
|
2021
|
+
)
|
|
2022
|
+
_mini_bar=(
|
|
2023
|
+
self.mini_bar
|
|
2024
|
+
if hasattr(self, "mini_bar")
|
|
2025
|
+
else None
|
|
2026
|
+
)
|
|
2027
|
+
_ebt_food_eligible_amount=(
|
|
2028
|
+
self.ebt_food_eligible_amount
|
|
2029
|
+
if hasattr(self, "ebt_food_eligible_amount")
|
|
2030
|
+
else None
|
|
2031
|
+
)
|
|
2032
|
+
_ebt_cash_eligible_amount=(
|
|
2033
|
+
self.ebt_cash_eligible_amount
|
|
2034
|
+
if hasattr(self, "ebt_cash_eligible_amount")
|
|
2035
|
+
else None
|
|
2036
|
+
)
|
|
2037
|
+
_extra_tax=(
|
|
2038
|
+
self.extra_tax
|
|
2039
|
+
if hasattr(self, "extra_tax")
|
|
2040
|
+
else None
|
|
2041
|
+
)
|
|
2042
|
+
_account_holder_name=(
|
|
2043
|
+
self.account_holder_name
|
|
2044
|
+
if hasattr(self, "account_holder_name")
|
|
2045
|
+
else None
|
|
2046
|
+
)
|
|
2047
|
+
_account_number=self.account_number
|
|
2048
|
+
_cvv=(
|
|
2049
|
+
self.cvv
|
|
2050
|
+
if hasattr(self, "cvv")
|
|
2051
|
+
else None
|
|
2052
|
+
)
|
|
2053
|
+
_entry_mode_id=(
|
|
2054
|
+
self.entry_mode_id
|
|
2055
|
+
if hasattr(self, "entry_mode_id")
|
|
2056
|
+
else None
|
|
2057
|
+
)
|
|
2058
|
+
_exp_date=self.exp_date
|
|
2059
|
+
_track_data=(
|
|
2060
|
+
self.track_data
|
|
2061
|
+
if hasattr(self, "track_data")
|
|
2062
|
+
else None
|
|
2063
|
+
)
|
|
2064
|
+
_pin=(
|
|
2065
|
+
self.pin
|
|
2066
|
+
if hasattr(self, "pin")
|
|
2067
|
+
else None
|
|
2068
|
+
)
|
|
2069
|
+
_ksn=(
|
|
2070
|
+
self.ksn
|
|
2071
|
+
if hasattr(self, "ksn")
|
|
2072
|
+
else None
|
|
2073
|
+
)
|
|
2074
|
+
_additional_properties=self.additional_properties
|
|
2075
|
+
return (
|
|
2076
|
+
f"{self.__class__.__name__}("
|
|
2077
|
+
f"additional_amounts={_additional_amounts!s}, "
|
|
2078
|
+
f"billing_address={_billing_address!s}, "
|
|
2079
|
+
f"checkin_date={_checkin_date!s}, "
|
|
2080
|
+
f"checkout_date={_checkout_date!s}, "
|
|
2081
|
+
f"clerk_number={_clerk_number!s}, "
|
|
2082
|
+
f"contact_api_id={_contact_api_id!s}, "
|
|
2083
|
+
f"contact_id={_contact_id!s}, "
|
|
2084
|
+
f"custom_data={_custom_data!s}, "
|
|
2085
|
+
f"customer_id={_customer_id!s}, "
|
|
2086
|
+
f"description={_description!s}, "
|
|
2087
|
+
f"identity_verification={_identity_verification!s}, "
|
|
2088
|
+
f"iias_ind={_iias_ind!s}, "
|
|
2089
|
+
f"image_front={_image_front!s}, "
|
|
2090
|
+
f"image_back={_image_back!s}, "
|
|
2091
|
+
f"installment={_installment!s}, "
|
|
2092
|
+
f"installment_number={_installment_number!s}, "
|
|
2093
|
+
f"installment_count={_installment_count!s}, "
|
|
2094
|
+
f"recurring_flag={_recurring_flag!s}, "
|
|
2095
|
+
f"installment_counter={_installment_counter!s}, "
|
|
2096
|
+
f"installment_total={_installment_total!s}, "
|
|
2097
|
+
f"subscription={_subscription!s}, "
|
|
2098
|
+
f"standing_order={_standing_order!s}, "
|
|
2099
|
+
f"location_api_id={_location_api_id!s}, "
|
|
2100
|
+
f"location_id={_location_id!s}, "
|
|
2101
|
+
f"product_transaction_id={_product_transaction_id!s}, "
|
|
2102
|
+
f"advance_deposit={_advance_deposit!s}, "
|
|
2103
|
+
f"no_show={_no_show!s}, "
|
|
2104
|
+
f"notification_email_address={_notification_email_address!s}, "
|
|
2105
|
+
f"order_number={_order_number!s}, "
|
|
2106
|
+
f"po_number={_po_number!s}, "
|
|
2107
|
+
f"quick_invoice_id={_quick_invoice_id!s}, "
|
|
2108
|
+
f"recurring={_recurring!s}, "
|
|
2109
|
+
f"recurring_number={_recurring_number!s}, "
|
|
2110
|
+
f"room_num={_room_num!s}, "
|
|
2111
|
+
f"room_rate={_room_rate!s}, "
|
|
2112
|
+
f"save_account={_save_account!s}, "
|
|
2113
|
+
f"save_account_title={_save_account_title!s}, "
|
|
2114
|
+
f"subtotal_amount={_subtotal_amount!s}, "
|
|
2115
|
+
f"surcharge_amount={_surcharge_amount!s}, "
|
|
2116
|
+
f"tags={_tags!s}, "
|
|
2117
|
+
f"tax={_tax!s}, "
|
|
2118
|
+
f"tip_amount={_tip_amount!s}, "
|
|
2119
|
+
f"transaction_amount={_transaction_amount!s}, "
|
|
2120
|
+
f"secondary_amount={_secondary_amount!s}, "
|
|
2121
|
+
f"transaction_api_id={_transaction_api_id!s}, "
|
|
2122
|
+
f"transaction_c_1={_transaction_c_1!s}, "
|
|
2123
|
+
f"transaction_c_2={_transaction_c_2!s}, "
|
|
2124
|
+
f"transaction_c_3={_transaction_c_3!s}, "
|
|
2125
|
+
f"bank_funded_only_override={_bank_funded_only_override!s}, "
|
|
2126
|
+
f"allow_partial_authorization_override={_allow_partial_authorization_override!s}, "
|
|
2127
|
+
f"auto_decline_cvv_override={_auto_decline_cvv_override!s}, "
|
|
2128
|
+
f"auto_decline_street_override={_auto_decline_street_override!s}, "
|
|
2129
|
+
f"auto_decline_zip_override={_auto_decline_zip_override!s}, "
|
|
2130
|
+
f"ebt_type={_ebt_type!s}, "
|
|
2131
|
+
f"currency_code={_currency_code!s}, "
|
|
2132
|
+
f"cardholder_present={_cardholder_present!s}, "
|
|
2133
|
+
f"card_present={_card_present!s}, "
|
|
2134
|
+
f"secure_auth_data={_secure_auth_data!s}, "
|
|
2135
|
+
f"secure_protocol_version={_secure_protocol_version!s}, "
|
|
2136
|
+
f"secure_collection_indicator={_secure_collection_indicator!s}, "
|
|
2137
|
+
f"secure_cryptogram={_secure_cryptogram!s}, "
|
|
2138
|
+
f"secure_directory_server_transaction_id={_secure_directory_server_transaction_id!s}, "
|
|
2139
|
+
f"secure_ecomm_url={_secure_ecomm_url!s}, "
|
|
2140
|
+
f"terminal_serial_number={_terminal_serial_number!s}, "
|
|
2141
|
+
f"threedsecure={_threedsecure!s}, "
|
|
2142
|
+
f"three_ds_server_trans_id={_three_ds_server_trans_id!s}, "
|
|
2143
|
+
f"wallet_type={_wallet_type!s}, "
|
|
2144
|
+
f"clerk_id={_clerk_id!s}, "
|
|
2145
|
+
f"voucher_number={_voucher_number!s}, "
|
|
2146
|
+
f"initiation_type={_initiation_type!s}, "
|
|
2147
|
+
f"bill_payment={_bill_payment!s}, "
|
|
2148
|
+
f"delay_charge={_delay_charge!s}, "
|
|
2149
|
+
f"deferred_auth={_deferred_auth!s}, "
|
|
2150
|
+
f"mini_bar={_mini_bar!s}, "
|
|
2151
|
+
f"ebt_food_eligible_amount={_ebt_food_eligible_amount!s}, "
|
|
2152
|
+
f"ebt_cash_eligible_amount={_ebt_cash_eligible_amount!s}, "
|
|
2153
|
+
f"extra_tax={_extra_tax!s}, "
|
|
2154
|
+
f"account_holder_name={_account_holder_name!s}, "
|
|
2155
|
+
f"account_number={_account_number!s}, "
|
|
2156
|
+
f"cvv={_cvv!s}, "
|
|
2157
|
+
f"entry_mode_id={_entry_mode_id!s}, "
|
|
2158
|
+
f"exp_date={_exp_date!s}, "
|
|
2159
|
+
f"track_data={_track_data!s}, "
|
|
2160
|
+
f"pin={_pin!s}, "
|
|
2161
|
+
f"ksn={_ksn!s}, "
|
|
2162
|
+
f"additional_properties={_additional_properties!s}, "
|
|
2163
|
+
f")"
|
|
2164
|
+
)
|