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,1843 @@
|
|
|
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 V1TransactionsCcAuthOnlyTaptopayRequest(object):
|
|
20
|
+
"""Implementation of the 'V1 Transactions Cc Auth Only Taptopay 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
|
+
secure_cryptogram (str): (ECOMM) Used to supply the Digital Payment
|
|
126
|
+
Cryptogram obtained from a Digital Secure Remote Payment (DSRP)
|
|
127
|
+
transaction
|
|
128
|
+
secure_directory_server_transaction_id (str): (ECOMM) Directory Server
|
|
129
|
+
Transaction ID (Such as XID, TAVV)
|
|
130
|
+
terminal_serial_number (str): If transaction was processed using a terminal,
|
|
131
|
+
this field would contain the terminal's serial number
|
|
132
|
+
wallet_type (WalletTypeEnum): This value provides information from where the
|
|
133
|
+
transaction was initialized (Such as In-App provider) >000 - Unknown
|
|
134
|
+
wallet type (i.e., Discover PayButton) > >101 - MasterPass by MasterCard
|
|
135
|
+
> >103 - Apple Pay > >216 - Google Pay > >217 - Samsung Pay > >327 -
|
|
136
|
+
Merchant tokenization program >
|
|
137
|
+
clerk_id (str): Clerk ID
|
|
138
|
+
voucher_number (str): Voucher Number
|
|
139
|
+
initiation_type (InitiationTypeEnum): Initiation Type
|
|
140
|
+
bill_payment (bool): If transaction is a bill payment
|
|
141
|
+
delay_charge (bool): Delay Charge
|
|
142
|
+
deferred_auth (bool): Deferred Auth
|
|
143
|
+
mini_bar (bool): Mini Bar
|
|
144
|
+
ebt_food_eligible_amount (int): EBT Food Eligible Amount
|
|
145
|
+
ebt_cash_eligible_amount (int): EBT Cash Eligible Amount
|
|
146
|
+
extra_tax (int): The tax amount that applies specifically to the surcharge,
|
|
147
|
+
if applicable.
|
|
148
|
+
card_data_cryptogram (str): Encrypted Cardholder data. Used in Tap to Pay
|
|
149
|
+
transactions
|
|
150
|
+
general_card_data (str): Plaintext EMV tags. Used in Tap to Pay transactions
|
|
151
|
+
card_reader_id (str): Identifier of card reader used in Tap to Pay
|
|
152
|
+
transactions.
|
|
153
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
154
|
+
model.
|
|
155
|
+
|
|
156
|
+
"""
|
|
157
|
+
|
|
158
|
+
# Create a mapping from Model property names to API property names
|
|
159
|
+
_names = {
|
|
160
|
+
"card_data_cryptogram": "card_data_cryptogram",
|
|
161
|
+
"general_card_data": "general_card_data",
|
|
162
|
+
"additional_amounts": "additional_amounts",
|
|
163
|
+
"billing_address": "billing_address",
|
|
164
|
+
"checkin_date": "checkin_date",
|
|
165
|
+
"checkout_date": "checkout_date",
|
|
166
|
+
"clerk_number": "clerk_number",
|
|
167
|
+
"contact_api_id": "contact_api_id",
|
|
168
|
+
"contact_id": "contact_id",
|
|
169
|
+
"custom_data": "custom_data",
|
|
170
|
+
"customer_id": "customer_id",
|
|
171
|
+
"description": "description",
|
|
172
|
+
"identity_verification": "identity_verification",
|
|
173
|
+
"iias_ind": "iias_ind",
|
|
174
|
+
"image_front": "image_front",
|
|
175
|
+
"image_back": "image_back",
|
|
176
|
+
"installment": "installment",
|
|
177
|
+
"installment_number": "installment_number",
|
|
178
|
+
"installment_count": "installment_count",
|
|
179
|
+
"recurring_flag": "recurring_flag",
|
|
180
|
+
"installment_counter": "installment_counter",
|
|
181
|
+
"installment_total": "installment_total",
|
|
182
|
+
"subscription": "subscription",
|
|
183
|
+
"standing_order": "standing_order",
|
|
184
|
+
"location_api_id": "location_api_id",
|
|
185
|
+
"location_id": "location_id",
|
|
186
|
+
"product_transaction_id": "product_transaction_id",
|
|
187
|
+
"advance_deposit": "advance_deposit",
|
|
188
|
+
"no_show": "no_show",
|
|
189
|
+
"notification_email_address": "notification_email_address",
|
|
190
|
+
"order_number": "order_number",
|
|
191
|
+
"po_number": "po_number",
|
|
192
|
+
"quick_invoice_id": "quick_invoice_id",
|
|
193
|
+
"recurring": "recurring",
|
|
194
|
+
"recurring_number": "recurring_number",
|
|
195
|
+
"room_num": "room_num",
|
|
196
|
+
"room_rate": "room_rate",
|
|
197
|
+
"save_account": "save_account",
|
|
198
|
+
"save_account_title": "save_account_title",
|
|
199
|
+
"subtotal_amount": "subtotal_amount",
|
|
200
|
+
"surcharge_amount": "surcharge_amount",
|
|
201
|
+
"tags": "tags",
|
|
202
|
+
"tax": "tax",
|
|
203
|
+
"tip_amount": "tip_amount",
|
|
204
|
+
"transaction_amount": "transaction_amount",
|
|
205
|
+
"secondary_amount": "secondary_amount",
|
|
206
|
+
"transaction_api_id": "transaction_api_id",
|
|
207
|
+
"transaction_c_1": "transaction_c1",
|
|
208
|
+
"transaction_c_2": "transaction_c2",
|
|
209
|
+
"transaction_c_3": "transaction_c3",
|
|
210
|
+
"bank_funded_only_override": "bank_funded_only_override",
|
|
211
|
+
"allow_partial_authorization_override": "allow_partial_authorization_override",
|
|
212
|
+
"auto_decline_cvv_override": "auto_decline_cvv_override",
|
|
213
|
+
"auto_decline_street_override": "auto_decline_street_override",
|
|
214
|
+
"auto_decline_zip_override": "auto_decline_zip_override",
|
|
215
|
+
"ebt_type": "ebt_type",
|
|
216
|
+
"currency_code": "currency_code",
|
|
217
|
+
"secure_cryptogram": "secure_cryptogram",
|
|
218
|
+
"secure_directory_server_transaction_id":
|
|
219
|
+
"secure_directory_server_transaction_id",
|
|
220
|
+
"terminal_serial_number": "terminal_serial_number",
|
|
221
|
+
"wallet_type": "wallet_type",
|
|
222
|
+
"clerk_id": "clerk_id",
|
|
223
|
+
"voucher_number": "voucher_number",
|
|
224
|
+
"initiation_type": "initiation_type",
|
|
225
|
+
"bill_payment": "bill_payment",
|
|
226
|
+
"delay_charge": "delay_charge",
|
|
227
|
+
"deferred_auth": "deferred_auth",
|
|
228
|
+
"mini_bar": "mini_bar",
|
|
229
|
+
"ebt_food_eligible_amount": "ebt_food_eligible_amount",
|
|
230
|
+
"ebt_cash_eligible_amount": "ebt_cash_eligible_amount",
|
|
231
|
+
"extra_tax": "extra_tax",
|
|
232
|
+
"card_reader_id": "card_reader_id",
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
_optionals = [
|
|
236
|
+
"additional_amounts",
|
|
237
|
+
"billing_address",
|
|
238
|
+
"checkin_date",
|
|
239
|
+
"checkout_date",
|
|
240
|
+
"clerk_number",
|
|
241
|
+
"contact_api_id",
|
|
242
|
+
"contact_id",
|
|
243
|
+
"custom_data",
|
|
244
|
+
"customer_id",
|
|
245
|
+
"description",
|
|
246
|
+
"identity_verification",
|
|
247
|
+
"iias_ind",
|
|
248
|
+
"image_front",
|
|
249
|
+
"image_back",
|
|
250
|
+
"installment",
|
|
251
|
+
"installment_number",
|
|
252
|
+
"installment_count",
|
|
253
|
+
"recurring_flag",
|
|
254
|
+
"installment_counter",
|
|
255
|
+
"installment_total",
|
|
256
|
+
"subscription",
|
|
257
|
+
"standing_order",
|
|
258
|
+
"location_api_id",
|
|
259
|
+
"location_id",
|
|
260
|
+
"product_transaction_id",
|
|
261
|
+
"advance_deposit",
|
|
262
|
+
"no_show",
|
|
263
|
+
"notification_email_address",
|
|
264
|
+
"order_number",
|
|
265
|
+
"po_number",
|
|
266
|
+
"quick_invoice_id",
|
|
267
|
+
"recurring",
|
|
268
|
+
"recurring_number",
|
|
269
|
+
"room_num",
|
|
270
|
+
"room_rate",
|
|
271
|
+
"save_account",
|
|
272
|
+
"save_account_title",
|
|
273
|
+
"subtotal_amount",
|
|
274
|
+
"surcharge_amount",
|
|
275
|
+
"tags",
|
|
276
|
+
"tax",
|
|
277
|
+
"tip_amount",
|
|
278
|
+
"transaction_amount",
|
|
279
|
+
"secondary_amount",
|
|
280
|
+
"transaction_api_id",
|
|
281
|
+
"transaction_c_1",
|
|
282
|
+
"transaction_c_2",
|
|
283
|
+
"transaction_c_3",
|
|
284
|
+
"bank_funded_only_override",
|
|
285
|
+
"allow_partial_authorization_override",
|
|
286
|
+
"auto_decline_cvv_override",
|
|
287
|
+
"auto_decline_street_override",
|
|
288
|
+
"auto_decline_zip_override",
|
|
289
|
+
"ebt_type",
|
|
290
|
+
"currency_code",
|
|
291
|
+
"secure_cryptogram",
|
|
292
|
+
"secure_directory_server_transaction_id",
|
|
293
|
+
"terminal_serial_number",
|
|
294
|
+
"wallet_type",
|
|
295
|
+
"clerk_id",
|
|
296
|
+
"voucher_number",
|
|
297
|
+
"initiation_type",
|
|
298
|
+
"bill_payment",
|
|
299
|
+
"delay_charge",
|
|
300
|
+
"deferred_auth",
|
|
301
|
+
"mini_bar",
|
|
302
|
+
"ebt_food_eligible_amount",
|
|
303
|
+
"ebt_cash_eligible_amount",
|
|
304
|
+
"extra_tax",
|
|
305
|
+
"card_reader_id",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
_nullables = [
|
|
309
|
+
"checkin_date",
|
|
310
|
+
"checkout_date",
|
|
311
|
+
"clerk_number",
|
|
312
|
+
"contact_api_id",
|
|
313
|
+
"contact_id",
|
|
314
|
+
"customer_id",
|
|
315
|
+
"description",
|
|
316
|
+
"iias_ind",
|
|
317
|
+
"image_front",
|
|
318
|
+
"image_back",
|
|
319
|
+
"installment_number",
|
|
320
|
+
"installment_count",
|
|
321
|
+
"recurring_flag",
|
|
322
|
+
"installment_counter",
|
|
323
|
+
"installment_total",
|
|
324
|
+
"location_api_id",
|
|
325
|
+
"location_id",
|
|
326
|
+
"product_transaction_id",
|
|
327
|
+
"notification_email_address",
|
|
328
|
+
"order_number",
|
|
329
|
+
"po_number",
|
|
330
|
+
"quick_invoice_id",
|
|
331
|
+
"recurring_number",
|
|
332
|
+
"room_num",
|
|
333
|
+
"room_rate",
|
|
334
|
+
"save_account_title",
|
|
335
|
+
"subtotal_amount",
|
|
336
|
+
"surcharge_amount",
|
|
337
|
+
"tags",
|
|
338
|
+
"tax",
|
|
339
|
+
"tip_amount",
|
|
340
|
+
"transaction_amount",
|
|
341
|
+
"secondary_amount",
|
|
342
|
+
"transaction_api_id",
|
|
343
|
+
"transaction_c_1",
|
|
344
|
+
"transaction_c_2",
|
|
345
|
+
"transaction_c_3",
|
|
346
|
+
"ebt_type",
|
|
347
|
+
"secure_cryptogram",
|
|
348
|
+
"secure_directory_server_transaction_id",
|
|
349
|
+
"terminal_serial_number",
|
|
350
|
+
"wallet_type",
|
|
351
|
+
"clerk_id",
|
|
352
|
+
"voucher_number",
|
|
353
|
+
"initiation_type",
|
|
354
|
+
"ebt_food_eligible_amount",
|
|
355
|
+
"ebt_cash_eligible_amount",
|
|
356
|
+
"extra_tax",
|
|
357
|
+
"card_reader_id",
|
|
358
|
+
]
|
|
359
|
+
|
|
360
|
+
def __init__(
|
|
361
|
+
self,
|
|
362
|
+
card_data_cryptogram=None,
|
|
363
|
+
general_card_data=None,
|
|
364
|
+
additional_amounts=APIHelper.SKIP,
|
|
365
|
+
billing_address=APIHelper.SKIP,
|
|
366
|
+
checkin_date=APIHelper.SKIP,
|
|
367
|
+
checkout_date=APIHelper.SKIP,
|
|
368
|
+
clerk_number=APIHelper.SKIP,
|
|
369
|
+
contact_api_id=APIHelper.SKIP,
|
|
370
|
+
contact_id=APIHelper.SKIP,
|
|
371
|
+
custom_data=APIHelper.SKIP,
|
|
372
|
+
customer_id=APIHelper.SKIP,
|
|
373
|
+
description=APIHelper.SKIP,
|
|
374
|
+
identity_verification=APIHelper.SKIP,
|
|
375
|
+
iias_ind=APIHelper.SKIP,
|
|
376
|
+
image_front=APIHelper.SKIP,
|
|
377
|
+
image_back=APIHelper.SKIP,
|
|
378
|
+
installment=APIHelper.SKIP,
|
|
379
|
+
installment_number=APIHelper.SKIP,
|
|
380
|
+
installment_count=APIHelper.SKIP,
|
|
381
|
+
recurring_flag=APIHelper.SKIP,
|
|
382
|
+
installment_counter=APIHelper.SKIP,
|
|
383
|
+
installment_total=APIHelper.SKIP,
|
|
384
|
+
subscription=APIHelper.SKIP,
|
|
385
|
+
standing_order=APIHelper.SKIP,
|
|
386
|
+
location_api_id=APIHelper.SKIP,
|
|
387
|
+
location_id=APIHelper.SKIP,
|
|
388
|
+
product_transaction_id=APIHelper.SKIP,
|
|
389
|
+
advance_deposit=APIHelper.SKIP,
|
|
390
|
+
no_show=APIHelper.SKIP,
|
|
391
|
+
notification_email_address=APIHelper.SKIP,
|
|
392
|
+
order_number=APIHelper.SKIP,
|
|
393
|
+
po_number=APIHelper.SKIP,
|
|
394
|
+
quick_invoice_id=APIHelper.SKIP,
|
|
395
|
+
recurring=APIHelper.SKIP,
|
|
396
|
+
recurring_number=APIHelper.SKIP,
|
|
397
|
+
room_num=APIHelper.SKIP,
|
|
398
|
+
room_rate=APIHelper.SKIP,
|
|
399
|
+
save_account=APIHelper.SKIP,
|
|
400
|
+
save_account_title=APIHelper.SKIP,
|
|
401
|
+
subtotal_amount=APIHelper.SKIP,
|
|
402
|
+
surcharge_amount=APIHelper.SKIP,
|
|
403
|
+
tags=APIHelper.SKIP,
|
|
404
|
+
tax=APIHelper.SKIP,
|
|
405
|
+
tip_amount=APIHelper.SKIP,
|
|
406
|
+
transaction_amount=APIHelper.SKIP,
|
|
407
|
+
secondary_amount=APIHelper.SKIP,
|
|
408
|
+
transaction_api_id=APIHelper.SKIP,
|
|
409
|
+
transaction_c_1=APIHelper.SKIP,
|
|
410
|
+
transaction_c_2=APIHelper.SKIP,
|
|
411
|
+
transaction_c_3=APIHelper.SKIP,
|
|
412
|
+
bank_funded_only_override=APIHelper.SKIP,
|
|
413
|
+
allow_partial_authorization_override=APIHelper.SKIP,
|
|
414
|
+
auto_decline_cvv_override=APIHelper.SKIP,
|
|
415
|
+
auto_decline_street_override=APIHelper.SKIP,
|
|
416
|
+
auto_decline_zip_override=APIHelper.SKIP,
|
|
417
|
+
ebt_type=APIHelper.SKIP,
|
|
418
|
+
currency_code=APIHelper.SKIP,
|
|
419
|
+
secure_cryptogram=APIHelper.SKIP,
|
|
420
|
+
secure_directory_server_transaction_id=APIHelper.SKIP,
|
|
421
|
+
terminal_serial_number=APIHelper.SKIP,
|
|
422
|
+
wallet_type=APIHelper.SKIP,
|
|
423
|
+
clerk_id=APIHelper.SKIP,
|
|
424
|
+
voucher_number=APIHelper.SKIP,
|
|
425
|
+
initiation_type=APIHelper.SKIP,
|
|
426
|
+
bill_payment=APIHelper.SKIP,
|
|
427
|
+
delay_charge=APIHelper.SKIP,
|
|
428
|
+
deferred_auth=APIHelper.SKIP,
|
|
429
|
+
mini_bar=APIHelper.SKIP,
|
|
430
|
+
ebt_food_eligible_amount=APIHelper.SKIP,
|
|
431
|
+
ebt_cash_eligible_amount=APIHelper.SKIP,
|
|
432
|
+
extra_tax=APIHelper.SKIP,
|
|
433
|
+
card_reader_id=APIHelper.SKIP,
|
|
434
|
+
additional_properties=None):
|
|
435
|
+
"""Initialize a V1TransactionsCcAuthOnlyTaptopayRequest instance."""
|
|
436
|
+
# Initialize members of the class
|
|
437
|
+
if additional_amounts is not APIHelper.SKIP:
|
|
438
|
+
self.additional_amounts = additional_amounts
|
|
439
|
+
if billing_address is not APIHelper.SKIP:
|
|
440
|
+
self.billing_address = billing_address
|
|
441
|
+
if checkin_date is not APIHelper.SKIP:
|
|
442
|
+
self.checkin_date = checkin_date
|
|
443
|
+
if checkout_date is not APIHelper.SKIP:
|
|
444
|
+
self.checkout_date = checkout_date
|
|
445
|
+
if clerk_number is not APIHelper.SKIP:
|
|
446
|
+
self.clerk_number = clerk_number
|
|
447
|
+
if contact_api_id is not APIHelper.SKIP:
|
|
448
|
+
self.contact_api_id = contact_api_id
|
|
449
|
+
if contact_id is not APIHelper.SKIP:
|
|
450
|
+
self.contact_id = contact_id
|
|
451
|
+
if custom_data is not APIHelper.SKIP:
|
|
452
|
+
self.custom_data = custom_data
|
|
453
|
+
if customer_id is not APIHelper.SKIP:
|
|
454
|
+
self.customer_id = customer_id
|
|
455
|
+
if description is not APIHelper.SKIP:
|
|
456
|
+
self.description = description
|
|
457
|
+
if identity_verification is not APIHelper.SKIP:
|
|
458
|
+
self.identity_verification = identity_verification
|
|
459
|
+
if iias_ind is not APIHelper.SKIP:
|
|
460
|
+
self.iias_ind = iias_ind
|
|
461
|
+
if image_front is not APIHelper.SKIP:
|
|
462
|
+
self.image_front = image_front
|
|
463
|
+
if image_back is not APIHelper.SKIP:
|
|
464
|
+
self.image_back = image_back
|
|
465
|
+
if installment is not APIHelper.SKIP:
|
|
466
|
+
self.installment = installment
|
|
467
|
+
if installment_number is not APIHelper.SKIP:
|
|
468
|
+
self.installment_number = installment_number
|
|
469
|
+
if installment_count is not APIHelper.SKIP:
|
|
470
|
+
self.installment_count = installment_count
|
|
471
|
+
if recurring_flag is not APIHelper.SKIP:
|
|
472
|
+
self.recurring_flag = recurring_flag
|
|
473
|
+
if installment_counter is not APIHelper.SKIP:
|
|
474
|
+
self.installment_counter = installment_counter
|
|
475
|
+
if installment_total is not APIHelper.SKIP:
|
|
476
|
+
self.installment_total = installment_total
|
|
477
|
+
if subscription is not APIHelper.SKIP:
|
|
478
|
+
self.subscription = subscription
|
|
479
|
+
if standing_order is not APIHelper.SKIP:
|
|
480
|
+
self.standing_order = standing_order
|
|
481
|
+
if location_api_id is not APIHelper.SKIP:
|
|
482
|
+
self.location_api_id = location_api_id
|
|
483
|
+
if location_id is not APIHelper.SKIP:
|
|
484
|
+
self.location_id = location_id
|
|
485
|
+
if product_transaction_id is not APIHelper.SKIP:
|
|
486
|
+
self.product_transaction_id = product_transaction_id
|
|
487
|
+
if advance_deposit is not APIHelper.SKIP:
|
|
488
|
+
self.advance_deposit = advance_deposit
|
|
489
|
+
if no_show is not APIHelper.SKIP:
|
|
490
|
+
self.no_show = no_show
|
|
491
|
+
if notification_email_address is not APIHelper.SKIP:
|
|
492
|
+
self.notification_email_address = notification_email_address
|
|
493
|
+
if order_number is not APIHelper.SKIP:
|
|
494
|
+
self.order_number = order_number
|
|
495
|
+
if po_number is not APIHelper.SKIP:
|
|
496
|
+
self.po_number = po_number
|
|
497
|
+
if quick_invoice_id is not APIHelper.SKIP:
|
|
498
|
+
self.quick_invoice_id = quick_invoice_id
|
|
499
|
+
if recurring is not APIHelper.SKIP:
|
|
500
|
+
self.recurring = recurring
|
|
501
|
+
if recurring_number is not APIHelper.SKIP:
|
|
502
|
+
self.recurring_number = recurring_number
|
|
503
|
+
if room_num is not APIHelper.SKIP:
|
|
504
|
+
self.room_num = room_num
|
|
505
|
+
if room_rate is not APIHelper.SKIP:
|
|
506
|
+
self.room_rate = room_rate
|
|
507
|
+
if save_account is not APIHelper.SKIP:
|
|
508
|
+
self.save_account = save_account
|
|
509
|
+
if save_account_title is not APIHelper.SKIP:
|
|
510
|
+
self.save_account_title = save_account_title
|
|
511
|
+
if subtotal_amount is not APIHelper.SKIP:
|
|
512
|
+
self.subtotal_amount = subtotal_amount
|
|
513
|
+
if surcharge_amount is not APIHelper.SKIP:
|
|
514
|
+
self.surcharge_amount = surcharge_amount
|
|
515
|
+
if tags is not APIHelper.SKIP:
|
|
516
|
+
self.tags = tags
|
|
517
|
+
if tax is not APIHelper.SKIP:
|
|
518
|
+
self.tax = tax
|
|
519
|
+
if tip_amount is not APIHelper.SKIP:
|
|
520
|
+
self.tip_amount = tip_amount
|
|
521
|
+
if transaction_amount is not APIHelper.SKIP:
|
|
522
|
+
self.transaction_amount = transaction_amount
|
|
523
|
+
if secondary_amount is not APIHelper.SKIP:
|
|
524
|
+
self.secondary_amount = secondary_amount
|
|
525
|
+
if transaction_api_id is not APIHelper.SKIP:
|
|
526
|
+
self.transaction_api_id = transaction_api_id
|
|
527
|
+
if transaction_c_1 is not APIHelper.SKIP:
|
|
528
|
+
self.transaction_c_1 = transaction_c_1
|
|
529
|
+
if transaction_c_2 is not APIHelper.SKIP:
|
|
530
|
+
self.transaction_c_2 = transaction_c_2
|
|
531
|
+
if transaction_c_3 is not APIHelper.SKIP:
|
|
532
|
+
self.transaction_c_3 = transaction_c_3
|
|
533
|
+
if bank_funded_only_override is not APIHelper.SKIP:
|
|
534
|
+
self.bank_funded_only_override = bank_funded_only_override
|
|
535
|
+
if allow_partial_authorization_override is not APIHelper.SKIP:
|
|
536
|
+
self.allow_partial_authorization_override =\
|
|
537
|
+
allow_partial_authorization_override
|
|
538
|
+
if auto_decline_cvv_override is not APIHelper.SKIP:
|
|
539
|
+
self.auto_decline_cvv_override = auto_decline_cvv_override
|
|
540
|
+
if auto_decline_street_override is not APIHelper.SKIP:
|
|
541
|
+
self.auto_decline_street_override = auto_decline_street_override
|
|
542
|
+
if auto_decline_zip_override is not APIHelper.SKIP:
|
|
543
|
+
self.auto_decline_zip_override = auto_decline_zip_override
|
|
544
|
+
if ebt_type is not APIHelper.SKIP:
|
|
545
|
+
self.ebt_type = ebt_type
|
|
546
|
+
if currency_code is not APIHelper.SKIP:
|
|
547
|
+
self.currency_code = currency_code
|
|
548
|
+
if secure_cryptogram is not APIHelper.SKIP:
|
|
549
|
+
self.secure_cryptogram = secure_cryptogram
|
|
550
|
+
if secure_directory_server_transaction_id is not APIHelper.SKIP:
|
|
551
|
+
self.secure_directory_server_transaction_id =\
|
|
552
|
+
secure_directory_server_transaction_id
|
|
553
|
+
if terminal_serial_number is not APIHelper.SKIP:
|
|
554
|
+
self.terminal_serial_number = terminal_serial_number
|
|
555
|
+
if wallet_type is not APIHelper.SKIP:
|
|
556
|
+
self.wallet_type = wallet_type
|
|
557
|
+
if clerk_id is not APIHelper.SKIP:
|
|
558
|
+
self.clerk_id = clerk_id
|
|
559
|
+
if voucher_number is not APIHelper.SKIP:
|
|
560
|
+
self.voucher_number = voucher_number
|
|
561
|
+
if initiation_type is not APIHelper.SKIP:
|
|
562
|
+
self.initiation_type = initiation_type
|
|
563
|
+
if bill_payment is not APIHelper.SKIP:
|
|
564
|
+
self.bill_payment = bill_payment
|
|
565
|
+
if delay_charge is not APIHelper.SKIP:
|
|
566
|
+
self.delay_charge = delay_charge
|
|
567
|
+
if deferred_auth is not APIHelper.SKIP:
|
|
568
|
+
self.deferred_auth = deferred_auth
|
|
569
|
+
if mini_bar is not APIHelper.SKIP:
|
|
570
|
+
self.mini_bar = mini_bar
|
|
571
|
+
if ebt_food_eligible_amount is not APIHelper.SKIP:
|
|
572
|
+
self.ebt_food_eligible_amount = ebt_food_eligible_amount
|
|
573
|
+
if ebt_cash_eligible_amount is not APIHelper.SKIP:
|
|
574
|
+
self.ebt_cash_eligible_amount = ebt_cash_eligible_amount
|
|
575
|
+
if extra_tax is not APIHelper.SKIP:
|
|
576
|
+
self.extra_tax = extra_tax
|
|
577
|
+
self.card_data_cryptogram = card_data_cryptogram
|
|
578
|
+
self.general_card_data = general_card_data
|
|
579
|
+
if card_reader_id is not APIHelper.SKIP:
|
|
580
|
+
self.card_reader_id = card_reader_id
|
|
581
|
+
|
|
582
|
+
# Add additional model properties to the instance
|
|
583
|
+
if additional_properties is None:
|
|
584
|
+
additional_properties = {}
|
|
585
|
+
self.additional_properties = additional_properties
|
|
586
|
+
|
|
587
|
+
@classmethod
|
|
588
|
+
def from_dictionary(cls,
|
|
589
|
+
dictionary):
|
|
590
|
+
"""Create an instance of this model from a dictionary
|
|
591
|
+
|
|
592
|
+
Args:
|
|
593
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
594
|
+
as obtained from the deserialization of the server's response. The
|
|
595
|
+
keys MUST match property names in the API description.
|
|
596
|
+
|
|
597
|
+
Returns:
|
|
598
|
+
object: An instance of this structure class.
|
|
599
|
+
|
|
600
|
+
"""
|
|
601
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
602
|
+
return None
|
|
603
|
+
|
|
604
|
+
# Extract variables from the dictionary
|
|
605
|
+
card_data_cryptogram =\
|
|
606
|
+
dictionary.get("card_data_cryptogram")\
|
|
607
|
+
if dictionary.get("card_data_cryptogram")\
|
|
608
|
+
else None
|
|
609
|
+
general_card_data =\
|
|
610
|
+
dictionary.get("general_card_data")\
|
|
611
|
+
if dictionary.get("general_card_data")\
|
|
612
|
+
else None
|
|
613
|
+
additional_amounts = None
|
|
614
|
+
if dictionary.get("additional_amounts") is not None:
|
|
615
|
+
additional_amounts = [
|
|
616
|
+
AdditionalAmount.from_dictionary(x)
|
|
617
|
+
for x in dictionary.get("additional_amounts")
|
|
618
|
+
]
|
|
619
|
+
else:
|
|
620
|
+
additional_amounts = APIHelper.SKIP
|
|
621
|
+
billing_address =\
|
|
622
|
+
BillingAddress1.from_dictionary(
|
|
623
|
+
dictionary.get("billing_address"))\
|
|
624
|
+
if "billing_address" in dictionary.keys()\
|
|
625
|
+
else APIHelper.SKIP
|
|
626
|
+
checkin_date =\
|
|
627
|
+
dictionary.get("checkin_date")\
|
|
628
|
+
if "checkin_date" in dictionary.keys()\
|
|
629
|
+
else APIHelper.SKIP
|
|
630
|
+
checkout_date =\
|
|
631
|
+
dictionary.get("checkout_date")\
|
|
632
|
+
if "checkout_date" in dictionary.keys()\
|
|
633
|
+
else APIHelper.SKIP
|
|
634
|
+
clerk_number =\
|
|
635
|
+
dictionary.get("clerk_number")\
|
|
636
|
+
if "clerk_number" in dictionary.keys()\
|
|
637
|
+
else APIHelper.SKIP
|
|
638
|
+
contact_api_id =\
|
|
639
|
+
dictionary.get("contact_api_id")\
|
|
640
|
+
if "contact_api_id" in dictionary.keys()\
|
|
641
|
+
else APIHelper.SKIP
|
|
642
|
+
contact_id =\
|
|
643
|
+
dictionary.get("contact_id")\
|
|
644
|
+
if "contact_id" in dictionary.keys()\
|
|
645
|
+
else APIHelper.SKIP
|
|
646
|
+
custom_data =\
|
|
647
|
+
dictionary.get("custom_data")\
|
|
648
|
+
if dictionary.get("custom_data")\
|
|
649
|
+
else APIHelper.SKIP
|
|
650
|
+
customer_id =\
|
|
651
|
+
dictionary.get("customer_id")\
|
|
652
|
+
if "customer_id" in dictionary.keys()\
|
|
653
|
+
else APIHelper.SKIP
|
|
654
|
+
description =\
|
|
655
|
+
dictionary.get("description")\
|
|
656
|
+
if "description" in dictionary.keys()\
|
|
657
|
+
else APIHelper.SKIP
|
|
658
|
+
identity_verification =\
|
|
659
|
+
IdentityVerification.from_dictionary(
|
|
660
|
+
dictionary.get("identity_verification"))\
|
|
661
|
+
if "identity_verification" in dictionary.keys()\
|
|
662
|
+
else APIHelper.SKIP
|
|
663
|
+
iias_ind =\
|
|
664
|
+
dictionary.get("iias_ind")\
|
|
665
|
+
if "iias_ind" in dictionary.keys()\
|
|
666
|
+
else APIHelper.SKIP
|
|
667
|
+
image_front =\
|
|
668
|
+
dictionary.get("image_front")\
|
|
669
|
+
if "image_front" in dictionary.keys()\
|
|
670
|
+
else APIHelper.SKIP
|
|
671
|
+
image_back =\
|
|
672
|
+
dictionary.get("image_back")\
|
|
673
|
+
if "image_back" in dictionary.keys()\
|
|
674
|
+
else APIHelper.SKIP
|
|
675
|
+
installment =\
|
|
676
|
+
dictionary.get("installment")\
|
|
677
|
+
if "installment" in dictionary.keys()\
|
|
678
|
+
else APIHelper.SKIP
|
|
679
|
+
installment_number =\
|
|
680
|
+
dictionary.get("installment_number")\
|
|
681
|
+
if "installment_number" in dictionary.keys()\
|
|
682
|
+
else APIHelper.SKIP
|
|
683
|
+
installment_count =\
|
|
684
|
+
dictionary.get("installment_count")\
|
|
685
|
+
if "installment_count" in dictionary.keys()\
|
|
686
|
+
else APIHelper.SKIP
|
|
687
|
+
recurring_flag =\
|
|
688
|
+
dictionary.get("recurring_flag")\
|
|
689
|
+
if "recurring_flag" in dictionary.keys()\
|
|
690
|
+
else APIHelper.SKIP
|
|
691
|
+
installment_counter =\
|
|
692
|
+
dictionary.get("installment_counter")\
|
|
693
|
+
if "installment_counter" in dictionary.keys()\
|
|
694
|
+
else APIHelper.SKIP
|
|
695
|
+
installment_total =\
|
|
696
|
+
dictionary.get("installment_total")\
|
|
697
|
+
if "installment_total" in dictionary.keys()\
|
|
698
|
+
else APIHelper.SKIP
|
|
699
|
+
subscription =\
|
|
700
|
+
dictionary.get("subscription")\
|
|
701
|
+
if "subscription" in dictionary.keys()\
|
|
702
|
+
else APIHelper.SKIP
|
|
703
|
+
standing_order =\
|
|
704
|
+
dictionary.get("standing_order")\
|
|
705
|
+
if "standing_order" in dictionary.keys()\
|
|
706
|
+
else APIHelper.SKIP
|
|
707
|
+
location_api_id =\
|
|
708
|
+
dictionary.get("location_api_id")\
|
|
709
|
+
if "location_api_id" in dictionary.keys()\
|
|
710
|
+
else APIHelper.SKIP
|
|
711
|
+
location_id =\
|
|
712
|
+
dictionary.get("location_id")\
|
|
713
|
+
if "location_id" in dictionary.keys()\
|
|
714
|
+
else APIHelper.SKIP
|
|
715
|
+
product_transaction_id =\
|
|
716
|
+
dictionary.get("product_transaction_id")\
|
|
717
|
+
if "product_transaction_id" in dictionary.keys()\
|
|
718
|
+
else APIHelper.SKIP
|
|
719
|
+
advance_deposit =\
|
|
720
|
+
dictionary.get("advance_deposit")\
|
|
721
|
+
if "advance_deposit" in dictionary.keys()\
|
|
722
|
+
else APIHelper.SKIP
|
|
723
|
+
no_show =\
|
|
724
|
+
dictionary.get("no_show")\
|
|
725
|
+
if "no_show" in dictionary.keys()\
|
|
726
|
+
else APIHelper.SKIP
|
|
727
|
+
notification_email_address =\
|
|
728
|
+
dictionary.get("notification_email_address")\
|
|
729
|
+
if "notification_email_address" in dictionary.keys()\
|
|
730
|
+
else APIHelper.SKIP
|
|
731
|
+
order_number =\
|
|
732
|
+
dictionary.get("order_number")\
|
|
733
|
+
if "order_number" in dictionary.keys()\
|
|
734
|
+
else APIHelper.SKIP
|
|
735
|
+
po_number =\
|
|
736
|
+
dictionary.get("po_number")\
|
|
737
|
+
if "po_number" in dictionary.keys()\
|
|
738
|
+
else APIHelper.SKIP
|
|
739
|
+
quick_invoice_id =\
|
|
740
|
+
dictionary.get("quick_invoice_id")\
|
|
741
|
+
if "quick_invoice_id" in dictionary.keys()\
|
|
742
|
+
else APIHelper.SKIP
|
|
743
|
+
recurring =\
|
|
744
|
+
dictionary.get("recurring")\
|
|
745
|
+
if "recurring" in dictionary.keys()\
|
|
746
|
+
else APIHelper.SKIP
|
|
747
|
+
recurring_number =\
|
|
748
|
+
dictionary.get("recurring_number")\
|
|
749
|
+
if "recurring_number" in dictionary.keys()\
|
|
750
|
+
else APIHelper.SKIP
|
|
751
|
+
room_num =\
|
|
752
|
+
dictionary.get("room_num")\
|
|
753
|
+
if "room_num" in dictionary.keys()\
|
|
754
|
+
else APIHelper.SKIP
|
|
755
|
+
room_rate =\
|
|
756
|
+
dictionary.get("room_rate")\
|
|
757
|
+
if "room_rate" in dictionary.keys()\
|
|
758
|
+
else APIHelper.SKIP
|
|
759
|
+
save_account =\
|
|
760
|
+
dictionary.get("save_account")\
|
|
761
|
+
if "save_account" in dictionary.keys()\
|
|
762
|
+
else APIHelper.SKIP
|
|
763
|
+
save_account_title =\
|
|
764
|
+
dictionary.get("save_account_title")\
|
|
765
|
+
if "save_account_title" in dictionary.keys()\
|
|
766
|
+
else APIHelper.SKIP
|
|
767
|
+
subtotal_amount =\
|
|
768
|
+
dictionary.get("subtotal_amount")\
|
|
769
|
+
if "subtotal_amount" in dictionary.keys()\
|
|
770
|
+
else APIHelper.SKIP
|
|
771
|
+
surcharge_amount =\
|
|
772
|
+
dictionary.get("surcharge_amount")\
|
|
773
|
+
if "surcharge_amount" in dictionary.keys()\
|
|
774
|
+
else APIHelper.SKIP
|
|
775
|
+
tags =\
|
|
776
|
+
dictionary.get("tags")\
|
|
777
|
+
if "tags" in dictionary.keys()\
|
|
778
|
+
else APIHelper.SKIP
|
|
779
|
+
tax =\
|
|
780
|
+
dictionary.get("tax")\
|
|
781
|
+
if "tax" in dictionary.keys()\
|
|
782
|
+
else APIHelper.SKIP
|
|
783
|
+
tip_amount =\
|
|
784
|
+
dictionary.get("tip_amount")\
|
|
785
|
+
if "tip_amount" in dictionary.keys()\
|
|
786
|
+
else APIHelper.SKIP
|
|
787
|
+
transaction_amount =\
|
|
788
|
+
dictionary.get("transaction_amount")\
|
|
789
|
+
if "transaction_amount" in dictionary.keys()\
|
|
790
|
+
else APIHelper.SKIP
|
|
791
|
+
secondary_amount =\
|
|
792
|
+
dictionary.get("secondary_amount")\
|
|
793
|
+
if "secondary_amount" in dictionary.keys()\
|
|
794
|
+
else APIHelper.SKIP
|
|
795
|
+
transaction_api_id =\
|
|
796
|
+
dictionary.get("transaction_api_id")\
|
|
797
|
+
if "transaction_api_id" in dictionary.keys()\
|
|
798
|
+
else APIHelper.SKIP
|
|
799
|
+
transaction_c_1 =\
|
|
800
|
+
dictionary.get("transaction_c1")\
|
|
801
|
+
if "transaction_c1" in dictionary.keys()\
|
|
802
|
+
else APIHelper.SKIP
|
|
803
|
+
transaction_c_2 =\
|
|
804
|
+
dictionary.get("transaction_c2")\
|
|
805
|
+
if "transaction_c2" in dictionary.keys()\
|
|
806
|
+
else APIHelper.SKIP
|
|
807
|
+
transaction_c_3 =\
|
|
808
|
+
dictionary.get("transaction_c3")\
|
|
809
|
+
if "transaction_c3" in dictionary.keys()\
|
|
810
|
+
else APIHelper.SKIP
|
|
811
|
+
bank_funded_only_override =\
|
|
812
|
+
dictionary.get("bank_funded_only_override")\
|
|
813
|
+
if "bank_funded_only_override" in dictionary.keys()\
|
|
814
|
+
else APIHelper.SKIP
|
|
815
|
+
allow_partial_authorization_override =\
|
|
816
|
+
dictionary.get("allow_partial_authorization_override")\
|
|
817
|
+
if "allow_partial_authorization_override" in dictionary.keys()\
|
|
818
|
+
else APIHelper.SKIP
|
|
819
|
+
auto_decline_cvv_override =\
|
|
820
|
+
dictionary.get("auto_decline_cvv_override")\
|
|
821
|
+
if "auto_decline_cvv_override" in dictionary.keys()\
|
|
822
|
+
else APIHelper.SKIP
|
|
823
|
+
auto_decline_street_override =\
|
|
824
|
+
dictionary.get("auto_decline_street_override")\
|
|
825
|
+
if "auto_decline_street_override" in dictionary.keys()\
|
|
826
|
+
else APIHelper.SKIP
|
|
827
|
+
auto_decline_zip_override =\
|
|
828
|
+
dictionary.get("auto_decline_zip_override")\
|
|
829
|
+
if "auto_decline_zip_override" in dictionary.keys()\
|
|
830
|
+
else APIHelper.SKIP
|
|
831
|
+
ebt_type =\
|
|
832
|
+
dictionary.get("ebt_type")\
|
|
833
|
+
if "ebt_type" in dictionary.keys()\
|
|
834
|
+
else APIHelper.SKIP
|
|
835
|
+
currency_code =\
|
|
836
|
+
dictionary.get("currency_code")\
|
|
837
|
+
if dictionary.get("currency_code")\
|
|
838
|
+
else APIHelper.SKIP
|
|
839
|
+
secure_cryptogram =\
|
|
840
|
+
dictionary.get("secure_cryptogram")\
|
|
841
|
+
if "secure_cryptogram" in dictionary.keys()\
|
|
842
|
+
else APIHelper.SKIP
|
|
843
|
+
secure_directory_server_transaction_id =\
|
|
844
|
+
dictionary.get("secure_directory_server_transaction_id")\
|
|
845
|
+
if "secure_directory_server_transaction_id" in dictionary.keys()\
|
|
846
|
+
else APIHelper.SKIP
|
|
847
|
+
terminal_serial_number =\
|
|
848
|
+
dictionary.get("terminal_serial_number")\
|
|
849
|
+
if "terminal_serial_number" in dictionary.keys()\
|
|
850
|
+
else APIHelper.SKIP
|
|
851
|
+
wallet_type =\
|
|
852
|
+
dictionary.get("wallet_type")\
|
|
853
|
+
if "wallet_type" in dictionary.keys()\
|
|
854
|
+
else APIHelper.SKIP
|
|
855
|
+
clerk_id =\
|
|
856
|
+
dictionary.get("clerk_id")\
|
|
857
|
+
if "clerk_id" in dictionary.keys()\
|
|
858
|
+
else APIHelper.SKIP
|
|
859
|
+
voucher_number =\
|
|
860
|
+
dictionary.get("voucher_number")\
|
|
861
|
+
if "voucher_number" in dictionary.keys()\
|
|
862
|
+
else APIHelper.SKIP
|
|
863
|
+
initiation_type =\
|
|
864
|
+
dictionary.get("initiation_type")\
|
|
865
|
+
if "initiation_type" in dictionary.keys()\
|
|
866
|
+
else APIHelper.SKIP
|
|
867
|
+
bill_payment =\
|
|
868
|
+
dictionary.get("bill_payment")\
|
|
869
|
+
if "bill_payment" in dictionary.keys()\
|
|
870
|
+
else APIHelper.SKIP
|
|
871
|
+
delay_charge =\
|
|
872
|
+
dictionary.get("delay_charge")\
|
|
873
|
+
if "delay_charge" in dictionary.keys()\
|
|
874
|
+
else APIHelper.SKIP
|
|
875
|
+
deferred_auth =\
|
|
876
|
+
dictionary.get("deferred_auth")\
|
|
877
|
+
if "deferred_auth" in dictionary.keys()\
|
|
878
|
+
else APIHelper.SKIP
|
|
879
|
+
mini_bar =\
|
|
880
|
+
dictionary.get("mini_bar")\
|
|
881
|
+
if "mini_bar" in dictionary.keys()\
|
|
882
|
+
else APIHelper.SKIP
|
|
883
|
+
ebt_food_eligible_amount =\
|
|
884
|
+
dictionary.get("ebt_food_eligible_amount")\
|
|
885
|
+
if "ebt_food_eligible_amount" in dictionary.keys()\
|
|
886
|
+
else APIHelper.SKIP
|
|
887
|
+
ebt_cash_eligible_amount =\
|
|
888
|
+
dictionary.get("ebt_cash_eligible_amount")\
|
|
889
|
+
if "ebt_cash_eligible_amount" in dictionary.keys()\
|
|
890
|
+
else APIHelper.SKIP
|
|
891
|
+
extra_tax =\
|
|
892
|
+
dictionary.get("extra_tax")\
|
|
893
|
+
if "extra_tax" in dictionary.keys()\
|
|
894
|
+
else APIHelper.SKIP
|
|
895
|
+
card_reader_id =\
|
|
896
|
+
dictionary.get("card_reader_id")\
|
|
897
|
+
if "card_reader_id" in dictionary.keys()\
|
|
898
|
+
else APIHelper.SKIP
|
|
899
|
+
|
|
900
|
+
# Clean out expected properties from dictionary
|
|
901
|
+
additional_properties =\
|
|
902
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
903
|
+
|
|
904
|
+
# Return an object of this model
|
|
905
|
+
return cls(card_data_cryptogram,
|
|
906
|
+
general_card_data,
|
|
907
|
+
additional_amounts,
|
|
908
|
+
billing_address,
|
|
909
|
+
checkin_date,
|
|
910
|
+
checkout_date,
|
|
911
|
+
clerk_number,
|
|
912
|
+
contact_api_id,
|
|
913
|
+
contact_id,
|
|
914
|
+
custom_data,
|
|
915
|
+
customer_id,
|
|
916
|
+
description,
|
|
917
|
+
identity_verification,
|
|
918
|
+
iias_ind,
|
|
919
|
+
image_front,
|
|
920
|
+
image_back,
|
|
921
|
+
installment,
|
|
922
|
+
installment_number,
|
|
923
|
+
installment_count,
|
|
924
|
+
recurring_flag,
|
|
925
|
+
installment_counter,
|
|
926
|
+
installment_total,
|
|
927
|
+
subscription,
|
|
928
|
+
standing_order,
|
|
929
|
+
location_api_id,
|
|
930
|
+
location_id,
|
|
931
|
+
product_transaction_id,
|
|
932
|
+
advance_deposit,
|
|
933
|
+
no_show,
|
|
934
|
+
notification_email_address,
|
|
935
|
+
order_number,
|
|
936
|
+
po_number,
|
|
937
|
+
quick_invoice_id,
|
|
938
|
+
recurring,
|
|
939
|
+
recurring_number,
|
|
940
|
+
room_num,
|
|
941
|
+
room_rate,
|
|
942
|
+
save_account,
|
|
943
|
+
save_account_title,
|
|
944
|
+
subtotal_amount,
|
|
945
|
+
surcharge_amount,
|
|
946
|
+
tags,
|
|
947
|
+
tax,
|
|
948
|
+
tip_amount,
|
|
949
|
+
transaction_amount,
|
|
950
|
+
secondary_amount,
|
|
951
|
+
transaction_api_id,
|
|
952
|
+
transaction_c_1,
|
|
953
|
+
transaction_c_2,
|
|
954
|
+
transaction_c_3,
|
|
955
|
+
bank_funded_only_override,
|
|
956
|
+
allow_partial_authorization_override,
|
|
957
|
+
auto_decline_cvv_override,
|
|
958
|
+
auto_decline_street_override,
|
|
959
|
+
auto_decline_zip_override,
|
|
960
|
+
ebt_type,
|
|
961
|
+
currency_code,
|
|
962
|
+
secure_cryptogram,
|
|
963
|
+
secure_directory_server_transaction_id,
|
|
964
|
+
terminal_serial_number,
|
|
965
|
+
wallet_type,
|
|
966
|
+
clerk_id,
|
|
967
|
+
voucher_number,
|
|
968
|
+
initiation_type,
|
|
969
|
+
bill_payment,
|
|
970
|
+
delay_charge,
|
|
971
|
+
deferred_auth,
|
|
972
|
+
mini_bar,
|
|
973
|
+
ebt_food_eligible_amount,
|
|
974
|
+
ebt_cash_eligible_amount,
|
|
975
|
+
extra_tax,
|
|
976
|
+
card_reader_id,
|
|
977
|
+
additional_properties)
|
|
978
|
+
|
|
979
|
+
def __repr__(self):
|
|
980
|
+
"""Return a unambiguous string representation."""
|
|
981
|
+
_additional_amounts=(
|
|
982
|
+
self.additional_amounts
|
|
983
|
+
if hasattr(self, "additional_amounts")
|
|
984
|
+
else None
|
|
985
|
+
)
|
|
986
|
+
_billing_address=(
|
|
987
|
+
self.billing_address
|
|
988
|
+
if hasattr(self, "billing_address")
|
|
989
|
+
else None
|
|
990
|
+
)
|
|
991
|
+
_checkin_date=(
|
|
992
|
+
self.checkin_date
|
|
993
|
+
if hasattr(self, "checkin_date")
|
|
994
|
+
else None
|
|
995
|
+
)
|
|
996
|
+
_checkout_date=(
|
|
997
|
+
self.checkout_date
|
|
998
|
+
if hasattr(self, "checkout_date")
|
|
999
|
+
else None
|
|
1000
|
+
)
|
|
1001
|
+
_clerk_number=(
|
|
1002
|
+
self.clerk_number
|
|
1003
|
+
if hasattr(self, "clerk_number")
|
|
1004
|
+
else None
|
|
1005
|
+
)
|
|
1006
|
+
_contact_api_id=(
|
|
1007
|
+
self.contact_api_id
|
|
1008
|
+
if hasattr(self, "contact_api_id")
|
|
1009
|
+
else None
|
|
1010
|
+
)
|
|
1011
|
+
_contact_id=(
|
|
1012
|
+
self.contact_id
|
|
1013
|
+
if hasattr(self, "contact_id")
|
|
1014
|
+
else None
|
|
1015
|
+
)
|
|
1016
|
+
_custom_data=(
|
|
1017
|
+
self.custom_data
|
|
1018
|
+
if hasattr(self, "custom_data")
|
|
1019
|
+
else None
|
|
1020
|
+
)
|
|
1021
|
+
_customer_id=(
|
|
1022
|
+
self.customer_id
|
|
1023
|
+
if hasattr(self, "customer_id")
|
|
1024
|
+
else None
|
|
1025
|
+
)
|
|
1026
|
+
_description=(
|
|
1027
|
+
self.description
|
|
1028
|
+
if hasattr(self, "description")
|
|
1029
|
+
else None
|
|
1030
|
+
)
|
|
1031
|
+
_identity_verification=(
|
|
1032
|
+
self.identity_verification
|
|
1033
|
+
if hasattr(self, "identity_verification")
|
|
1034
|
+
else None
|
|
1035
|
+
)
|
|
1036
|
+
_iias_ind=(
|
|
1037
|
+
self.iias_ind
|
|
1038
|
+
if hasattr(self, "iias_ind")
|
|
1039
|
+
else None
|
|
1040
|
+
)
|
|
1041
|
+
_image_front=(
|
|
1042
|
+
self.image_front
|
|
1043
|
+
if hasattr(self, "image_front")
|
|
1044
|
+
else None
|
|
1045
|
+
)
|
|
1046
|
+
_image_back=(
|
|
1047
|
+
self.image_back
|
|
1048
|
+
if hasattr(self, "image_back")
|
|
1049
|
+
else None
|
|
1050
|
+
)
|
|
1051
|
+
_installment=(
|
|
1052
|
+
self.installment
|
|
1053
|
+
if hasattr(self, "installment")
|
|
1054
|
+
else None
|
|
1055
|
+
)
|
|
1056
|
+
_installment_number=(
|
|
1057
|
+
self.installment_number
|
|
1058
|
+
if hasattr(self, "installment_number")
|
|
1059
|
+
else None
|
|
1060
|
+
)
|
|
1061
|
+
_installment_count=(
|
|
1062
|
+
self.installment_count
|
|
1063
|
+
if hasattr(self, "installment_count")
|
|
1064
|
+
else None
|
|
1065
|
+
)
|
|
1066
|
+
_recurring_flag=(
|
|
1067
|
+
self.recurring_flag
|
|
1068
|
+
if hasattr(self, "recurring_flag")
|
|
1069
|
+
else None
|
|
1070
|
+
)
|
|
1071
|
+
_installment_counter=(
|
|
1072
|
+
self.installment_counter
|
|
1073
|
+
if hasattr(self, "installment_counter")
|
|
1074
|
+
else None
|
|
1075
|
+
)
|
|
1076
|
+
_installment_total=(
|
|
1077
|
+
self.installment_total
|
|
1078
|
+
if hasattr(self, "installment_total")
|
|
1079
|
+
else None
|
|
1080
|
+
)
|
|
1081
|
+
_subscription=(
|
|
1082
|
+
self.subscription
|
|
1083
|
+
if hasattr(self, "subscription")
|
|
1084
|
+
else None
|
|
1085
|
+
)
|
|
1086
|
+
_standing_order=(
|
|
1087
|
+
self.standing_order
|
|
1088
|
+
if hasattr(self, "standing_order")
|
|
1089
|
+
else None
|
|
1090
|
+
)
|
|
1091
|
+
_location_api_id=(
|
|
1092
|
+
self.location_api_id
|
|
1093
|
+
if hasattr(self, "location_api_id")
|
|
1094
|
+
else None
|
|
1095
|
+
)
|
|
1096
|
+
_location_id=(
|
|
1097
|
+
self.location_id
|
|
1098
|
+
if hasattr(self, "location_id")
|
|
1099
|
+
else None
|
|
1100
|
+
)
|
|
1101
|
+
_product_transaction_id=(
|
|
1102
|
+
self.product_transaction_id
|
|
1103
|
+
if hasattr(self, "product_transaction_id")
|
|
1104
|
+
else None
|
|
1105
|
+
)
|
|
1106
|
+
_advance_deposit=(
|
|
1107
|
+
self.advance_deposit
|
|
1108
|
+
if hasattr(self, "advance_deposit")
|
|
1109
|
+
else None
|
|
1110
|
+
)
|
|
1111
|
+
_no_show=(
|
|
1112
|
+
self.no_show
|
|
1113
|
+
if hasattr(self, "no_show")
|
|
1114
|
+
else None
|
|
1115
|
+
)
|
|
1116
|
+
_notification_email_address=(
|
|
1117
|
+
self.notification_email_address
|
|
1118
|
+
if hasattr(self, "notification_email_address")
|
|
1119
|
+
else None
|
|
1120
|
+
)
|
|
1121
|
+
_order_number=(
|
|
1122
|
+
self.order_number
|
|
1123
|
+
if hasattr(self, "order_number")
|
|
1124
|
+
else None
|
|
1125
|
+
)
|
|
1126
|
+
_po_number=(
|
|
1127
|
+
self.po_number
|
|
1128
|
+
if hasattr(self, "po_number")
|
|
1129
|
+
else None
|
|
1130
|
+
)
|
|
1131
|
+
_quick_invoice_id=(
|
|
1132
|
+
self.quick_invoice_id
|
|
1133
|
+
if hasattr(self, "quick_invoice_id")
|
|
1134
|
+
else None
|
|
1135
|
+
)
|
|
1136
|
+
_recurring=(
|
|
1137
|
+
self.recurring
|
|
1138
|
+
if hasattr(self, "recurring")
|
|
1139
|
+
else None
|
|
1140
|
+
)
|
|
1141
|
+
_recurring_number=(
|
|
1142
|
+
self.recurring_number
|
|
1143
|
+
if hasattr(self, "recurring_number")
|
|
1144
|
+
else None
|
|
1145
|
+
)
|
|
1146
|
+
_room_num=(
|
|
1147
|
+
self.room_num
|
|
1148
|
+
if hasattr(self, "room_num")
|
|
1149
|
+
else None
|
|
1150
|
+
)
|
|
1151
|
+
_room_rate=(
|
|
1152
|
+
self.room_rate
|
|
1153
|
+
if hasattr(self, "room_rate")
|
|
1154
|
+
else None
|
|
1155
|
+
)
|
|
1156
|
+
_save_account=(
|
|
1157
|
+
self.save_account
|
|
1158
|
+
if hasattr(self, "save_account")
|
|
1159
|
+
else None
|
|
1160
|
+
)
|
|
1161
|
+
_save_account_title=(
|
|
1162
|
+
self.save_account_title
|
|
1163
|
+
if hasattr(self, "save_account_title")
|
|
1164
|
+
else None
|
|
1165
|
+
)
|
|
1166
|
+
_subtotal_amount=(
|
|
1167
|
+
self.subtotal_amount
|
|
1168
|
+
if hasattr(self, "subtotal_amount")
|
|
1169
|
+
else None
|
|
1170
|
+
)
|
|
1171
|
+
_surcharge_amount=(
|
|
1172
|
+
self.surcharge_amount
|
|
1173
|
+
if hasattr(self, "surcharge_amount")
|
|
1174
|
+
else None
|
|
1175
|
+
)
|
|
1176
|
+
_tags=(
|
|
1177
|
+
self.tags
|
|
1178
|
+
if hasattr(self, "tags")
|
|
1179
|
+
else None
|
|
1180
|
+
)
|
|
1181
|
+
_tax=(
|
|
1182
|
+
self.tax
|
|
1183
|
+
if hasattr(self, "tax")
|
|
1184
|
+
else None
|
|
1185
|
+
)
|
|
1186
|
+
_tip_amount=(
|
|
1187
|
+
self.tip_amount
|
|
1188
|
+
if hasattr(self, "tip_amount")
|
|
1189
|
+
else None
|
|
1190
|
+
)
|
|
1191
|
+
_transaction_amount=(
|
|
1192
|
+
self.transaction_amount
|
|
1193
|
+
if hasattr(self, "transaction_amount")
|
|
1194
|
+
else None
|
|
1195
|
+
)
|
|
1196
|
+
_secondary_amount=(
|
|
1197
|
+
self.secondary_amount
|
|
1198
|
+
if hasattr(self, "secondary_amount")
|
|
1199
|
+
else None
|
|
1200
|
+
)
|
|
1201
|
+
_transaction_api_id=(
|
|
1202
|
+
self.transaction_api_id
|
|
1203
|
+
if hasattr(self, "transaction_api_id")
|
|
1204
|
+
else None
|
|
1205
|
+
)
|
|
1206
|
+
_transaction_c_1=(
|
|
1207
|
+
self.transaction_c_1
|
|
1208
|
+
if hasattr(self, "transaction_c_1")
|
|
1209
|
+
else None
|
|
1210
|
+
)
|
|
1211
|
+
_transaction_c_2=(
|
|
1212
|
+
self.transaction_c_2
|
|
1213
|
+
if hasattr(self, "transaction_c_2")
|
|
1214
|
+
else None
|
|
1215
|
+
)
|
|
1216
|
+
_transaction_c_3=(
|
|
1217
|
+
self.transaction_c_3
|
|
1218
|
+
if hasattr(self, "transaction_c_3")
|
|
1219
|
+
else None
|
|
1220
|
+
)
|
|
1221
|
+
_bank_funded_only_override=(
|
|
1222
|
+
self.bank_funded_only_override
|
|
1223
|
+
if hasattr(self, "bank_funded_only_override")
|
|
1224
|
+
else None
|
|
1225
|
+
)
|
|
1226
|
+
_allow_partial_authorization_override=(
|
|
1227
|
+
self.allow_partial_authorization_override
|
|
1228
|
+
if hasattr(self, "allow_partial_authorization_override")
|
|
1229
|
+
else None
|
|
1230
|
+
)
|
|
1231
|
+
_auto_decline_cvv_override=(
|
|
1232
|
+
self.auto_decline_cvv_override
|
|
1233
|
+
if hasattr(self, "auto_decline_cvv_override")
|
|
1234
|
+
else None
|
|
1235
|
+
)
|
|
1236
|
+
_auto_decline_street_override=(
|
|
1237
|
+
self.auto_decline_street_override
|
|
1238
|
+
if hasattr(self, "auto_decline_street_override")
|
|
1239
|
+
else None
|
|
1240
|
+
)
|
|
1241
|
+
_auto_decline_zip_override=(
|
|
1242
|
+
self.auto_decline_zip_override
|
|
1243
|
+
if hasattr(self, "auto_decline_zip_override")
|
|
1244
|
+
else None
|
|
1245
|
+
)
|
|
1246
|
+
_ebt_type=(
|
|
1247
|
+
self.ebt_type
|
|
1248
|
+
if hasattr(self, "ebt_type")
|
|
1249
|
+
else None
|
|
1250
|
+
)
|
|
1251
|
+
_currency_code=(
|
|
1252
|
+
self.currency_code
|
|
1253
|
+
if hasattr(self, "currency_code")
|
|
1254
|
+
else None
|
|
1255
|
+
)
|
|
1256
|
+
_secure_cryptogram=(
|
|
1257
|
+
self.secure_cryptogram
|
|
1258
|
+
if hasattr(self, "secure_cryptogram")
|
|
1259
|
+
else None
|
|
1260
|
+
)
|
|
1261
|
+
_secure_directory_server_transaction_id=(
|
|
1262
|
+
self.secure_directory_server_transaction_id
|
|
1263
|
+
if hasattr(self, "secure_directory_server_transaction_id")
|
|
1264
|
+
else None
|
|
1265
|
+
)
|
|
1266
|
+
_terminal_serial_number=(
|
|
1267
|
+
self.terminal_serial_number
|
|
1268
|
+
if hasattr(self, "terminal_serial_number")
|
|
1269
|
+
else None
|
|
1270
|
+
)
|
|
1271
|
+
_wallet_type=(
|
|
1272
|
+
self.wallet_type
|
|
1273
|
+
if hasattr(self, "wallet_type")
|
|
1274
|
+
else None
|
|
1275
|
+
)
|
|
1276
|
+
_clerk_id=(
|
|
1277
|
+
self.clerk_id
|
|
1278
|
+
if hasattr(self, "clerk_id")
|
|
1279
|
+
else None
|
|
1280
|
+
)
|
|
1281
|
+
_voucher_number=(
|
|
1282
|
+
self.voucher_number
|
|
1283
|
+
if hasattr(self, "voucher_number")
|
|
1284
|
+
else None
|
|
1285
|
+
)
|
|
1286
|
+
_initiation_type=(
|
|
1287
|
+
self.initiation_type
|
|
1288
|
+
if hasattr(self, "initiation_type")
|
|
1289
|
+
else None
|
|
1290
|
+
)
|
|
1291
|
+
_bill_payment=(
|
|
1292
|
+
self.bill_payment
|
|
1293
|
+
if hasattr(self, "bill_payment")
|
|
1294
|
+
else None
|
|
1295
|
+
)
|
|
1296
|
+
_delay_charge=(
|
|
1297
|
+
self.delay_charge
|
|
1298
|
+
if hasattr(self, "delay_charge")
|
|
1299
|
+
else None
|
|
1300
|
+
)
|
|
1301
|
+
_deferred_auth=(
|
|
1302
|
+
self.deferred_auth
|
|
1303
|
+
if hasattr(self, "deferred_auth")
|
|
1304
|
+
else None
|
|
1305
|
+
)
|
|
1306
|
+
_mini_bar=(
|
|
1307
|
+
self.mini_bar
|
|
1308
|
+
if hasattr(self, "mini_bar")
|
|
1309
|
+
else None
|
|
1310
|
+
)
|
|
1311
|
+
_ebt_food_eligible_amount=(
|
|
1312
|
+
self.ebt_food_eligible_amount
|
|
1313
|
+
if hasattr(self, "ebt_food_eligible_amount")
|
|
1314
|
+
else None
|
|
1315
|
+
)
|
|
1316
|
+
_ebt_cash_eligible_amount=(
|
|
1317
|
+
self.ebt_cash_eligible_amount
|
|
1318
|
+
if hasattr(self, "ebt_cash_eligible_amount")
|
|
1319
|
+
else None
|
|
1320
|
+
)
|
|
1321
|
+
_extra_tax=(
|
|
1322
|
+
self.extra_tax
|
|
1323
|
+
if hasattr(self, "extra_tax")
|
|
1324
|
+
else None
|
|
1325
|
+
)
|
|
1326
|
+
_card_data_cryptogram=self.card_data_cryptogram
|
|
1327
|
+
_general_card_data=self.general_card_data
|
|
1328
|
+
_card_reader_id=(
|
|
1329
|
+
self.card_reader_id
|
|
1330
|
+
if hasattr(self, "card_reader_id")
|
|
1331
|
+
else None
|
|
1332
|
+
)
|
|
1333
|
+
_additional_properties=self.additional_properties
|
|
1334
|
+
return (
|
|
1335
|
+
f"{self.__class__.__name__}("
|
|
1336
|
+
f"additional_amounts={_additional_amounts!r}, "
|
|
1337
|
+
f"billing_address={_billing_address!r}, "
|
|
1338
|
+
f"checkin_date={_checkin_date!r}, "
|
|
1339
|
+
f"checkout_date={_checkout_date!r}, "
|
|
1340
|
+
f"clerk_number={_clerk_number!r}, "
|
|
1341
|
+
f"contact_api_id={_contact_api_id!r}, "
|
|
1342
|
+
f"contact_id={_contact_id!r}, "
|
|
1343
|
+
f"custom_data={_custom_data!r}, "
|
|
1344
|
+
f"customer_id={_customer_id!r}, "
|
|
1345
|
+
f"description={_description!r}, "
|
|
1346
|
+
f"identity_verification={_identity_verification!r}, "
|
|
1347
|
+
f"iias_ind={_iias_ind!r}, "
|
|
1348
|
+
f"image_front={_image_front!r}, "
|
|
1349
|
+
f"image_back={_image_back!r}, "
|
|
1350
|
+
f"installment={_installment!r}, "
|
|
1351
|
+
f"installment_number={_installment_number!r}, "
|
|
1352
|
+
f"installment_count={_installment_count!r}, "
|
|
1353
|
+
f"recurring_flag={_recurring_flag!r}, "
|
|
1354
|
+
f"installment_counter={_installment_counter!r}, "
|
|
1355
|
+
f"installment_total={_installment_total!r}, "
|
|
1356
|
+
f"subscription={_subscription!r}, "
|
|
1357
|
+
f"standing_order={_standing_order!r}, "
|
|
1358
|
+
f"location_api_id={_location_api_id!r}, "
|
|
1359
|
+
f"location_id={_location_id!r}, "
|
|
1360
|
+
f"product_transaction_id={_product_transaction_id!r}, "
|
|
1361
|
+
f"advance_deposit={_advance_deposit!r}, "
|
|
1362
|
+
f"no_show={_no_show!r}, "
|
|
1363
|
+
f"notification_email_address={_notification_email_address!r}, "
|
|
1364
|
+
f"order_number={_order_number!r}, "
|
|
1365
|
+
f"po_number={_po_number!r}, "
|
|
1366
|
+
f"quick_invoice_id={_quick_invoice_id!r}, "
|
|
1367
|
+
f"recurring={_recurring!r}, "
|
|
1368
|
+
f"recurring_number={_recurring_number!r}, "
|
|
1369
|
+
f"room_num={_room_num!r}, "
|
|
1370
|
+
f"room_rate={_room_rate!r}, "
|
|
1371
|
+
f"save_account={_save_account!r}, "
|
|
1372
|
+
f"save_account_title={_save_account_title!r}, "
|
|
1373
|
+
f"subtotal_amount={_subtotal_amount!r}, "
|
|
1374
|
+
f"surcharge_amount={_surcharge_amount!r}, "
|
|
1375
|
+
f"tags={_tags!r}, "
|
|
1376
|
+
f"tax={_tax!r}, "
|
|
1377
|
+
f"tip_amount={_tip_amount!r}, "
|
|
1378
|
+
f"transaction_amount={_transaction_amount!r}, "
|
|
1379
|
+
f"secondary_amount={_secondary_amount!r}, "
|
|
1380
|
+
f"transaction_api_id={_transaction_api_id!r}, "
|
|
1381
|
+
f"transaction_c_1={_transaction_c_1!r}, "
|
|
1382
|
+
f"transaction_c_2={_transaction_c_2!r}, "
|
|
1383
|
+
f"transaction_c_3={_transaction_c_3!r}, "
|
|
1384
|
+
f"bank_funded_only_override={_bank_funded_only_override!r}, "
|
|
1385
|
+
f"allow_partial_authorization_override={_allow_partial_authorization_override!r}, "
|
|
1386
|
+
f"auto_decline_cvv_override={_auto_decline_cvv_override!r}, "
|
|
1387
|
+
f"auto_decline_street_override={_auto_decline_street_override!r}, "
|
|
1388
|
+
f"auto_decline_zip_override={_auto_decline_zip_override!r}, "
|
|
1389
|
+
f"ebt_type={_ebt_type!r}, "
|
|
1390
|
+
f"currency_code={_currency_code!r}, "
|
|
1391
|
+
f"secure_cryptogram={_secure_cryptogram!r}, "
|
|
1392
|
+
f"secure_directory_server_transaction_id={_secure_directory_server_transaction_id!r}, "
|
|
1393
|
+
f"terminal_serial_number={_terminal_serial_number!r}, "
|
|
1394
|
+
f"wallet_type={_wallet_type!r}, "
|
|
1395
|
+
f"clerk_id={_clerk_id!r}, "
|
|
1396
|
+
f"voucher_number={_voucher_number!r}, "
|
|
1397
|
+
f"initiation_type={_initiation_type!r}, "
|
|
1398
|
+
f"bill_payment={_bill_payment!r}, "
|
|
1399
|
+
f"delay_charge={_delay_charge!r}, "
|
|
1400
|
+
f"deferred_auth={_deferred_auth!r}, "
|
|
1401
|
+
f"mini_bar={_mini_bar!r}, "
|
|
1402
|
+
f"ebt_food_eligible_amount={_ebt_food_eligible_amount!r}, "
|
|
1403
|
+
f"ebt_cash_eligible_amount={_ebt_cash_eligible_amount!r}, "
|
|
1404
|
+
f"extra_tax={_extra_tax!r}, "
|
|
1405
|
+
f"card_data_cryptogram={_card_data_cryptogram!r}, "
|
|
1406
|
+
f"general_card_data={_general_card_data!r}, "
|
|
1407
|
+
f"card_reader_id={_card_reader_id!r}, "
|
|
1408
|
+
f"additional_properties={_additional_properties!r}, "
|
|
1409
|
+
f")"
|
|
1410
|
+
)
|
|
1411
|
+
|
|
1412
|
+
def __str__(self):
|
|
1413
|
+
"""Return a human-readable string representation."""
|
|
1414
|
+
_additional_amounts=(
|
|
1415
|
+
self.additional_amounts
|
|
1416
|
+
if hasattr(self, "additional_amounts")
|
|
1417
|
+
else None
|
|
1418
|
+
)
|
|
1419
|
+
_billing_address=(
|
|
1420
|
+
self.billing_address
|
|
1421
|
+
if hasattr(self, "billing_address")
|
|
1422
|
+
else None
|
|
1423
|
+
)
|
|
1424
|
+
_checkin_date=(
|
|
1425
|
+
self.checkin_date
|
|
1426
|
+
if hasattr(self, "checkin_date")
|
|
1427
|
+
else None
|
|
1428
|
+
)
|
|
1429
|
+
_checkout_date=(
|
|
1430
|
+
self.checkout_date
|
|
1431
|
+
if hasattr(self, "checkout_date")
|
|
1432
|
+
else None
|
|
1433
|
+
)
|
|
1434
|
+
_clerk_number=(
|
|
1435
|
+
self.clerk_number
|
|
1436
|
+
if hasattr(self, "clerk_number")
|
|
1437
|
+
else None
|
|
1438
|
+
)
|
|
1439
|
+
_contact_api_id=(
|
|
1440
|
+
self.contact_api_id
|
|
1441
|
+
if hasattr(self, "contact_api_id")
|
|
1442
|
+
else None
|
|
1443
|
+
)
|
|
1444
|
+
_contact_id=(
|
|
1445
|
+
self.contact_id
|
|
1446
|
+
if hasattr(self, "contact_id")
|
|
1447
|
+
else None
|
|
1448
|
+
)
|
|
1449
|
+
_custom_data=(
|
|
1450
|
+
self.custom_data
|
|
1451
|
+
if hasattr(self, "custom_data")
|
|
1452
|
+
else None
|
|
1453
|
+
)
|
|
1454
|
+
_customer_id=(
|
|
1455
|
+
self.customer_id
|
|
1456
|
+
if hasattr(self, "customer_id")
|
|
1457
|
+
else None
|
|
1458
|
+
)
|
|
1459
|
+
_description=(
|
|
1460
|
+
self.description
|
|
1461
|
+
if hasattr(self, "description")
|
|
1462
|
+
else None
|
|
1463
|
+
)
|
|
1464
|
+
_identity_verification=(
|
|
1465
|
+
self.identity_verification
|
|
1466
|
+
if hasattr(self, "identity_verification")
|
|
1467
|
+
else None
|
|
1468
|
+
)
|
|
1469
|
+
_iias_ind=(
|
|
1470
|
+
self.iias_ind
|
|
1471
|
+
if hasattr(self, "iias_ind")
|
|
1472
|
+
else None
|
|
1473
|
+
)
|
|
1474
|
+
_image_front=(
|
|
1475
|
+
self.image_front
|
|
1476
|
+
if hasattr(self, "image_front")
|
|
1477
|
+
else None
|
|
1478
|
+
)
|
|
1479
|
+
_image_back=(
|
|
1480
|
+
self.image_back
|
|
1481
|
+
if hasattr(self, "image_back")
|
|
1482
|
+
else None
|
|
1483
|
+
)
|
|
1484
|
+
_installment=(
|
|
1485
|
+
self.installment
|
|
1486
|
+
if hasattr(self, "installment")
|
|
1487
|
+
else None
|
|
1488
|
+
)
|
|
1489
|
+
_installment_number=(
|
|
1490
|
+
self.installment_number
|
|
1491
|
+
if hasattr(self, "installment_number")
|
|
1492
|
+
else None
|
|
1493
|
+
)
|
|
1494
|
+
_installment_count=(
|
|
1495
|
+
self.installment_count
|
|
1496
|
+
if hasattr(self, "installment_count")
|
|
1497
|
+
else None
|
|
1498
|
+
)
|
|
1499
|
+
_recurring_flag=(
|
|
1500
|
+
self.recurring_flag
|
|
1501
|
+
if hasattr(self, "recurring_flag")
|
|
1502
|
+
else None
|
|
1503
|
+
)
|
|
1504
|
+
_installment_counter=(
|
|
1505
|
+
self.installment_counter
|
|
1506
|
+
if hasattr(self, "installment_counter")
|
|
1507
|
+
else None
|
|
1508
|
+
)
|
|
1509
|
+
_installment_total=(
|
|
1510
|
+
self.installment_total
|
|
1511
|
+
if hasattr(self, "installment_total")
|
|
1512
|
+
else None
|
|
1513
|
+
)
|
|
1514
|
+
_subscription=(
|
|
1515
|
+
self.subscription
|
|
1516
|
+
if hasattr(self, "subscription")
|
|
1517
|
+
else None
|
|
1518
|
+
)
|
|
1519
|
+
_standing_order=(
|
|
1520
|
+
self.standing_order
|
|
1521
|
+
if hasattr(self, "standing_order")
|
|
1522
|
+
else None
|
|
1523
|
+
)
|
|
1524
|
+
_location_api_id=(
|
|
1525
|
+
self.location_api_id
|
|
1526
|
+
if hasattr(self, "location_api_id")
|
|
1527
|
+
else None
|
|
1528
|
+
)
|
|
1529
|
+
_location_id=(
|
|
1530
|
+
self.location_id
|
|
1531
|
+
if hasattr(self, "location_id")
|
|
1532
|
+
else None
|
|
1533
|
+
)
|
|
1534
|
+
_product_transaction_id=(
|
|
1535
|
+
self.product_transaction_id
|
|
1536
|
+
if hasattr(self, "product_transaction_id")
|
|
1537
|
+
else None
|
|
1538
|
+
)
|
|
1539
|
+
_advance_deposit=(
|
|
1540
|
+
self.advance_deposit
|
|
1541
|
+
if hasattr(self, "advance_deposit")
|
|
1542
|
+
else None
|
|
1543
|
+
)
|
|
1544
|
+
_no_show=(
|
|
1545
|
+
self.no_show
|
|
1546
|
+
if hasattr(self, "no_show")
|
|
1547
|
+
else None
|
|
1548
|
+
)
|
|
1549
|
+
_notification_email_address=(
|
|
1550
|
+
self.notification_email_address
|
|
1551
|
+
if hasattr(self, "notification_email_address")
|
|
1552
|
+
else None
|
|
1553
|
+
)
|
|
1554
|
+
_order_number=(
|
|
1555
|
+
self.order_number
|
|
1556
|
+
if hasattr(self, "order_number")
|
|
1557
|
+
else None
|
|
1558
|
+
)
|
|
1559
|
+
_po_number=(
|
|
1560
|
+
self.po_number
|
|
1561
|
+
if hasattr(self, "po_number")
|
|
1562
|
+
else None
|
|
1563
|
+
)
|
|
1564
|
+
_quick_invoice_id=(
|
|
1565
|
+
self.quick_invoice_id
|
|
1566
|
+
if hasattr(self, "quick_invoice_id")
|
|
1567
|
+
else None
|
|
1568
|
+
)
|
|
1569
|
+
_recurring=(
|
|
1570
|
+
self.recurring
|
|
1571
|
+
if hasattr(self, "recurring")
|
|
1572
|
+
else None
|
|
1573
|
+
)
|
|
1574
|
+
_recurring_number=(
|
|
1575
|
+
self.recurring_number
|
|
1576
|
+
if hasattr(self, "recurring_number")
|
|
1577
|
+
else None
|
|
1578
|
+
)
|
|
1579
|
+
_room_num=(
|
|
1580
|
+
self.room_num
|
|
1581
|
+
if hasattr(self, "room_num")
|
|
1582
|
+
else None
|
|
1583
|
+
)
|
|
1584
|
+
_room_rate=(
|
|
1585
|
+
self.room_rate
|
|
1586
|
+
if hasattr(self, "room_rate")
|
|
1587
|
+
else None
|
|
1588
|
+
)
|
|
1589
|
+
_save_account=(
|
|
1590
|
+
self.save_account
|
|
1591
|
+
if hasattr(self, "save_account")
|
|
1592
|
+
else None
|
|
1593
|
+
)
|
|
1594
|
+
_save_account_title=(
|
|
1595
|
+
self.save_account_title
|
|
1596
|
+
if hasattr(self, "save_account_title")
|
|
1597
|
+
else None
|
|
1598
|
+
)
|
|
1599
|
+
_subtotal_amount=(
|
|
1600
|
+
self.subtotal_amount
|
|
1601
|
+
if hasattr(self, "subtotal_amount")
|
|
1602
|
+
else None
|
|
1603
|
+
)
|
|
1604
|
+
_surcharge_amount=(
|
|
1605
|
+
self.surcharge_amount
|
|
1606
|
+
if hasattr(self, "surcharge_amount")
|
|
1607
|
+
else None
|
|
1608
|
+
)
|
|
1609
|
+
_tags=(
|
|
1610
|
+
self.tags
|
|
1611
|
+
if hasattr(self, "tags")
|
|
1612
|
+
else None
|
|
1613
|
+
)
|
|
1614
|
+
_tax=(
|
|
1615
|
+
self.tax
|
|
1616
|
+
if hasattr(self, "tax")
|
|
1617
|
+
else None
|
|
1618
|
+
)
|
|
1619
|
+
_tip_amount=(
|
|
1620
|
+
self.tip_amount
|
|
1621
|
+
if hasattr(self, "tip_amount")
|
|
1622
|
+
else None
|
|
1623
|
+
)
|
|
1624
|
+
_transaction_amount=(
|
|
1625
|
+
self.transaction_amount
|
|
1626
|
+
if hasattr(self, "transaction_amount")
|
|
1627
|
+
else None
|
|
1628
|
+
)
|
|
1629
|
+
_secondary_amount=(
|
|
1630
|
+
self.secondary_amount
|
|
1631
|
+
if hasattr(self, "secondary_amount")
|
|
1632
|
+
else None
|
|
1633
|
+
)
|
|
1634
|
+
_transaction_api_id=(
|
|
1635
|
+
self.transaction_api_id
|
|
1636
|
+
if hasattr(self, "transaction_api_id")
|
|
1637
|
+
else None
|
|
1638
|
+
)
|
|
1639
|
+
_transaction_c_1=(
|
|
1640
|
+
self.transaction_c_1
|
|
1641
|
+
if hasattr(self, "transaction_c_1")
|
|
1642
|
+
else None
|
|
1643
|
+
)
|
|
1644
|
+
_transaction_c_2=(
|
|
1645
|
+
self.transaction_c_2
|
|
1646
|
+
if hasattr(self, "transaction_c_2")
|
|
1647
|
+
else None
|
|
1648
|
+
)
|
|
1649
|
+
_transaction_c_3=(
|
|
1650
|
+
self.transaction_c_3
|
|
1651
|
+
if hasattr(self, "transaction_c_3")
|
|
1652
|
+
else None
|
|
1653
|
+
)
|
|
1654
|
+
_bank_funded_only_override=(
|
|
1655
|
+
self.bank_funded_only_override
|
|
1656
|
+
if hasattr(self, "bank_funded_only_override")
|
|
1657
|
+
else None
|
|
1658
|
+
)
|
|
1659
|
+
_allow_partial_authorization_override=(
|
|
1660
|
+
self.allow_partial_authorization_override
|
|
1661
|
+
if hasattr(self, "allow_partial_authorization_override")
|
|
1662
|
+
else None
|
|
1663
|
+
)
|
|
1664
|
+
_auto_decline_cvv_override=(
|
|
1665
|
+
self.auto_decline_cvv_override
|
|
1666
|
+
if hasattr(self, "auto_decline_cvv_override")
|
|
1667
|
+
else None
|
|
1668
|
+
)
|
|
1669
|
+
_auto_decline_street_override=(
|
|
1670
|
+
self.auto_decline_street_override
|
|
1671
|
+
if hasattr(self, "auto_decline_street_override")
|
|
1672
|
+
else None
|
|
1673
|
+
)
|
|
1674
|
+
_auto_decline_zip_override=(
|
|
1675
|
+
self.auto_decline_zip_override
|
|
1676
|
+
if hasattr(self, "auto_decline_zip_override")
|
|
1677
|
+
else None
|
|
1678
|
+
)
|
|
1679
|
+
_ebt_type=(
|
|
1680
|
+
self.ebt_type
|
|
1681
|
+
if hasattr(self, "ebt_type")
|
|
1682
|
+
else None
|
|
1683
|
+
)
|
|
1684
|
+
_currency_code=(
|
|
1685
|
+
self.currency_code
|
|
1686
|
+
if hasattr(self, "currency_code")
|
|
1687
|
+
else None
|
|
1688
|
+
)
|
|
1689
|
+
_secure_cryptogram=(
|
|
1690
|
+
self.secure_cryptogram
|
|
1691
|
+
if hasattr(self, "secure_cryptogram")
|
|
1692
|
+
else None
|
|
1693
|
+
)
|
|
1694
|
+
_secure_directory_server_transaction_id=(
|
|
1695
|
+
self.secure_directory_server_transaction_id
|
|
1696
|
+
if hasattr(self, "secure_directory_server_transaction_id")
|
|
1697
|
+
else None
|
|
1698
|
+
)
|
|
1699
|
+
_terminal_serial_number=(
|
|
1700
|
+
self.terminal_serial_number
|
|
1701
|
+
if hasattr(self, "terminal_serial_number")
|
|
1702
|
+
else None
|
|
1703
|
+
)
|
|
1704
|
+
_wallet_type=(
|
|
1705
|
+
self.wallet_type
|
|
1706
|
+
if hasattr(self, "wallet_type")
|
|
1707
|
+
else None
|
|
1708
|
+
)
|
|
1709
|
+
_clerk_id=(
|
|
1710
|
+
self.clerk_id
|
|
1711
|
+
if hasattr(self, "clerk_id")
|
|
1712
|
+
else None
|
|
1713
|
+
)
|
|
1714
|
+
_voucher_number=(
|
|
1715
|
+
self.voucher_number
|
|
1716
|
+
if hasattr(self, "voucher_number")
|
|
1717
|
+
else None
|
|
1718
|
+
)
|
|
1719
|
+
_initiation_type=(
|
|
1720
|
+
self.initiation_type
|
|
1721
|
+
if hasattr(self, "initiation_type")
|
|
1722
|
+
else None
|
|
1723
|
+
)
|
|
1724
|
+
_bill_payment=(
|
|
1725
|
+
self.bill_payment
|
|
1726
|
+
if hasattr(self, "bill_payment")
|
|
1727
|
+
else None
|
|
1728
|
+
)
|
|
1729
|
+
_delay_charge=(
|
|
1730
|
+
self.delay_charge
|
|
1731
|
+
if hasattr(self, "delay_charge")
|
|
1732
|
+
else None
|
|
1733
|
+
)
|
|
1734
|
+
_deferred_auth=(
|
|
1735
|
+
self.deferred_auth
|
|
1736
|
+
if hasattr(self, "deferred_auth")
|
|
1737
|
+
else None
|
|
1738
|
+
)
|
|
1739
|
+
_mini_bar=(
|
|
1740
|
+
self.mini_bar
|
|
1741
|
+
if hasattr(self, "mini_bar")
|
|
1742
|
+
else None
|
|
1743
|
+
)
|
|
1744
|
+
_ebt_food_eligible_amount=(
|
|
1745
|
+
self.ebt_food_eligible_amount
|
|
1746
|
+
if hasattr(self, "ebt_food_eligible_amount")
|
|
1747
|
+
else None
|
|
1748
|
+
)
|
|
1749
|
+
_ebt_cash_eligible_amount=(
|
|
1750
|
+
self.ebt_cash_eligible_amount
|
|
1751
|
+
if hasattr(self, "ebt_cash_eligible_amount")
|
|
1752
|
+
else None
|
|
1753
|
+
)
|
|
1754
|
+
_extra_tax=(
|
|
1755
|
+
self.extra_tax
|
|
1756
|
+
if hasattr(self, "extra_tax")
|
|
1757
|
+
else None
|
|
1758
|
+
)
|
|
1759
|
+
_card_data_cryptogram=self.card_data_cryptogram
|
|
1760
|
+
_general_card_data=self.general_card_data
|
|
1761
|
+
_card_reader_id=(
|
|
1762
|
+
self.card_reader_id
|
|
1763
|
+
if hasattr(self, "card_reader_id")
|
|
1764
|
+
else None
|
|
1765
|
+
)
|
|
1766
|
+
_additional_properties=self.additional_properties
|
|
1767
|
+
return (
|
|
1768
|
+
f"{self.__class__.__name__}("
|
|
1769
|
+
f"additional_amounts={_additional_amounts!s}, "
|
|
1770
|
+
f"billing_address={_billing_address!s}, "
|
|
1771
|
+
f"checkin_date={_checkin_date!s}, "
|
|
1772
|
+
f"checkout_date={_checkout_date!s}, "
|
|
1773
|
+
f"clerk_number={_clerk_number!s}, "
|
|
1774
|
+
f"contact_api_id={_contact_api_id!s}, "
|
|
1775
|
+
f"contact_id={_contact_id!s}, "
|
|
1776
|
+
f"custom_data={_custom_data!s}, "
|
|
1777
|
+
f"customer_id={_customer_id!s}, "
|
|
1778
|
+
f"description={_description!s}, "
|
|
1779
|
+
f"identity_verification={_identity_verification!s}, "
|
|
1780
|
+
f"iias_ind={_iias_ind!s}, "
|
|
1781
|
+
f"image_front={_image_front!s}, "
|
|
1782
|
+
f"image_back={_image_back!s}, "
|
|
1783
|
+
f"installment={_installment!s}, "
|
|
1784
|
+
f"installment_number={_installment_number!s}, "
|
|
1785
|
+
f"installment_count={_installment_count!s}, "
|
|
1786
|
+
f"recurring_flag={_recurring_flag!s}, "
|
|
1787
|
+
f"installment_counter={_installment_counter!s}, "
|
|
1788
|
+
f"installment_total={_installment_total!s}, "
|
|
1789
|
+
f"subscription={_subscription!s}, "
|
|
1790
|
+
f"standing_order={_standing_order!s}, "
|
|
1791
|
+
f"location_api_id={_location_api_id!s}, "
|
|
1792
|
+
f"location_id={_location_id!s}, "
|
|
1793
|
+
f"product_transaction_id={_product_transaction_id!s}, "
|
|
1794
|
+
f"advance_deposit={_advance_deposit!s}, "
|
|
1795
|
+
f"no_show={_no_show!s}, "
|
|
1796
|
+
f"notification_email_address={_notification_email_address!s}, "
|
|
1797
|
+
f"order_number={_order_number!s}, "
|
|
1798
|
+
f"po_number={_po_number!s}, "
|
|
1799
|
+
f"quick_invoice_id={_quick_invoice_id!s}, "
|
|
1800
|
+
f"recurring={_recurring!s}, "
|
|
1801
|
+
f"recurring_number={_recurring_number!s}, "
|
|
1802
|
+
f"room_num={_room_num!s}, "
|
|
1803
|
+
f"room_rate={_room_rate!s}, "
|
|
1804
|
+
f"save_account={_save_account!s}, "
|
|
1805
|
+
f"save_account_title={_save_account_title!s}, "
|
|
1806
|
+
f"subtotal_amount={_subtotal_amount!s}, "
|
|
1807
|
+
f"surcharge_amount={_surcharge_amount!s}, "
|
|
1808
|
+
f"tags={_tags!s}, "
|
|
1809
|
+
f"tax={_tax!s}, "
|
|
1810
|
+
f"tip_amount={_tip_amount!s}, "
|
|
1811
|
+
f"transaction_amount={_transaction_amount!s}, "
|
|
1812
|
+
f"secondary_amount={_secondary_amount!s}, "
|
|
1813
|
+
f"transaction_api_id={_transaction_api_id!s}, "
|
|
1814
|
+
f"transaction_c_1={_transaction_c_1!s}, "
|
|
1815
|
+
f"transaction_c_2={_transaction_c_2!s}, "
|
|
1816
|
+
f"transaction_c_3={_transaction_c_3!s}, "
|
|
1817
|
+
f"bank_funded_only_override={_bank_funded_only_override!s}, "
|
|
1818
|
+
f"allow_partial_authorization_override={_allow_partial_authorization_override!s}, "
|
|
1819
|
+
f"auto_decline_cvv_override={_auto_decline_cvv_override!s}, "
|
|
1820
|
+
f"auto_decline_street_override={_auto_decline_street_override!s}, "
|
|
1821
|
+
f"auto_decline_zip_override={_auto_decline_zip_override!s}, "
|
|
1822
|
+
f"ebt_type={_ebt_type!s}, "
|
|
1823
|
+
f"currency_code={_currency_code!s}, "
|
|
1824
|
+
f"secure_cryptogram={_secure_cryptogram!s}, "
|
|
1825
|
+
f"secure_directory_server_transaction_id={_secure_directory_server_transaction_id!s}, "
|
|
1826
|
+
f"terminal_serial_number={_terminal_serial_number!s}, "
|
|
1827
|
+
f"wallet_type={_wallet_type!s}, "
|
|
1828
|
+
f"clerk_id={_clerk_id!s}, "
|
|
1829
|
+
f"voucher_number={_voucher_number!s}, "
|
|
1830
|
+
f"initiation_type={_initiation_type!s}, "
|
|
1831
|
+
f"bill_payment={_bill_payment!s}, "
|
|
1832
|
+
f"delay_charge={_delay_charge!s}, "
|
|
1833
|
+
f"deferred_auth={_deferred_auth!s}, "
|
|
1834
|
+
f"mini_bar={_mini_bar!s}, "
|
|
1835
|
+
f"ebt_food_eligible_amount={_ebt_food_eligible_amount!s}, "
|
|
1836
|
+
f"ebt_cash_eligible_amount={_ebt_cash_eligible_amount!s}, "
|
|
1837
|
+
f"extra_tax={_extra_tax!s}, "
|
|
1838
|
+
f"card_data_cryptogram={_card_data_cryptogram!s}, "
|
|
1839
|
+
f"general_card_data={_general_card_data!s}, "
|
|
1840
|
+
f"card_reader_id={_card_reader_id!s}, "
|
|
1841
|
+
f"additional_properties={_additional_properties!s}, "
|
|
1842
|
+
f")"
|
|
1843
|
+
)
|