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,1616 @@
|
|
|
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_27 import (
|
|
15
|
+
IdentityVerification27,
|
|
16
|
+
)
|
|
17
|
+
from fortisapi.models.joi_27 import Joi27
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class V1TransactionsAchRefundPrevTrxnRequest(object):
|
|
21
|
+
"""Implementation of the 'V1 Transactions Ach Refund Prev Trxn Request' model.
|
|
22
|
+
|
|
23
|
+
Attributes:
|
|
24
|
+
additional_amounts (List[AdditionalAmount]): Additional amounts
|
|
25
|
+
billing_address (BillingAddress1): Billing Address Object
|
|
26
|
+
checkin_date (str): Checkin Date - The time difference between checkin_date
|
|
27
|
+
and checkout_date must be less than or equal to 99 days. NOTE: if
|
|
28
|
+
checkin_date is in the future, set the advance_deposit to 1 >Required if
|
|
29
|
+
merchant industry type is lodging. >
|
|
30
|
+
checkout_date (str): Checkout Date - The time difference between checkin_date
|
|
31
|
+
and checkout_date must be less than or equal to 99 days. >Required if
|
|
32
|
+
merchant industry type is lodging. >
|
|
33
|
+
clerk_number (str): Clerk or Employee Identifier
|
|
34
|
+
contact_api_id (str): This can be supplied in place of contact_id if you
|
|
35
|
+
would like to use a contact for the transaction and are using your own
|
|
36
|
+
custom api_id's to track contacts in the system.
|
|
37
|
+
contact_id (str): If contact_id is provided, ensure it belongs to the same
|
|
38
|
+
location as the transaction. You cannot move transaction across locations.
|
|
39
|
+
custom_data (Any): A field that allows custom JSON to be entered to store
|
|
40
|
+
extra data.
|
|
41
|
+
customer_id (str): Can be used by Merchants to identify Contacts in our
|
|
42
|
+
system by an ID from another system.
|
|
43
|
+
description (str): Description
|
|
44
|
+
identity_verification (IdentityVerification27): Identity Verification
|
|
45
|
+
iias_ind (IiasIndEnum): Possible values are '0', '1','2'
|
|
46
|
+
image_front (str): A base64 encoded string for the image. Used with Check21
|
|
47
|
+
ACH transactions.
|
|
48
|
+
image_back (str): A base64 encoded string for the image. Used with Check21
|
|
49
|
+
ACH transactions.
|
|
50
|
+
installment (bool): Flag that is allowed to be passed on card not present
|
|
51
|
+
industries to signify the transaction is a fixed installment plan
|
|
52
|
+
transaction.
|
|
53
|
+
installment_number (int): If this is a fixed installment plan and installment
|
|
54
|
+
field is being passed as 1, then this field must have a vlue of 1-999
|
|
55
|
+
specifying the current installment number that is running.
|
|
56
|
+
installment_count (int): If this is a fixed installment plan and installment
|
|
57
|
+
field is being passed as 1, then this field must have a vlue of 1-999
|
|
58
|
+
specifying the total number of installments on the plan. This number must
|
|
59
|
+
be grater than or equal to installment_number.
|
|
60
|
+
recurring_flag (RecurringFlagEnum): Recurring Flag
|
|
61
|
+
installment_counter (int): Installment Counter
|
|
62
|
+
installment_total (int): Installment Total
|
|
63
|
+
subscription (bool): Subscription
|
|
64
|
+
standing_order (bool): Standing Order
|
|
65
|
+
location_api_id (str): This can be supplied in place of location_id for the
|
|
66
|
+
transaction if you are using your own custom api_id's for your locations.
|
|
67
|
+
location_id (str): A valid Location Id to associate the transaction with.
|
|
68
|
+
product_transaction_id (str): The Product's method (cc/ach) has to match the
|
|
69
|
+
action. If not provided, the API will use the default configured for the
|
|
70
|
+
Location.
|
|
71
|
+
advance_deposit (bool): Advance Deposit
|
|
72
|
+
no_show (bool): Used in Lodging
|
|
73
|
+
notification_email_address (str): If email is supplied then receipt will be
|
|
74
|
+
emailed
|
|
75
|
+
order_number (str): Required for CC transactions , if merchant's deposit
|
|
76
|
+
account's duplicate check per batch has 'order_number' field
|
|
77
|
+
po_number (str): Purchase Order number
|
|
78
|
+
quick_invoice_id (str): Can be used to associate a transaction to a Quick
|
|
79
|
+
Invoice. Quick Invoice transactions will have a value for this field
|
|
80
|
+
automatically.
|
|
81
|
+
recurring (bool): Flag that is allowed to be passed on card not present
|
|
82
|
+
industries to signify the transaction is an ongoing recurring
|
|
83
|
+
transaction. Possible values to send are 0 or 1. This field must be 0 or
|
|
84
|
+
not present if installment is sent as 1.
|
|
85
|
+
recurring_number (int): If this is an ongoing recurring and recurring field
|
|
86
|
+
is being passed as 1, then this field must have a vlue of 1-999
|
|
87
|
+
specifying the current recurring number that is running.
|
|
88
|
+
room_num (str): Used in Lodging
|
|
89
|
+
room_rate (int): Required if merchant industry type is lodging.
|
|
90
|
+
save_account (bool): Specifies to save account to contacts profile if
|
|
91
|
+
account_number/track_data is present with either contact_id or
|
|
92
|
+
contact_api_id in params.
|
|
93
|
+
save_account_title (str): If saving token while running a transaction, this
|
|
94
|
+
will be the title of the token.
|
|
95
|
+
subtotal_amount (int): This field is allowed and required for transactions
|
|
96
|
+
that have a product where surcharge is configured. Use only integer
|
|
97
|
+
numbers, so $10.99 will be 1099.
|
|
98
|
+
surcharge_amount (int): This field is allowed and required for transactions
|
|
99
|
+
that have a product where surcharge is configured. Use only integer
|
|
100
|
+
numbers, so $10.99 will be 1099.
|
|
101
|
+
tags (List[str]): Tags
|
|
102
|
+
tax (int): The total tax amount for the transaction, including any tax on the
|
|
103
|
+
surcharge (Extra Tax).
|
|
104
|
+
tip_amount (int): Optional tip amount. Tip is not supported for lodging and
|
|
105
|
+
ecommerce merchants. Use only integer numbers, so $10.99 will be 1099.
|
|
106
|
+
transaction_amount (int): Amount of the transaction. This should always be
|
|
107
|
+
the desired settle amount of the transaction. Use only integer numbers,
|
|
108
|
+
so $10.99 will be 1099.
|
|
109
|
+
secondary_amount (int): Retained Amount of the transaction. This should
|
|
110
|
+
always be less than transaction amount. Use only integer numbers, so
|
|
111
|
+
$10.99 will be 1099
|
|
112
|
+
transaction_api_id (str): See api_id page for more details
|
|
113
|
+
transaction_c_1 (str): Custom field 1 for api users to store custom data
|
|
114
|
+
transaction_c_2 (str): Custom field 2 for api users to store custom data
|
|
115
|
+
transaction_c_3 (str): Custom field 3 for api users to store custom data
|
|
116
|
+
bank_funded_only_override (bool): Bank Funded Only Override
|
|
117
|
+
allow_partial_authorization_override (bool): Allow Partial Authorization
|
|
118
|
+
Override
|
|
119
|
+
auto_decline_cvv_override (bool): Auto Decline CVV Override
|
|
120
|
+
auto_decline_street_override (bool): Auto Decline Street Override
|
|
121
|
+
auto_decline_zip_override (bool): Auto Decline Zip Override
|
|
122
|
+
ebt_type (EbtTypeEnum): EBT Type
|
|
123
|
+
currency_code (CurrencyCodeEnum): The currency code, in ISO 4217 format. It
|
|
124
|
+
can be either the 3-letter code (e.g., USD) or the numeric code (e.g.,
|
|
125
|
+
840).
|
|
126
|
+
ach_identifier (str): Required for ACH transactions in certain scenarios.
|
|
127
|
+
ach_sec_code (AchSecCode31Enum): Required for ACH transactions if
|
|
128
|
+
account_vault_id is not provided. >Only CCD, PPD, TEL, and WEB are
|
|
129
|
+
supported for FortisAch. >
|
|
130
|
+
effective_date (str): For ACH only, this is optional and defaults to current
|
|
131
|
+
day.
|
|
132
|
+
account_holder_name (str): For CC, this is the 'Name (as it appears) on
|
|
133
|
+
Card'. For ACH, this is the 'Name on Account'. >Required for ACH
|
|
134
|
+
transactions if account_vault_id is not provided. For CC transactions
|
|
135
|
+
that are run through a terminal, this field may be overwritten by data
|
|
136
|
+
acquired from the credit card track data. >
|
|
137
|
+
previous_transaction_id (str): previous_transaction_id is used as token to
|
|
138
|
+
run transaction. Account details OR previous_transaction_id should be
|
|
139
|
+
passed to run transaction.
|
|
140
|
+
previous_transaction_api_id (str): previous_transaction_api_id is used as
|
|
141
|
+
token to run transaction. Account details OR previous_transaction_api_id
|
|
142
|
+
should be passed to run transaction.
|
|
143
|
+
joi (Joi27): The model property of type Joi27.
|
|
144
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
145
|
+
model.
|
|
146
|
+
|
|
147
|
+
"""
|
|
148
|
+
|
|
149
|
+
# Create a mapping from Model property names to API property names
|
|
150
|
+
_names = {
|
|
151
|
+
"transaction_amount": "transaction_amount",
|
|
152
|
+
"additional_amounts": "additional_amounts",
|
|
153
|
+
"billing_address": "billing_address",
|
|
154
|
+
"checkin_date": "checkin_date",
|
|
155
|
+
"checkout_date": "checkout_date",
|
|
156
|
+
"clerk_number": "clerk_number",
|
|
157
|
+
"contact_api_id": "contact_api_id",
|
|
158
|
+
"contact_id": "contact_id",
|
|
159
|
+
"custom_data": "custom_data",
|
|
160
|
+
"customer_id": "customer_id",
|
|
161
|
+
"description": "description",
|
|
162
|
+
"identity_verification": "identity_verification",
|
|
163
|
+
"iias_ind": "iias_ind",
|
|
164
|
+
"image_front": "image_front",
|
|
165
|
+
"image_back": "image_back",
|
|
166
|
+
"installment": "installment",
|
|
167
|
+
"installment_number": "installment_number",
|
|
168
|
+
"installment_count": "installment_count",
|
|
169
|
+
"recurring_flag": "recurring_flag",
|
|
170
|
+
"installment_counter": "installment_counter",
|
|
171
|
+
"installment_total": "installment_total",
|
|
172
|
+
"subscription": "subscription",
|
|
173
|
+
"standing_order": "standing_order",
|
|
174
|
+
"location_api_id": "location_api_id",
|
|
175
|
+
"location_id": "location_id",
|
|
176
|
+
"product_transaction_id": "product_transaction_id",
|
|
177
|
+
"advance_deposit": "advance_deposit",
|
|
178
|
+
"no_show": "no_show",
|
|
179
|
+
"notification_email_address": "notification_email_address",
|
|
180
|
+
"order_number": "order_number",
|
|
181
|
+
"po_number": "po_number",
|
|
182
|
+
"quick_invoice_id": "quick_invoice_id",
|
|
183
|
+
"recurring": "recurring",
|
|
184
|
+
"recurring_number": "recurring_number",
|
|
185
|
+
"room_num": "room_num",
|
|
186
|
+
"room_rate": "room_rate",
|
|
187
|
+
"save_account": "save_account",
|
|
188
|
+
"save_account_title": "save_account_title",
|
|
189
|
+
"subtotal_amount": "subtotal_amount",
|
|
190
|
+
"surcharge_amount": "surcharge_amount",
|
|
191
|
+
"tags": "tags",
|
|
192
|
+
"tax": "tax",
|
|
193
|
+
"tip_amount": "tip_amount",
|
|
194
|
+
"secondary_amount": "secondary_amount",
|
|
195
|
+
"transaction_api_id": "transaction_api_id",
|
|
196
|
+
"transaction_c_1": "transaction_c1",
|
|
197
|
+
"transaction_c_2": "transaction_c2",
|
|
198
|
+
"transaction_c_3": "transaction_c3",
|
|
199
|
+
"bank_funded_only_override": "bank_funded_only_override",
|
|
200
|
+
"allow_partial_authorization_override": "allow_partial_authorization_override",
|
|
201
|
+
"auto_decline_cvv_override": "auto_decline_cvv_override",
|
|
202
|
+
"auto_decline_street_override": "auto_decline_street_override",
|
|
203
|
+
"auto_decline_zip_override": "auto_decline_zip_override",
|
|
204
|
+
"ebt_type": "ebt_type",
|
|
205
|
+
"currency_code": "currency_code",
|
|
206
|
+
"ach_identifier": "ach_identifier",
|
|
207
|
+
"ach_sec_code": "ach_sec_code",
|
|
208
|
+
"effective_date": "effective_date",
|
|
209
|
+
"account_holder_name": "account_holder_name",
|
|
210
|
+
"previous_transaction_id": "previous_transaction_id",
|
|
211
|
+
"previous_transaction_api_id": "previous_transaction_api_id",
|
|
212
|
+
"joi": "_joi",
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
_optionals = [
|
|
216
|
+
"additional_amounts",
|
|
217
|
+
"billing_address",
|
|
218
|
+
"checkin_date",
|
|
219
|
+
"checkout_date",
|
|
220
|
+
"clerk_number",
|
|
221
|
+
"contact_api_id",
|
|
222
|
+
"contact_id",
|
|
223
|
+
"custom_data",
|
|
224
|
+
"customer_id",
|
|
225
|
+
"description",
|
|
226
|
+
"identity_verification",
|
|
227
|
+
"iias_ind",
|
|
228
|
+
"image_front",
|
|
229
|
+
"image_back",
|
|
230
|
+
"installment",
|
|
231
|
+
"installment_number",
|
|
232
|
+
"installment_count",
|
|
233
|
+
"recurring_flag",
|
|
234
|
+
"installment_counter",
|
|
235
|
+
"installment_total",
|
|
236
|
+
"subscription",
|
|
237
|
+
"standing_order",
|
|
238
|
+
"location_api_id",
|
|
239
|
+
"location_id",
|
|
240
|
+
"product_transaction_id",
|
|
241
|
+
"advance_deposit",
|
|
242
|
+
"no_show",
|
|
243
|
+
"notification_email_address",
|
|
244
|
+
"order_number",
|
|
245
|
+
"po_number",
|
|
246
|
+
"quick_invoice_id",
|
|
247
|
+
"recurring",
|
|
248
|
+
"recurring_number",
|
|
249
|
+
"room_num",
|
|
250
|
+
"room_rate",
|
|
251
|
+
"save_account",
|
|
252
|
+
"save_account_title",
|
|
253
|
+
"subtotal_amount",
|
|
254
|
+
"surcharge_amount",
|
|
255
|
+
"tags",
|
|
256
|
+
"tax",
|
|
257
|
+
"tip_amount",
|
|
258
|
+
"secondary_amount",
|
|
259
|
+
"transaction_api_id",
|
|
260
|
+
"transaction_c_1",
|
|
261
|
+
"transaction_c_2",
|
|
262
|
+
"transaction_c_3",
|
|
263
|
+
"bank_funded_only_override",
|
|
264
|
+
"allow_partial_authorization_override",
|
|
265
|
+
"auto_decline_cvv_override",
|
|
266
|
+
"auto_decline_street_override",
|
|
267
|
+
"auto_decline_zip_override",
|
|
268
|
+
"ebt_type",
|
|
269
|
+
"currency_code",
|
|
270
|
+
"ach_identifier",
|
|
271
|
+
"ach_sec_code",
|
|
272
|
+
"effective_date",
|
|
273
|
+
"account_holder_name",
|
|
274
|
+
"previous_transaction_id",
|
|
275
|
+
"previous_transaction_api_id",
|
|
276
|
+
"joi",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
_nullables = [
|
|
280
|
+
"checkin_date",
|
|
281
|
+
"checkout_date",
|
|
282
|
+
"clerk_number",
|
|
283
|
+
"contact_api_id",
|
|
284
|
+
"contact_id",
|
|
285
|
+
"customer_id",
|
|
286
|
+
"description",
|
|
287
|
+
"iias_ind",
|
|
288
|
+
"image_front",
|
|
289
|
+
"image_back",
|
|
290
|
+
"installment_number",
|
|
291
|
+
"installment_count",
|
|
292
|
+
"recurring_flag",
|
|
293
|
+
"installment_counter",
|
|
294
|
+
"installment_total",
|
|
295
|
+
"location_api_id",
|
|
296
|
+
"location_id",
|
|
297
|
+
"product_transaction_id",
|
|
298
|
+
"notification_email_address",
|
|
299
|
+
"order_number",
|
|
300
|
+
"po_number",
|
|
301
|
+
"quick_invoice_id",
|
|
302
|
+
"recurring_number",
|
|
303
|
+
"room_num",
|
|
304
|
+
"room_rate",
|
|
305
|
+
"save_account_title",
|
|
306
|
+
"subtotal_amount",
|
|
307
|
+
"surcharge_amount",
|
|
308
|
+
"tags",
|
|
309
|
+
"tax",
|
|
310
|
+
"tip_amount",
|
|
311
|
+
"secondary_amount",
|
|
312
|
+
"transaction_api_id",
|
|
313
|
+
"transaction_c_1",
|
|
314
|
+
"transaction_c_2",
|
|
315
|
+
"transaction_c_3",
|
|
316
|
+
"ebt_type",
|
|
317
|
+
"ach_identifier",
|
|
318
|
+
"ach_sec_code",
|
|
319
|
+
"effective_date",
|
|
320
|
+
"account_holder_name",
|
|
321
|
+
"previous_transaction_api_id",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
def __init__(
|
|
325
|
+
self,
|
|
326
|
+
transaction_amount=None,
|
|
327
|
+
additional_amounts=APIHelper.SKIP,
|
|
328
|
+
billing_address=APIHelper.SKIP,
|
|
329
|
+
checkin_date=APIHelper.SKIP,
|
|
330
|
+
checkout_date=APIHelper.SKIP,
|
|
331
|
+
clerk_number=APIHelper.SKIP,
|
|
332
|
+
contact_api_id=APIHelper.SKIP,
|
|
333
|
+
contact_id=APIHelper.SKIP,
|
|
334
|
+
custom_data=APIHelper.SKIP,
|
|
335
|
+
customer_id=APIHelper.SKIP,
|
|
336
|
+
description=APIHelper.SKIP,
|
|
337
|
+
identity_verification=APIHelper.SKIP,
|
|
338
|
+
iias_ind=APIHelper.SKIP,
|
|
339
|
+
image_front=APIHelper.SKIP,
|
|
340
|
+
image_back=APIHelper.SKIP,
|
|
341
|
+
installment=APIHelper.SKIP,
|
|
342
|
+
installment_number=APIHelper.SKIP,
|
|
343
|
+
installment_count=APIHelper.SKIP,
|
|
344
|
+
recurring_flag=APIHelper.SKIP,
|
|
345
|
+
installment_counter=APIHelper.SKIP,
|
|
346
|
+
installment_total=APIHelper.SKIP,
|
|
347
|
+
subscription=APIHelper.SKIP,
|
|
348
|
+
standing_order=APIHelper.SKIP,
|
|
349
|
+
location_api_id=APIHelper.SKIP,
|
|
350
|
+
location_id=APIHelper.SKIP,
|
|
351
|
+
product_transaction_id=APIHelper.SKIP,
|
|
352
|
+
advance_deposit=APIHelper.SKIP,
|
|
353
|
+
no_show=APIHelper.SKIP,
|
|
354
|
+
notification_email_address=APIHelper.SKIP,
|
|
355
|
+
order_number=APIHelper.SKIP,
|
|
356
|
+
po_number=APIHelper.SKIP,
|
|
357
|
+
quick_invoice_id=APIHelper.SKIP,
|
|
358
|
+
recurring=APIHelper.SKIP,
|
|
359
|
+
recurring_number=APIHelper.SKIP,
|
|
360
|
+
room_num=APIHelper.SKIP,
|
|
361
|
+
room_rate=APIHelper.SKIP,
|
|
362
|
+
save_account=APIHelper.SKIP,
|
|
363
|
+
save_account_title=APIHelper.SKIP,
|
|
364
|
+
subtotal_amount=APIHelper.SKIP,
|
|
365
|
+
surcharge_amount=APIHelper.SKIP,
|
|
366
|
+
tags=APIHelper.SKIP,
|
|
367
|
+
tax=APIHelper.SKIP,
|
|
368
|
+
tip_amount=APIHelper.SKIP,
|
|
369
|
+
secondary_amount=APIHelper.SKIP,
|
|
370
|
+
transaction_api_id=APIHelper.SKIP,
|
|
371
|
+
transaction_c_1=APIHelper.SKIP,
|
|
372
|
+
transaction_c_2=APIHelper.SKIP,
|
|
373
|
+
transaction_c_3=APIHelper.SKIP,
|
|
374
|
+
bank_funded_only_override=APIHelper.SKIP,
|
|
375
|
+
allow_partial_authorization_override=APIHelper.SKIP,
|
|
376
|
+
auto_decline_cvv_override=APIHelper.SKIP,
|
|
377
|
+
auto_decline_street_override=APIHelper.SKIP,
|
|
378
|
+
auto_decline_zip_override=APIHelper.SKIP,
|
|
379
|
+
ebt_type=APIHelper.SKIP,
|
|
380
|
+
currency_code=APIHelper.SKIP,
|
|
381
|
+
ach_identifier=APIHelper.SKIP,
|
|
382
|
+
ach_sec_code=APIHelper.SKIP,
|
|
383
|
+
effective_date=APIHelper.SKIP,
|
|
384
|
+
account_holder_name=APIHelper.SKIP,
|
|
385
|
+
previous_transaction_id=APIHelper.SKIP,
|
|
386
|
+
previous_transaction_api_id=APIHelper.SKIP,
|
|
387
|
+
joi=APIHelper.SKIP,
|
|
388
|
+
additional_properties=None):
|
|
389
|
+
"""Initialize a V1TransactionsAchRefundPrevTrxnRequest instance."""
|
|
390
|
+
# Initialize members of the class
|
|
391
|
+
if additional_amounts is not APIHelper.SKIP:
|
|
392
|
+
self.additional_amounts = additional_amounts
|
|
393
|
+
if billing_address is not APIHelper.SKIP:
|
|
394
|
+
self.billing_address = billing_address
|
|
395
|
+
if checkin_date is not APIHelper.SKIP:
|
|
396
|
+
self.checkin_date = checkin_date
|
|
397
|
+
if checkout_date is not APIHelper.SKIP:
|
|
398
|
+
self.checkout_date = checkout_date
|
|
399
|
+
if clerk_number is not APIHelper.SKIP:
|
|
400
|
+
self.clerk_number = clerk_number
|
|
401
|
+
if contact_api_id is not APIHelper.SKIP:
|
|
402
|
+
self.contact_api_id = contact_api_id
|
|
403
|
+
if contact_id is not APIHelper.SKIP:
|
|
404
|
+
self.contact_id = contact_id
|
|
405
|
+
if custom_data is not APIHelper.SKIP:
|
|
406
|
+
self.custom_data = custom_data
|
|
407
|
+
if customer_id is not APIHelper.SKIP:
|
|
408
|
+
self.customer_id = customer_id
|
|
409
|
+
if description is not APIHelper.SKIP:
|
|
410
|
+
self.description = description
|
|
411
|
+
if identity_verification is not APIHelper.SKIP:
|
|
412
|
+
self.identity_verification = identity_verification
|
|
413
|
+
if iias_ind is not APIHelper.SKIP:
|
|
414
|
+
self.iias_ind = iias_ind
|
|
415
|
+
if image_front is not APIHelper.SKIP:
|
|
416
|
+
self.image_front = image_front
|
|
417
|
+
if image_back is not APIHelper.SKIP:
|
|
418
|
+
self.image_back = image_back
|
|
419
|
+
if installment is not APIHelper.SKIP:
|
|
420
|
+
self.installment = installment
|
|
421
|
+
if installment_number is not APIHelper.SKIP:
|
|
422
|
+
self.installment_number = installment_number
|
|
423
|
+
if installment_count is not APIHelper.SKIP:
|
|
424
|
+
self.installment_count = installment_count
|
|
425
|
+
if recurring_flag is not APIHelper.SKIP:
|
|
426
|
+
self.recurring_flag = recurring_flag
|
|
427
|
+
if installment_counter is not APIHelper.SKIP:
|
|
428
|
+
self.installment_counter = installment_counter
|
|
429
|
+
if installment_total is not APIHelper.SKIP:
|
|
430
|
+
self.installment_total = installment_total
|
|
431
|
+
if subscription is not APIHelper.SKIP:
|
|
432
|
+
self.subscription = subscription
|
|
433
|
+
if standing_order is not APIHelper.SKIP:
|
|
434
|
+
self.standing_order = standing_order
|
|
435
|
+
if location_api_id is not APIHelper.SKIP:
|
|
436
|
+
self.location_api_id = location_api_id
|
|
437
|
+
if location_id is not APIHelper.SKIP:
|
|
438
|
+
self.location_id = location_id
|
|
439
|
+
if product_transaction_id is not APIHelper.SKIP:
|
|
440
|
+
self.product_transaction_id = product_transaction_id
|
|
441
|
+
if advance_deposit is not APIHelper.SKIP:
|
|
442
|
+
self.advance_deposit = advance_deposit
|
|
443
|
+
if no_show is not APIHelper.SKIP:
|
|
444
|
+
self.no_show = no_show
|
|
445
|
+
if notification_email_address is not APIHelper.SKIP:
|
|
446
|
+
self.notification_email_address = notification_email_address
|
|
447
|
+
if order_number is not APIHelper.SKIP:
|
|
448
|
+
self.order_number = order_number
|
|
449
|
+
if po_number is not APIHelper.SKIP:
|
|
450
|
+
self.po_number = po_number
|
|
451
|
+
if quick_invoice_id is not APIHelper.SKIP:
|
|
452
|
+
self.quick_invoice_id = quick_invoice_id
|
|
453
|
+
if recurring is not APIHelper.SKIP:
|
|
454
|
+
self.recurring = recurring
|
|
455
|
+
if recurring_number is not APIHelper.SKIP:
|
|
456
|
+
self.recurring_number = recurring_number
|
|
457
|
+
if room_num is not APIHelper.SKIP:
|
|
458
|
+
self.room_num = room_num
|
|
459
|
+
if room_rate is not APIHelper.SKIP:
|
|
460
|
+
self.room_rate = room_rate
|
|
461
|
+
if save_account is not APIHelper.SKIP:
|
|
462
|
+
self.save_account = save_account
|
|
463
|
+
if save_account_title is not APIHelper.SKIP:
|
|
464
|
+
self.save_account_title = save_account_title
|
|
465
|
+
if subtotal_amount is not APIHelper.SKIP:
|
|
466
|
+
self.subtotal_amount = subtotal_amount
|
|
467
|
+
if surcharge_amount is not APIHelper.SKIP:
|
|
468
|
+
self.surcharge_amount = surcharge_amount
|
|
469
|
+
if tags is not APIHelper.SKIP:
|
|
470
|
+
self.tags = tags
|
|
471
|
+
if tax is not APIHelper.SKIP:
|
|
472
|
+
self.tax = tax
|
|
473
|
+
if tip_amount is not APIHelper.SKIP:
|
|
474
|
+
self.tip_amount = tip_amount
|
|
475
|
+
self.transaction_amount = transaction_amount
|
|
476
|
+
if secondary_amount is not APIHelper.SKIP:
|
|
477
|
+
self.secondary_amount = secondary_amount
|
|
478
|
+
if transaction_api_id is not APIHelper.SKIP:
|
|
479
|
+
self.transaction_api_id = transaction_api_id
|
|
480
|
+
if transaction_c_1 is not APIHelper.SKIP:
|
|
481
|
+
self.transaction_c_1 = transaction_c_1
|
|
482
|
+
if transaction_c_2 is not APIHelper.SKIP:
|
|
483
|
+
self.transaction_c_2 = transaction_c_2
|
|
484
|
+
if transaction_c_3 is not APIHelper.SKIP:
|
|
485
|
+
self.transaction_c_3 = transaction_c_3
|
|
486
|
+
if bank_funded_only_override is not APIHelper.SKIP:
|
|
487
|
+
self.bank_funded_only_override = bank_funded_only_override
|
|
488
|
+
if allow_partial_authorization_override is not APIHelper.SKIP:
|
|
489
|
+
self.allow_partial_authorization_override =\
|
|
490
|
+
allow_partial_authorization_override
|
|
491
|
+
if auto_decline_cvv_override is not APIHelper.SKIP:
|
|
492
|
+
self.auto_decline_cvv_override = auto_decline_cvv_override
|
|
493
|
+
if auto_decline_street_override is not APIHelper.SKIP:
|
|
494
|
+
self.auto_decline_street_override = auto_decline_street_override
|
|
495
|
+
if auto_decline_zip_override is not APIHelper.SKIP:
|
|
496
|
+
self.auto_decline_zip_override = auto_decline_zip_override
|
|
497
|
+
if ebt_type is not APIHelper.SKIP:
|
|
498
|
+
self.ebt_type = ebt_type
|
|
499
|
+
if currency_code is not APIHelper.SKIP:
|
|
500
|
+
self.currency_code = currency_code
|
|
501
|
+
if ach_identifier is not APIHelper.SKIP:
|
|
502
|
+
self.ach_identifier = ach_identifier
|
|
503
|
+
if ach_sec_code is not APIHelper.SKIP:
|
|
504
|
+
self.ach_sec_code = ach_sec_code
|
|
505
|
+
if effective_date is not APIHelper.SKIP:
|
|
506
|
+
self.effective_date = effective_date
|
|
507
|
+
if account_holder_name is not APIHelper.SKIP:
|
|
508
|
+
self.account_holder_name = account_holder_name
|
|
509
|
+
if previous_transaction_id is not APIHelper.SKIP:
|
|
510
|
+
self.previous_transaction_id = previous_transaction_id
|
|
511
|
+
if previous_transaction_api_id is not APIHelper.SKIP:
|
|
512
|
+
self.previous_transaction_api_id = previous_transaction_api_id
|
|
513
|
+
if joi is not APIHelper.SKIP:
|
|
514
|
+
self.joi = joi
|
|
515
|
+
|
|
516
|
+
# Add additional model properties to the instance
|
|
517
|
+
if additional_properties is None:
|
|
518
|
+
additional_properties = {}
|
|
519
|
+
self.additional_properties = additional_properties
|
|
520
|
+
|
|
521
|
+
@classmethod
|
|
522
|
+
def from_dictionary(cls,
|
|
523
|
+
dictionary):
|
|
524
|
+
"""Create an instance of this model from a dictionary
|
|
525
|
+
|
|
526
|
+
Args:
|
|
527
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
528
|
+
as obtained from the deserialization of the server's response. The
|
|
529
|
+
keys MUST match property names in the API description.
|
|
530
|
+
|
|
531
|
+
Returns:
|
|
532
|
+
object: An instance of this structure class.
|
|
533
|
+
|
|
534
|
+
"""
|
|
535
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
536
|
+
return None
|
|
537
|
+
|
|
538
|
+
# Extract variables from the dictionary
|
|
539
|
+
transaction_amount =\
|
|
540
|
+
dictionary.get("transaction_amount")\
|
|
541
|
+
if dictionary.get("transaction_amount")\
|
|
542
|
+
else None
|
|
543
|
+
additional_amounts = None
|
|
544
|
+
if dictionary.get("additional_amounts") is not None:
|
|
545
|
+
additional_amounts = [
|
|
546
|
+
AdditionalAmount.from_dictionary(x)
|
|
547
|
+
for x in dictionary.get("additional_amounts")
|
|
548
|
+
]
|
|
549
|
+
else:
|
|
550
|
+
additional_amounts = APIHelper.SKIP
|
|
551
|
+
billing_address =\
|
|
552
|
+
BillingAddress1.from_dictionary(
|
|
553
|
+
dictionary.get("billing_address"))\
|
|
554
|
+
if "billing_address" in dictionary.keys()\
|
|
555
|
+
else APIHelper.SKIP
|
|
556
|
+
checkin_date =\
|
|
557
|
+
dictionary.get("checkin_date")\
|
|
558
|
+
if "checkin_date" in dictionary.keys()\
|
|
559
|
+
else APIHelper.SKIP
|
|
560
|
+
checkout_date =\
|
|
561
|
+
dictionary.get("checkout_date")\
|
|
562
|
+
if "checkout_date" in dictionary.keys()\
|
|
563
|
+
else APIHelper.SKIP
|
|
564
|
+
clerk_number =\
|
|
565
|
+
dictionary.get("clerk_number")\
|
|
566
|
+
if "clerk_number" in dictionary.keys()\
|
|
567
|
+
else APIHelper.SKIP
|
|
568
|
+
contact_api_id =\
|
|
569
|
+
dictionary.get("contact_api_id")\
|
|
570
|
+
if "contact_api_id" in dictionary.keys()\
|
|
571
|
+
else APIHelper.SKIP
|
|
572
|
+
contact_id =\
|
|
573
|
+
dictionary.get("contact_id")\
|
|
574
|
+
if "contact_id" in dictionary.keys()\
|
|
575
|
+
else APIHelper.SKIP
|
|
576
|
+
custom_data =\
|
|
577
|
+
dictionary.get("custom_data")\
|
|
578
|
+
if dictionary.get("custom_data")\
|
|
579
|
+
else APIHelper.SKIP
|
|
580
|
+
customer_id =\
|
|
581
|
+
dictionary.get("customer_id")\
|
|
582
|
+
if "customer_id" in dictionary.keys()\
|
|
583
|
+
else APIHelper.SKIP
|
|
584
|
+
description =\
|
|
585
|
+
dictionary.get("description")\
|
|
586
|
+
if "description" in dictionary.keys()\
|
|
587
|
+
else APIHelper.SKIP
|
|
588
|
+
identity_verification =\
|
|
589
|
+
IdentityVerification27.from_dictionary(
|
|
590
|
+
dictionary.get("identity_verification"))\
|
|
591
|
+
if "identity_verification" in dictionary.keys()\
|
|
592
|
+
else APIHelper.SKIP
|
|
593
|
+
iias_ind =\
|
|
594
|
+
dictionary.get("iias_ind")\
|
|
595
|
+
if "iias_ind" in dictionary.keys()\
|
|
596
|
+
else APIHelper.SKIP
|
|
597
|
+
image_front =\
|
|
598
|
+
dictionary.get("image_front")\
|
|
599
|
+
if "image_front" in dictionary.keys()\
|
|
600
|
+
else APIHelper.SKIP
|
|
601
|
+
image_back =\
|
|
602
|
+
dictionary.get("image_back")\
|
|
603
|
+
if "image_back" in dictionary.keys()\
|
|
604
|
+
else APIHelper.SKIP
|
|
605
|
+
installment =\
|
|
606
|
+
dictionary.get("installment")\
|
|
607
|
+
if "installment" in dictionary.keys()\
|
|
608
|
+
else APIHelper.SKIP
|
|
609
|
+
installment_number =\
|
|
610
|
+
dictionary.get("installment_number")\
|
|
611
|
+
if "installment_number" in dictionary.keys()\
|
|
612
|
+
else APIHelper.SKIP
|
|
613
|
+
installment_count =\
|
|
614
|
+
dictionary.get("installment_count")\
|
|
615
|
+
if "installment_count" in dictionary.keys()\
|
|
616
|
+
else APIHelper.SKIP
|
|
617
|
+
recurring_flag =\
|
|
618
|
+
dictionary.get("recurring_flag")\
|
|
619
|
+
if "recurring_flag" in dictionary.keys()\
|
|
620
|
+
else APIHelper.SKIP
|
|
621
|
+
installment_counter =\
|
|
622
|
+
dictionary.get("installment_counter")\
|
|
623
|
+
if "installment_counter" in dictionary.keys()\
|
|
624
|
+
else APIHelper.SKIP
|
|
625
|
+
installment_total =\
|
|
626
|
+
dictionary.get("installment_total")\
|
|
627
|
+
if "installment_total" in dictionary.keys()\
|
|
628
|
+
else APIHelper.SKIP
|
|
629
|
+
subscription =\
|
|
630
|
+
dictionary.get("subscription")\
|
|
631
|
+
if "subscription" in dictionary.keys()\
|
|
632
|
+
else APIHelper.SKIP
|
|
633
|
+
standing_order =\
|
|
634
|
+
dictionary.get("standing_order")\
|
|
635
|
+
if "standing_order" in dictionary.keys()\
|
|
636
|
+
else APIHelper.SKIP
|
|
637
|
+
location_api_id =\
|
|
638
|
+
dictionary.get("location_api_id")\
|
|
639
|
+
if "location_api_id" in dictionary.keys()\
|
|
640
|
+
else APIHelper.SKIP
|
|
641
|
+
location_id =\
|
|
642
|
+
dictionary.get("location_id")\
|
|
643
|
+
if "location_id" in dictionary.keys()\
|
|
644
|
+
else APIHelper.SKIP
|
|
645
|
+
product_transaction_id =\
|
|
646
|
+
dictionary.get("product_transaction_id")\
|
|
647
|
+
if "product_transaction_id" in dictionary.keys()\
|
|
648
|
+
else APIHelper.SKIP
|
|
649
|
+
advance_deposit =\
|
|
650
|
+
dictionary.get("advance_deposit")\
|
|
651
|
+
if "advance_deposit" in dictionary.keys()\
|
|
652
|
+
else APIHelper.SKIP
|
|
653
|
+
no_show =\
|
|
654
|
+
dictionary.get("no_show")\
|
|
655
|
+
if "no_show" in dictionary.keys()\
|
|
656
|
+
else APIHelper.SKIP
|
|
657
|
+
notification_email_address =\
|
|
658
|
+
dictionary.get("notification_email_address")\
|
|
659
|
+
if "notification_email_address" in dictionary.keys()\
|
|
660
|
+
else APIHelper.SKIP
|
|
661
|
+
order_number =\
|
|
662
|
+
dictionary.get("order_number")\
|
|
663
|
+
if "order_number" in dictionary.keys()\
|
|
664
|
+
else APIHelper.SKIP
|
|
665
|
+
po_number =\
|
|
666
|
+
dictionary.get("po_number")\
|
|
667
|
+
if "po_number" in dictionary.keys()\
|
|
668
|
+
else APIHelper.SKIP
|
|
669
|
+
quick_invoice_id =\
|
|
670
|
+
dictionary.get("quick_invoice_id")\
|
|
671
|
+
if "quick_invoice_id" in dictionary.keys()\
|
|
672
|
+
else APIHelper.SKIP
|
|
673
|
+
recurring =\
|
|
674
|
+
dictionary.get("recurring")\
|
|
675
|
+
if "recurring" in dictionary.keys()\
|
|
676
|
+
else APIHelper.SKIP
|
|
677
|
+
recurring_number =\
|
|
678
|
+
dictionary.get("recurring_number")\
|
|
679
|
+
if "recurring_number" in dictionary.keys()\
|
|
680
|
+
else APIHelper.SKIP
|
|
681
|
+
room_num =\
|
|
682
|
+
dictionary.get("room_num")\
|
|
683
|
+
if "room_num" in dictionary.keys()\
|
|
684
|
+
else APIHelper.SKIP
|
|
685
|
+
room_rate =\
|
|
686
|
+
dictionary.get("room_rate")\
|
|
687
|
+
if "room_rate" in dictionary.keys()\
|
|
688
|
+
else APIHelper.SKIP
|
|
689
|
+
save_account =\
|
|
690
|
+
dictionary.get("save_account")\
|
|
691
|
+
if "save_account" in dictionary.keys()\
|
|
692
|
+
else APIHelper.SKIP
|
|
693
|
+
save_account_title =\
|
|
694
|
+
dictionary.get("save_account_title")\
|
|
695
|
+
if "save_account_title" in dictionary.keys()\
|
|
696
|
+
else APIHelper.SKIP
|
|
697
|
+
subtotal_amount =\
|
|
698
|
+
dictionary.get("subtotal_amount")\
|
|
699
|
+
if "subtotal_amount" in dictionary.keys()\
|
|
700
|
+
else APIHelper.SKIP
|
|
701
|
+
surcharge_amount =\
|
|
702
|
+
dictionary.get("surcharge_amount")\
|
|
703
|
+
if "surcharge_amount" in dictionary.keys()\
|
|
704
|
+
else APIHelper.SKIP
|
|
705
|
+
tags =\
|
|
706
|
+
dictionary.get("tags")\
|
|
707
|
+
if "tags" in dictionary.keys()\
|
|
708
|
+
else APIHelper.SKIP
|
|
709
|
+
tax =\
|
|
710
|
+
dictionary.get("tax")\
|
|
711
|
+
if "tax" in dictionary.keys()\
|
|
712
|
+
else APIHelper.SKIP
|
|
713
|
+
tip_amount =\
|
|
714
|
+
dictionary.get("tip_amount")\
|
|
715
|
+
if "tip_amount" in dictionary.keys()\
|
|
716
|
+
else APIHelper.SKIP
|
|
717
|
+
secondary_amount =\
|
|
718
|
+
dictionary.get("secondary_amount")\
|
|
719
|
+
if "secondary_amount" in dictionary.keys()\
|
|
720
|
+
else APIHelper.SKIP
|
|
721
|
+
transaction_api_id =\
|
|
722
|
+
dictionary.get("transaction_api_id")\
|
|
723
|
+
if "transaction_api_id" in dictionary.keys()\
|
|
724
|
+
else APIHelper.SKIP
|
|
725
|
+
transaction_c_1 =\
|
|
726
|
+
dictionary.get("transaction_c1")\
|
|
727
|
+
if "transaction_c1" in dictionary.keys()\
|
|
728
|
+
else APIHelper.SKIP
|
|
729
|
+
transaction_c_2 =\
|
|
730
|
+
dictionary.get("transaction_c2")\
|
|
731
|
+
if "transaction_c2" in dictionary.keys()\
|
|
732
|
+
else APIHelper.SKIP
|
|
733
|
+
transaction_c_3 =\
|
|
734
|
+
dictionary.get("transaction_c3")\
|
|
735
|
+
if "transaction_c3" in dictionary.keys()\
|
|
736
|
+
else APIHelper.SKIP
|
|
737
|
+
bank_funded_only_override =\
|
|
738
|
+
dictionary.get("bank_funded_only_override")\
|
|
739
|
+
if "bank_funded_only_override" in dictionary.keys()\
|
|
740
|
+
else APIHelper.SKIP
|
|
741
|
+
allow_partial_authorization_override =\
|
|
742
|
+
dictionary.get("allow_partial_authorization_override")\
|
|
743
|
+
if "allow_partial_authorization_override" in dictionary.keys()\
|
|
744
|
+
else APIHelper.SKIP
|
|
745
|
+
auto_decline_cvv_override =\
|
|
746
|
+
dictionary.get("auto_decline_cvv_override")\
|
|
747
|
+
if "auto_decline_cvv_override" in dictionary.keys()\
|
|
748
|
+
else APIHelper.SKIP
|
|
749
|
+
auto_decline_street_override =\
|
|
750
|
+
dictionary.get("auto_decline_street_override")\
|
|
751
|
+
if "auto_decline_street_override" in dictionary.keys()\
|
|
752
|
+
else APIHelper.SKIP
|
|
753
|
+
auto_decline_zip_override =\
|
|
754
|
+
dictionary.get("auto_decline_zip_override")\
|
|
755
|
+
if "auto_decline_zip_override" in dictionary.keys()\
|
|
756
|
+
else APIHelper.SKIP
|
|
757
|
+
ebt_type =\
|
|
758
|
+
dictionary.get("ebt_type")\
|
|
759
|
+
if "ebt_type" in dictionary.keys()\
|
|
760
|
+
else APIHelper.SKIP
|
|
761
|
+
currency_code =\
|
|
762
|
+
dictionary.get("currency_code")\
|
|
763
|
+
if dictionary.get("currency_code")\
|
|
764
|
+
else APIHelper.SKIP
|
|
765
|
+
ach_identifier =\
|
|
766
|
+
dictionary.get("ach_identifier")\
|
|
767
|
+
if "ach_identifier" in dictionary.keys()\
|
|
768
|
+
else APIHelper.SKIP
|
|
769
|
+
ach_sec_code =\
|
|
770
|
+
dictionary.get("ach_sec_code")\
|
|
771
|
+
if "ach_sec_code" in dictionary.keys()\
|
|
772
|
+
else APIHelper.SKIP
|
|
773
|
+
effective_date =\
|
|
774
|
+
dictionary.get("effective_date")\
|
|
775
|
+
if "effective_date" in dictionary.keys()\
|
|
776
|
+
else APIHelper.SKIP
|
|
777
|
+
account_holder_name =\
|
|
778
|
+
dictionary.get("account_holder_name")\
|
|
779
|
+
if "account_holder_name" in dictionary.keys()\
|
|
780
|
+
else APIHelper.SKIP
|
|
781
|
+
previous_transaction_id =\
|
|
782
|
+
dictionary.get("previous_transaction_id")\
|
|
783
|
+
if dictionary.get("previous_transaction_id")\
|
|
784
|
+
else APIHelper.SKIP
|
|
785
|
+
previous_transaction_api_id =\
|
|
786
|
+
dictionary.get("previous_transaction_api_id")\
|
|
787
|
+
if "previous_transaction_api_id" in dictionary.keys()\
|
|
788
|
+
else APIHelper.SKIP
|
|
789
|
+
joi =\
|
|
790
|
+
Joi27.from_dictionary(
|
|
791
|
+
dictionary.get("_joi"))\
|
|
792
|
+
if "_joi" in dictionary.keys()\
|
|
793
|
+
else APIHelper.SKIP
|
|
794
|
+
|
|
795
|
+
# Clean out expected properties from dictionary
|
|
796
|
+
additional_properties =\
|
|
797
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
798
|
+
|
|
799
|
+
# Return an object of this model
|
|
800
|
+
return cls(transaction_amount,
|
|
801
|
+
additional_amounts,
|
|
802
|
+
billing_address,
|
|
803
|
+
checkin_date,
|
|
804
|
+
checkout_date,
|
|
805
|
+
clerk_number,
|
|
806
|
+
contact_api_id,
|
|
807
|
+
contact_id,
|
|
808
|
+
custom_data,
|
|
809
|
+
customer_id,
|
|
810
|
+
description,
|
|
811
|
+
identity_verification,
|
|
812
|
+
iias_ind,
|
|
813
|
+
image_front,
|
|
814
|
+
image_back,
|
|
815
|
+
installment,
|
|
816
|
+
installment_number,
|
|
817
|
+
installment_count,
|
|
818
|
+
recurring_flag,
|
|
819
|
+
installment_counter,
|
|
820
|
+
installment_total,
|
|
821
|
+
subscription,
|
|
822
|
+
standing_order,
|
|
823
|
+
location_api_id,
|
|
824
|
+
location_id,
|
|
825
|
+
product_transaction_id,
|
|
826
|
+
advance_deposit,
|
|
827
|
+
no_show,
|
|
828
|
+
notification_email_address,
|
|
829
|
+
order_number,
|
|
830
|
+
po_number,
|
|
831
|
+
quick_invoice_id,
|
|
832
|
+
recurring,
|
|
833
|
+
recurring_number,
|
|
834
|
+
room_num,
|
|
835
|
+
room_rate,
|
|
836
|
+
save_account,
|
|
837
|
+
save_account_title,
|
|
838
|
+
subtotal_amount,
|
|
839
|
+
surcharge_amount,
|
|
840
|
+
tags,
|
|
841
|
+
tax,
|
|
842
|
+
tip_amount,
|
|
843
|
+
secondary_amount,
|
|
844
|
+
transaction_api_id,
|
|
845
|
+
transaction_c_1,
|
|
846
|
+
transaction_c_2,
|
|
847
|
+
transaction_c_3,
|
|
848
|
+
bank_funded_only_override,
|
|
849
|
+
allow_partial_authorization_override,
|
|
850
|
+
auto_decline_cvv_override,
|
|
851
|
+
auto_decline_street_override,
|
|
852
|
+
auto_decline_zip_override,
|
|
853
|
+
ebt_type,
|
|
854
|
+
currency_code,
|
|
855
|
+
ach_identifier,
|
|
856
|
+
ach_sec_code,
|
|
857
|
+
effective_date,
|
|
858
|
+
account_holder_name,
|
|
859
|
+
previous_transaction_id,
|
|
860
|
+
previous_transaction_api_id,
|
|
861
|
+
joi,
|
|
862
|
+
additional_properties)
|
|
863
|
+
|
|
864
|
+
def __repr__(self):
|
|
865
|
+
"""Return a unambiguous string representation."""
|
|
866
|
+
_additional_amounts=(
|
|
867
|
+
self.additional_amounts
|
|
868
|
+
if hasattr(self, "additional_amounts")
|
|
869
|
+
else None
|
|
870
|
+
)
|
|
871
|
+
_billing_address=(
|
|
872
|
+
self.billing_address
|
|
873
|
+
if hasattr(self, "billing_address")
|
|
874
|
+
else None
|
|
875
|
+
)
|
|
876
|
+
_checkin_date=(
|
|
877
|
+
self.checkin_date
|
|
878
|
+
if hasattr(self, "checkin_date")
|
|
879
|
+
else None
|
|
880
|
+
)
|
|
881
|
+
_checkout_date=(
|
|
882
|
+
self.checkout_date
|
|
883
|
+
if hasattr(self, "checkout_date")
|
|
884
|
+
else None
|
|
885
|
+
)
|
|
886
|
+
_clerk_number=(
|
|
887
|
+
self.clerk_number
|
|
888
|
+
if hasattr(self, "clerk_number")
|
|
889
|
+
else None
|
|
890
|
+
)
|
|
891
|
+
_contact_api_id=(
|
|
892
|
+
self.contact_api_id
|
|
893
|
+
if hasattr(self, "contact_api_id")
|
|
894
|
+
else None
|
|
895
|
+
)
|
|
896
|
+
_contact_id=(
|
|
897
|
+
self.contact_id
|
|
898
|
+
if hasattr(self, "contact_id")
|
|
899
|
+
else None
|
|
900
|
+
)
|
|
901
|
+
_custom_data=(
|
|
902
|
+
self.custom_data
|
|
903
|
+
if hasattr(self, "custom_data")
|
|
904
|
+
else None
|
|
905
|
+
)
|
|
906
|
+
_customer_id=(
|
|
907
|
+
self.customer_id
|
|
908
|
+
if hasattr(self, "customer_id")
|
|
909
|
+
else None
|
|
910
|
+
)
|
|
911
|
+
_description=(
|
|
912
|
+
self.description
|
|
913
|
+
if hasattr(self, "description")
|
|
914
|
+
else None
|
|
915
|
+
)
|
|
916
|
+
_identity_verification=(
|
|
917
|
+
self.identity_verification
|
|
918
|
+
if hasattr(self, "identity_verification")
|
|
919
|
+
else None
|
|
920
|
+
)
|
|
921
|
+
_iias_ind=(
|
|
922
|
+
self.iias_ind
|
|
923
|
+
if hasattr(self, "iias_ind")
|
|
924
|
+
else None
|
|
925
|
+
)
|
|
926
|
+
_image_front=(
|
|
927
|
+
self.image_front
|
|
928
|
+
if hasattr(self, "image_front")
|
|
929
|
+
else None
|
|
930
|
+
)
|
|
931
|
+
_image_back=(
|
|
932
|
+
self.image_back
|
|
933
|
+
if hasattr(self, "image_back")
|
|
934
|
+
else None
|
|
935
|
+
)
|
|
936
|
+
_installment=(
|
|
937
|
+
self.installment
|
|
938
|
+
if hasattr(self, "installment")
|
|
939
|
+
else None
|
|
940
|
+
)
|
|
941
|
+
_installment_number=(
|
|
942
|
+
self.installment_number
|
|
943
|
+
if hasattr(self, "installment_number")
|
|
944
|
+
else None
|
|
945
|
+
)
|
|
946
|
+
_installment_count=(
|
|
947
|
+
self.installment_count
|
|
948
|
+
if hasattr(self, "installment_count")
|
|
949
|
+
else None
|
|
950
|
+
)
|
|
951
|
+
_recurring_flag=(
|
|
952
|
+
self.recurring_flag
|
|
953
|
+
if hasattr(self, "recurring_flag")
|
|
954
|
+
else None
|
|
955
|
+
)
|
|
956
|
+
_installment_counter=(
|
|
957
|
+
self.installment_counter
|
|
958
|
+
if hasattr(self, "installment_counter")
|
|
959
|
+
else None
|
|
960
|
+
)
|
|
961
|
+
_installment_total=(
|
|
962
|
+
self.installment_total
|
|
963
|
+
if hasattr(self, "installment_total")
|
|
964
|
+
else None
|
|
965
|
+
)
|
|
966
|
+
_subscription=(
|
|
967
|
+
self.subscription
|
|
968
|
+
if hasattr(self, "subscription")
|
|
969
|
+
else None
|
|
970
|
+
)
|
|
971
|
+
_standing_order=(
|
|
972
|
+
self.standing_order
|
|
973
|
+
if hasattr(self, "standing_order")
|
|
974
|
+
else None
|
|
975
|
+
)
|
|
976
|
+
_location_api_id=(
|
|
977
|
+
self.location_api_id
|
|
978
|
+
if hasattr(self, "location_api_id")
|
|
979
|
+
else None
|
|
980
|
+
)
|
|
981
|
+
_location_id=(
|
|
982
|
+
self.location_id
|
|
983
|
+
if hasattr(self, "location_id")
|
|
984
|
+
else None
|
|
985
|
+
)
|
|
986
|
+
_product_transaction_id=(
|
|
987
|
+
self.product_transaction_id
|
|
988
|
+
if hasattr(self, "product_transaction_id")
|
|
989
|
+
else None
|
|
990
|
+
)
|
|
991
|
+
_advance_deposit=(
|
|
992
|
+
self.advance_deposit
|
|
993
|
+
if hasattr(self, "advance_deposit")
|
|
994
|
+
else None
|
|
995
|
+
)
|
|
996
|
+
_no_show=(
|
|
997
|
+
self.no_show
|
|
998
|
+
if hasattr(self, "no_show")
|
|
999
|
+
else None
|
|
1000
|
+
)
|
|
1001
|
+
_notification_email_address=(
|
|
1002
|
+
self.notification_email_address
|
|
1003
|
+
if hasattr(self, "notification_email_address")
|
|
1004
|
+
else None
|
|
1005
|
+
)
|
|
1006
|
+
_order_number=(
|
|
1007
|
+
self.order_number
|
|
1008
|
+
if hasattr(self, "order_number")
|
|
1009
|
+
else None
|
|
1010
|
+
)
|
|
1011
|
+
_po_number=(
|
|
1012
|
+
self.po_number
|
|
1013
|
+
if hasattr(self, "po_number")
|
|
1014
|
+
else None
|
|
1015
|
+
)
|
|
1016
|
+
_quick_invoice_id=(
|
|
1017
|
+
self.quick_invoice_id
|
|
1018
|
+
if hasattr(self, "quick_invoice_id")
|
|
1019
|
+
else None
|
|
1020
|
+
)
|
|
1021
|
+
_recurring=(
|
|
1022
|
+
self.recurring
|
|
1023
|
+
if hasattr(self, "recurring")
|
|
1024
|
+
else None
|
|
1025
|
+
)
|
|
1026
|
+
_recurring_number=(
|
|
1027
|
+
self.recurring_number
|
|
1028
|
+
if hasattr(self, "recurring_number")
|
|
1029
|
+
else None
|
|
1030
|
+
)
|
|
1031
|
+
_room_num=(
|
|
1032
|
+
self.room_num
|
|
1033
|
+
if hasattr(self, "room_num")
|
|
1034
|
+
else None
|
|
1035
|
+
)
|
|
1036
|
+
_room_rate=(
|
|
1037
|
+
self.room_rate
|
|
1038
|
+
if hasattr(self, "room_rate")
|
|
1039
|
+
else None
|
|
1040
|
+
)
|
|
1041
|
+
_save_account=(
|
|
1042
|
+
self.save_account
|
|
1043
|
+
if hasattr(self, "save_account")
|
|
1044
|
+
else None
|
|
1045
|
+
)
|
|
1046
|
+
_save_account_title=(
|
|
1047
|
+
self.save_account_title
|
|
1048
|
+
if hasattr(self, "save_account_title")
|
|
1049
|
+
else None
|
|
1050
|
+
)
|
|
1051
|
+
_subtotal_amount=(
|
|
1052
|
+
self.subtotal_amount
|
|
1053
|
+
if hasattr(self, "subtotal_amount")
|
|
1054
|
+
else None
|
|
1055
|
+
)
|
|
1056
|
+
_surcharge_amount=(
|
|
1057
|
+
self.surcharge_amount
|
|
1058
|
+
if hasattr(self, "surcharge_amount")
|
|
1059
|
+
else None
|
|
1060
|
+
)
|
|
1061
|
+
_tags=(
|
|
1062
|
+
self.tags
|
|
1063
|
+
if hasattr(self, "tags")
|
|
1064
|
+
else None
|
|
1065
|
+
)
|
|
1066
|
+
_tax=(
|
|
1067
|
+
self.tax
|
|
1068
|
+
if hasattr(self, "tax")
|
|
1069
|
+
else None
|
|
1070
|
+
)
|
|
1071
|
+
_tip_amount=(
|
|
1072
|
+
self.tip_amount
|
|
1073
|
+
if hasattr(self, "tip_amount")
|
|
1074
|
+
else None
|
|
1075
|
+
)
|
|
1076
|
+
_transaction_amount=self.transaction_amount
|
|
1077
|
+
_secondary_amount=(
|
|
1078
|
+
self.secondary_amount
|
|
1079
|
+
if hasattr(self, "secondary_amount")
|
|
1080
|
+
else None
|
|
1081
|
+
)
|
|
1082
|
+
_transaction_api_id=(
|
|
1083
|
+
self.transaction_api_id
|
|
1084
|
+
if hasattr(self, "transaction_api_id")
|
|
1085
|
+
else None
|
|
1086
|
+
)
|
|
1087
|
+
_transaction_c_1=(
|
|
1088
|
+
self.transaction_c_1
|
|
1089
|
+
if hasattr(self, "transaction_c_1")
|
|
1090
|
+
else None
|
|
1091
|
+
)
|
|
1092
|
+
_transaction_c_2=(
|
|
1093
|
+
self.transaction_c_2
|
|
1094
|
+
if hasattr(self, "transaction_c_2")
|
|
1095
|
+
else None
|
|
1096
|
+
)
|
|
1097
|
+
_transaction_c_3=(
|
|
1098
|
+
self.transaction_c_3
|
|
1099
|
+
if hasattr(self, "transaction_c_3")
|
|
1100
|
+
else None
|
|
1101
|
+
)
|
|
1102
|
+
_bank_funded_only_override=(
|
|
1103
|
+
self.bank_funded_only_override
|
|
1104
|
+
if hasattr(self, "bank_funded_only_override")
|
|
1105
|
+
else None
|
|
1106
|
+
)
|
|
1107
|
+
_allow_partial_authorization_override=(
|
|
1108
|
+
self.allow_partial_authorization_override
|
|
1109
|
+
if hasattr(self, "allow_partial_authorization_override")
|
|
1110
|
+
else None
|
|
1111
|
+
)
|
|
1112
|
+
_auto_decline_cvv_override=(
|
|
1113
|
+
self.auto_decline_cvv_override
|
|
1114
|
+
if hasattr(self, "auto_decline_cvv_override")
|
|
1115
|
+
else None
|
|
1116
|
+
)
|
|
1117
|
+
_auto_decline_street_override=(
|
|
1118
|
+
self.auto_decline_street_override
|
|
1119
|
+
if hasattr(self, "auto_decline_street_override")
|
|
1120
|
+
else None
|
|
1121
|
+
)
|
|
1122
|
+
_auto_decline_zip_override=(
|
|
1123
|
+
self.auto_decline_zip_override
|
|
1124
|
+
if hasattr(self, "auto_decline_zip_override")
|
|
1125
|
+
else None
|
|
1126
|
+
)
|
|
1127
|
+
_ebt_type=(
|
|
1128
|
+
self.ebt_type
|
|
1129
|
+
if hasattr(self, "ebt_type")
|
|
1130
|
+
else None
|
|
1131
|
+
)
|
|
1132
|
+
_currency_code=(
|
|
1133
|
+
self.currency_code
|
|
1134
|
+
if hasattr(self, "currency_code")
|
|
1135
|
+
else None
|
|
1136
|
+
)
|
|
1137
|
+
_ach_identifier=(
|
|
1138
|
+
self.ach_identifier
|
|
1139
|
+
if hasattr(self, "ach_identifier")
|
|
1140
|
+
else None
|
|
1141
|
+
)
|
|
1142
|
+
_ach_sec_code=(
|
|
1143
|
+
self.ach_sec_code
|
|
1144
|
+
if hasattr(self, "ach_sec_code")
|
|
1145
|
+
else None
|
|
1146
|
+
)
|
|
1147
|
+
_effective_date=(
|
|
1148
|
+
self.effective_date
|
|
1149
|
+
if hasattr(self, "effective_date")
|
|
1150
|
+
else None
|
|
1151
|
+
)
|
|
1152
|
+
_account_holder_name=(
|
|
1153
|
+
self.account_holder_name
|
|
1154
|
+
if hasattr(self, "account_holder_name")
|
|
1155
|
+
else None
|
|
1156
|
+
)
|
|
1157
|
+
_previous_transaction_id=(
|
|
1158
|
+
self.previous_transaction_id
|
|
1159
|
+
if hasattr(self, "previous_transaction_id")
|
|
1160
|
+
else None
|
|
1161
|
+
)
|
|
1162
|
+
_previous_transaction_api_id=(
|
|
1163
|
+
self.previous_transaction_api_id
|
|
1164
|
+
if hasattr(self, "previous_transaction_api_id")
|
|
1165
|
+
else None
|
|
1166
|
+
)
|
|
1167
|
+
_joi=(
|
|
1168
|
+
self.joi
|
|
1169
|
+
if hasattr(self, "joi")
|
|
1170
|
+
else None
|
|
1171
|
+
)
|
|
1172
|
+
_additional_properties=self.additional_properties
|
|
1173
|
+
return (
|
|
1174
|
+
f"{self.__class__.__name__}("
|
|
1175
|
+
f"additional_amounts={_additional_amounts!r}, "
|
|
1176
|
+
f"billing_address={_billing_address!r}, "
|
|
1177
|
+
f"checkin_date={_checkin_date!r}, "
|
|
1178
|
+
f"checkout_date={_checkout_date!r}, "
|
|
1179
|
+
f"clerk_number={_clerk_number!r}, "
|
|
1180
|
+
f"contact_api_id={_contact_api_id!r}, "
|
|
1181
|
+
f"contact_id={_contact_id!r}, "
|
|
1182
|
+
f"custom_data={_custom_data!r}, "
|
|
1183
|
+
f"customer_id={_customer_id!r}, "
|
|
1184
|
+
f"description={_description!r}, "
|
|
1185
|
+
f"identity_verification={_identity_verification!r}, "
|
|
1186
|
+
f"iias_ind={_iias_ind!r}, "
|
|
1187
|
+
f"image_front={_image_front!r}, "
|
|
1188
|
+
f"image_back={_image_back!r}, "
|
|
1189
|
+
f"installment={_installment!r}, "
|
|
1190
|
+
f"installment_number={_installment_number!r}, "
|
|
1191
|
+
f"installment_count={_installment_count!r}, "
|
|
1192
|
+
f"recurring_flag={_recurring_flag!r}, "
|
|
1193
|
+
f"installment_counter={_installment_counter!r}, "
|
|
1194
|
+
f"installment_total={_installment_total!r}, "
|
|
1195
|
+
f"subscription={_subscription!r}, "
|
|
1196
|
+
f"standing_order={_standing_order!r}, "
|
|
1197
|
+
f"location_api_id={_location_api_id!r}, "
|
|
1198
|
+
f"location_id={_location_id!r}, "
|
|
1199
|
+
f"product_transaction_id={_product_transaction_id!r}, "
|
|
1200
|
+
f"advance_deposit={_advance_deposit!r}, "
|
|
1201
|
+
f"no_show={_no_show!r}, "
|
|
1202
|
+
f"notification_email_address={_notification_email_address!r}, "
|
|
1203
|
+
f"order_number={_order_number!r}, "
|
|
1204
|
+
f"po_number={_po_number!r}, "
|
|
1205
|
+
f"quick_invoice_id={_quick_invoice_id!r}, "
|
|
1206
|
+
f"recurring={_recurring!r}, "
|
|
1207
|
+
f"recurring_number={_recurring_number!r}, "
|
|
1208
|
+
f"room_num={_room_num!r}, "
|
|
1209
|
+
f"room_rate={_room_rate!r}, "
|
|
1210
|
+
f"save_account={_save_account!r}, "
|
|
1211
|
+
f"save_account_title={_save_account_title!r}, "
|
|
1212
|
+
f"subtotal_amount={_subtotal_amount!r}, "
|
|
1213
|
+
f"surcharge_amount={_surcharge_amount!r}, "
|
|
1214
|
+
f"tags={_tags!r}, "
|
|
1215
|
+
f"tax={_tax!r}, "
|
|
1216
|
+
f"tip_amount={_tip_amount!r}, "
|
|
1217
|
+
f"transaction_amount={_transaction_amount!r}, "
|
|
1218
|
+
f"secondary_amount={_secondary_amount!r}, "
|
|
1219
|
+
f"transaction_api_id={_transaction_api_id!r}, "
|
|
1220
|
+
f"transaction_c_1={_transaction_c_1!r}, "
|
|
1221
|
+
f"transaction_c_2={_transaction_c_2!r}, "
|
|
1222
|
+
f"transaction_c_3={_transaction_c_3!r}, "
|
|
1223
|
+
f"bank_funded_only_override={_bank_funded_only_override!r}, "
|
|
1224
|
+
f"allow_partial_authorization_override={_allow_partial_authorization_override!r}, "
|
|
1225
|
+
f"auto_decline_cvv_override={_auto_decline_cvv_override!r}, "
|
|
1226
|
+
f"auto_decline_street_override={_auto_decline_street_override!r}, "
|
|
1227
|
+
f"auto_decline_zip_override={_auto_decline_zip_override!r}, "
|
|
1228
|
+
f"ebt_type={_ebt_type!r}, "
|
|
1229
|
+
f"currency_code={_currency_code!r}, "
|
|
1230
|
+
f"ach_identifier={_ach_identifier!r}, "
|
|
1231
|
+
f"ach_sec_code={_ach_sec_code!r}, "
|
|
1232
|
+
f"effective_date={_effective_date!r}, "
|
|
1233
|
+
f"account_holder_name={_account_holder_name!r}, "
|
|
1234
|
+
f"previous_transaction_id={_previous_transaction_id!r}, "
|
|
1235
|
+
f"previous_transaction_api_id={_previous_transaction_api_id!r}, "
|
|
1236
|
+
f"joi={_joi!r}, "
|
|
1237
|
+
f"additional_properties={_additional_properties!r}, "
|
|
1238
|
+
f")"
|
|
1239
|
+
)
|
|
1240
|
+
|
|
1241
|
+
def __str__(self):
|
|
1242
|
+
"""Return a human-readable string representation."""
|
|
1243
|
+
_additional_amounts=(
|
|
1244
|
+
self.additional_amounts
|
|
1245
|
+
if hasattr(self, "additional_amounts")
|
|
1246
|
+
else None
|
|
1247
|
+
)
|
|
1248
|
+
_billing_address=(
|
|
1249
|
+
self.billing_address
|
|
1250
|
+
if hasattr(self, "billing_address")
|
|
1251
|
+
else None
|
|
1252
|
+
)
|
|
1253
|
+
_checkin_date=(
|
|
1254
|
+
self.checkin_date
|
|
1255
|
+
if hasattr(self, "checkin_date")
|
|
1256
|
+
else None
|
|
1257
|
+
)
|
|
1258
|
+
_checkout_date=(
|
|
1259
|
+
self.checkout_date
|
|
1260
|
+
if hasattr(self, "checkout_date")
|
|
1261
|
+
else None
|
|
1262
|
+
)
|
|
1263
|
+
_clerk_number=(
|
|
1264
|
+
self.clerk_number
|
|
1265
|
+
if hasattr(self, "clerk_number")
|
|
1266
|
+
else None
|
|
1267
|
+
)
|
|
1268
|
+
_contact_api_id=(
|
|
1269
|
+
self.contact_api_id
|
|
1270
|
+
if hasattr(self, "contact_api_id")
|
|
1271
|
+
else None
|
|
1272
|
+
)
|
|
1273
|
+
_contact_id=(
|
|
1274
|
+
self.contact_id
|
|
1275
|
+
if hasattr(self, "contact_id")
|
|
1276
|
+
else None
|
|
1277
|
+
)
|
|
1278
|
+
_custom_data=(
|
|
1279
|
+
self.custom_data
|
|
1280
|
+
if hasattr(self, "custom_data")
|
|
1281
|
+
else None
|
|
1282
|
+
)
|
|
1283
|
+
_customer_id=(
|
|
1284
|
+
self.customer_id
|
|
1285
|
+
if hasattr(self, "customer_id")
|
|
1286
|
+
else None
|
|
1287
|
+
)
|
|
1288
|
+
_description=(
|
|
1289
|
+
self.description
|
|
1290
|
+
if hasattr(self, "description")
|
|
1291
|
+
else None
|
|
1292
|
+
)
|
|
1293
|
+
_identity_verification=(
|
|
1294
|
+
self.identity_verification
|
|
1295
|
+
if hasattr(self, "identity_verification")
|
|
1296
|
+
else None
|
|
1297
|
+
)
|
|
1298
|
+
_iias_ind=(
|
|
1299
|
+
self.iias_ind
|
|
1300
|
+
if hasattr(self, "iias_ind")
|
|
1301
|
+
else None
|
|
1302
|
+
)
|
|
1303
|
+
_image_front=(
|
|
1304
|
+
self.image_front
|
|
1305
|
+
if hasattr(self, "image_front")
|
|
1306
|
+
else None
|
|
1307
|
+
)
|
|
1308
|
+
_image_back=(
|
|
1309
|
+
self.image_back
|
|
1310
|
+
if hasattr(self, "image_back")
|
|
1311
|
+
else None
|
|
1312
|
+
)
|
|
1313
|
+
_installment=(
|
|
1314
|
+
self.installment
|
|
1315
|
+
if hasattr(self, "installment")
|
|
1316
|
+
else None
|
|
1317
|
+
)
|
|
1318
|
+
_installment_number=(
|
|
1319
|
+
self.installment_number
|
|
1320
|
+
if hasattr(self, "installment_number")
|
|
1321
|
+
else None
|
|
1322
|
+
)
|
|
1323
|
+
_installment_count=(
|
|
1324
|
+
self.installment_count
|
|
1325
|
+
if hasattr(self, "installment_count")
|
|
1326
|
+
else None
|
|
1327
|
+
)
|
|
1328
|
+
_recurring_flag=(
|
|
1329
|
+
self.recurring_flag
|
|
1330
|
+
if hasattr(self, "recurring_flag")
|
|
1331
|
+
else None
|
|
1332
|
+
)
|
|
1333
|
+
_installment_counter=(
|
|
1334
|
+
self.installment_counter
|
|
1335
|
+
if hasattr(self, "installment_counter")
|
|
1336
|
+
else None
|
|
1337
|
+
)
|
|
1338
|
+
_installment_total=(
|
|
1339
|
+
self.installment_total
|
|
1340
|
+
if hasattr(self, "installment_total")
|
|
1341
|
+
else None
|
|
1342
|
+
)
|
|
1343
|
+
_subscription=(
|
|
1344
|
+
self.subscription
|
|
1345
|
+
if hasattr(self, "subscription")
|
|
1346
|
+
else None
|
|
1347
|
+
)
|
|
1348
|
+
_standing_order=(
|
|
1349
|
+
self.standing_order
|
|
1350
|
+
if hasattr(self, "standing_order")
|
|
1351
|
+
else None
|
|
1352
|
+
)
|
|
1353
|
+
_location_api_id=(
|
|
1354
|
+
self.location_api_id
|
|
1355
|
+
if hasattr(self, "location_api_id")
|
|
1356
|
+
else None
|
|
1357
|
+
)
|
|
1358
|
+
_location_id=(
|
|
1359
|
+
self.location_id
|
|
1360
|
+
if hasattr(self, "location_id")
|
|
1361
|
+
else None
|
|
1362
|
+
)
|
|
1363
|
+
_product_transaction_id=(
|
|
1364
|
+
self.product_transaction_id
|
|
1365
|
+
if hasattr(self, "product_transaction_id")
|
|
1366
|
+
else None
|
|
1367
|
+
)
|
|
1368
|
+
_advance_deposit=(
|
|
1369
|
+
self.advance_deposit
|
|
1370
|
+
if hasattr(self, "advance_deposit")
|
|
1371
|
+
else None
|
|
1372
|
+
)
|
|
1373
|
+
_no_show=(
|
|
1374
|
+
self.no_show
|
|
1375
|
+
if hasattr(self, "no_show")
|
|
1376
|
+
else None
|
|
1377
|
+
)
|
|
1378
|
+
_notification_email_address=(
|
|
1379
|
+
self.notification_email_address
|
|
1380
|
+
if hasattr(self, "notification_email_address")
|
|
1381
|
+
else None
|
|
1382
|
+
)
|
|
1383
|
+
_order_number=(
|
|
1384
|
+
self.order_number
|
|
1385
|
+
if hasattr(self, "order_number")
|
|
1386
|
+
else None
|
|
1387
|
+
)
|
|
1388
|
+
_po_number=(
|
|
1389
|
+
self.po_number
|
|
1390
|
+
if hasattr(self, "po_number")
|
|
1391
|
+
else None
|
|
1392
|
+
)
|
|
1393
|
+
_quick_invoice_id=(
|
|
1394
|
+
self.quick_invoice_id
|
|
1395
|
+
if hasattr(self, "quick_invoice_id")
|
|
1396
|
+
else None
|
|
1397
|
+
)
|
|
1398
|
+
_recurring=(
|
|
1399
|
+
self.recurring
|
|
1400
|
+
if hasattr(self, "recurring")
|
|
1401
|
+
else None
|
|
1402
|
+
)
|
|
1403
|
+
_recurring_number=(
|
|
1404
|
+
self.recurring_number
|
|
1405
|
+
if hasattr(self, "recurring_number")
|
|
1406
|
+
else None
|
|
1407
|
+
)
|
|
1408
|
+
_room_num=(
|
|
1409
|
+
self.room_num
|
|
1410
|
+
if hasattr(self, "room_num")
|
|
1411
|
+
else None
|
|
1412
|
+
)
|
|
1413
|
+
_room_rate=(
|
|
1414
|
+
self.room_rate
|
|
1415
|
+
if hasattr(self, "room_rate")
|
|
1416
|
+
else None
|
|
1417
|
+
)
|
|
1418
|
+
_save_account=(
|
|
1419
|
+
self.save_account
|
|
1420
|
+
if hasattr(self, "save_account")
|
|
1421
|
+
else None
|
|
1422
|
+
)
|
|
1423
|
+
_save_account_title=(
|
|
1424
|
+
self.save_account_title
|
|
1425
|
+
if hasattr(self, "save_account_title")
|
|
1426
|
+
else None
|
|
1427
|
+
)
|
|
1428
|
+
_subtotal_amount=(
|
|
1429
|
+
self.subtotal_amount
|
|
1430
|
+
if hasattr(self, "subtotal_amount")
|
|
1431
|
+
else None
|
|
1432
|
+
)
|
|
1433
|
+
_surcharge_amount=(
|
|
1434
|
+
self.surcharge_amount
|
|
1435
|
+
if hasattr(self, "surcharge_amount")
|
|
1436
|
+
else None
|
|
1437
|
+
)
|
|
1438
|
+
_tags=(
|
|
1439
|
+
self.tags
|
|
1440
|
+
if hasattr(self, "tags")
|
|
1441
|
+
else None
|
|
1442
|
+
)
|
|
1443
|
+
_tax=(
|
|
1444
|
+
self.tax
|
|
1445
|
+
if hasattr(self, "tax")
|
|
1446
|
+
else None
|
|
1447
|
+
)
|
|
1448
|
+
_tip_amount=(
|
|
1449
|
+
self.tip_amount
|
|
1450
|
+
if hasattr(self, "tip_amount")
|
|
1451
|
+
else None
|
|
1452
|
+
)
|
|
1453
|
+
_transaction_amount=self.transaction_amount
|
|
1454
|
+
_secondary_amount=(
|
|
1455
|
+
self.secondary_amount
|
|
1456
|
+
if hasattr(self, "secondary_amount")
|
|
1457
|
+
else None
|
|
1458
|
+
)
|
|
1459
|
+
_transaction_api_id=(
|
|
1460
|
+
self.transaction_api_id
|
|
1461
|
+
if hasattr(self, "transaction_api_id")
|
|
1462
|
+
else None
|
|
1463
|
+
)
|
|
1464
|
+
_transaction_c_1=(
|
|
1465
|
+
self.transaction_c_1
|
|
1466
|
+
if hasattr(self, "transaction_c_1")
|
|
1467
|
+
else None
|
|
1468
|
+
)
|
|
1469
|
+
_transaction_c_2=(
|
|
1470
|
+
self.transaction_c_2
|
|
1471
|
+
if hasattr(self, "transaction_c_2")
|
|
1472
|
+
else None
|
|
1473
|
+
)
|
|
1474
|
+
_transaction_c_3=(
|
|
1475
|
+
self.transaction_c_3
|
|
1476
|
+
if hasattr(self, "transaction_c_3")
|
|
1477
|
+
else None
|
|
1478
|
+
)
|
|
1479
|
+
_bank_funded_only_override=(
|
|
1480
|
+
self.bank_funded_only_override
|
|
1481
|
+
if hasattr(self, "bank_funded_only_override")
|
|
1482
|
+
else None
|
|
1483
|
+
)
|
|
1484
|
+
_allow_partial_authorization_override=(
|
|
1485
|
+
self.allow_partial_authorization_override
|
|
1486
|
+
if hasattr(self, "allow_partial_authorization_override")
|
|
1487
|
+
else None
|
|
1488
|
+
)
|
|
1489
|
+
_auto_decline_cvv_override=(
|
|
1490
|
+
self.auto_decline_cvv_override
|
|
1491
|
+
if hasattr(self, "auto_decline_cvv_override")
|
|
1492
|
+
else None
|
|
1493
|
+
)
|
|
1494
|
+
_auto_decline_street_override=(
|
|
1495
|
+
self.auto_decline_street_override
|
|
1496
|
+
if hasattr(self, "auto_decline_street_override")
|
|
1497
|
+
else None
|
|
1498
|
+
)
|
|
1499
|
+
_auto_decline_zip_override=(
|
|
1500
|
+
self.auto_decline_zip_override
|
|
1501
|
+
if hasattr(self, "auto_decline_zip_override")
|
|
1502
|
+
else None
|
|
1503
|
+
)
|
|
1504
|
+
_ebt_type=(
|
|
1505
|
+
self.ebt_type
|
|
1506
|
+
if hasattr(self, "ebt_type")
|
|
1507
|
+
else None
|
|
1508
|
+
)
|
|
1509
|
+
_currency_code=(
|
|
1510
|
+
self.currency_code
|
|
1511
|
+
if hasattr(self, "currency_code")
|
|
1512
|
+
else None
|
|
1513
|
+
)
|
|
1514
|
+
_ach_identifier=(
|
|
1515
|
+
self.ach_identifier
|
|
1516
|
+
if hasattr(self, "ach_identifier")
|
|
1517
|
+
else None
|
|
1518
|
+
)
|
|
1519
|
+
_ach_sec_code=(
|
|
1520
|
+
self.ach_sec_code
|
|
1521
|
+
if hasattr(self, "ach_sec_code")
|
|
1522
|
+
else None
|
|
1523
|
+
)
|
|
1524
|
+
_effective_date=(
|
|
1525
|
+
self.effective_date
|
|
1526
|
+
if hasattr(self, "effective_date")
|
|
1527
|
+
else None
|
|
1528
|
+
)
|
|
1529
|
+
_account_holder_name=(
|
|
1530
|
+
self.account_holder_name
|
|
1531
|
+
if hasattr(self, "account_holder_name")
|
|
1532
|
+
else None
|
|
1533
|
+
)
|
|
1534
|
+
_previous_transaction_id=(
|
|
1535
|
+
self.previous_transaction_id
|
|
1536
|
+
if hasattr(self, "previous_transaction_id")
|
|
1537
|
+
else None
|
|
1538
|
+
)
|
|
1539
|
+
_previous_transaction_api_id=(
|
|
1540
|
+
self.previous_transaction_api_id
|
|
1541
|
+
if hasattr(self, "previous_transaction_api_id")
|
|
1542
|
+
else None
|
|
1543
|
+
)
|
|
1544
|
+
_joi=(
|
|
1545
|
+
self.joi
|
|
1546
|
+
if hasattr(self, "joi")
|
|
1547
|
+
else None
|
|
1548
|
+
)
|
|
1549
|
+
_additional_properties=self.additional_properties
|
|
1550
|
+
return (
|
|
1551
|
+
f"{self.__class__.__name__}("
|
|
1552
|
+
f"additional_amounts={_additional_amounts!s}, "
|
|
1553
|
+
f"billing_address={_billing_address!s}, "
|
|
1554
|
+
f"checkin_date={_checkin_date!s}, "
|
|
1555
|
+
f"checkout_date={_checkout_date!s}, "
|
|
1556
|
+
f"clerk_number={_clerk_number!s}, "
|
|
1557
|
+
f"contact_api_id={_contact_api_id!s}, "
|
|
1558
|
+
f"contact_id={_contact_id!s}, "
|
|
1559
|
+
f"custom_data={_custom_data!s}, "
|
|
1560
|
+
f"customer_id={_customer_id!s}, "
|
|
1561
|
+
f"description={_description!s}, "
|
|
1562
|
+
f"identity_verification={_identity_verification!s}, "
|
|
1563
|
+
f"iias_ind={_iias_ind!s}, "
|
|
1564
|
+
f"image_front={_image_front!s}, "
|
|
1565
|
+
f"image_back={_image_back!s}, "
|
|
1566
|
+
f"installment={_installment!s}, "
|
|
1567
|
+
f"installment_number={_installment_number!s}, "
|
|
1568
|
+
f"installment_count={_installment_count!s}, "
|
|
1569
|
+
f"recurring_flag={_recurring_flag!s}, "
|
|
1570
|
+
f"installment_counter={_installment_counter!s}, "
|
|
1571
|
+
f"installment_total={_installment_total!s}, "
|
|
1572
|
+
f"subscription={_subscription!s}, "
|
|
1573
|
+
f"standing_order={_standing_order!s}, "
|
|
1574
|
+
f"location_api_id={_location_api_id!s}, "
|
|
1575
|
+
f"location_id={_location_id!s}, "
|
|
1576
|
+
f"product_transaction_id={_product_transaction_id!s}, "
|
|
1577
|
+
f"advance_deposit={_advance_deposit!s}, "
|
|
1578
|
+
f"no_show={_no_show!s}, "
|
|
1579
|
+
f"notification_email_address={_notification_email_address!s}, "
|
|
1580
|
+
f"order_number={_order_number!s}, "
|
|
1581
|
+
f"po_number={_po_number!s}, "
|
|
1582
|
+
f"quick_invoice_id={_quick_invoice_id!s}, "
|
|
1583
|
+
f"recurring={_recurring!s}, "
|
|
1584
|
+
f"recurring_number={_recurring_number!s}, "
|
|
1585
|
+
f"room_num={_room_num!s}, "
|
|
1586
|
+
f"room_rate={_room_rate!s}, "
|
|
1587
|
+
f"save_account={_save_account!s}, "
|
|
1588
|
+
f"save_account_title={_save_account_title!s}, "
|
|
1589
|
+
f"subtotal_amount={_subtotal_amount!s}, "
|
|
1590
|
+
f"surcharge_amount={_surcharge_amount!s}, "
|
|
1591
|
+
f"tags={_tags!s}, "
|
|
1592
|
+
f"tax={_tax!s}, "
|
|
1593
|
+
f"tip_amount={_tip_amount!s}, "
|
|
1594
|
+
f"transaction_amount={_transaction_amount!s}, "
|
|
1595
|
+
f"secondary_amount={_secondary_amount!s}, "
|
|
1596
|
+
f"transaction_api_id={_transaction_api_id!s}, "
|
|
1597
|
+
f"transaction_c_1={_transaction_c_1!s}, "
|
|
1598
|
+
f"transaction_c_2={_transaction_c_2!s}, "
|
|
1599
|
+
f"transaction_c_3={_transaction_c_3!s}, "
|
|
1600
|
+
f"bank_funded_only_override={_bank_funded_only_override!s}, "
|
|
1601
|
+
f"allow_partial_authorization_override={_allow_partial_authorization_override!s}, "
|
|
1602
|
+
f"auto_decline_cvv_override={_auto_decline_cvv_override!s}, "
|
|
1603
|
+
f"auto_decline_street_override={_auto_decline_street_override!s}, "
|
|
1604
|
+
f"auto_decline_zip_override={_auto_decline_zip_override!s}, "
|
|
1605
|
+
f"ebt_type={_ebt_type!s}, "
|
|
1606
|
+
f"currency_code={_currency_code!s}, "
|
|
1607
|
+
f"ach_identifier={_ach_identifier!s}, "
|
|
1608
|
+
f"ach_sec_code={_ach_sec_code!s}, "
|
|
1609
|
+
f"effective_date={_effective_date!s}, "
|
|
1610
|
+
f"account_holder_name={_account_holder_name!s}, "
|
|
1611
|
+
f"previous_transaction_id={_previous_transaction_id!s}, "
|
|
1612
|
+
f"previous_transaction_api_id={_previous_transaction_api_id!s}, "
|
|
1613
|
+
f"joi={_joi!s}, "
|
|
1614
|
+
f"additional_properties={_additional_properties!s}, "
|
|
1615
|
+
f")"
|
|
1616
|
+
)
|