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,1456 @@
|
|
|
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.changelog import Changelog
|
|
9
|
+
from fortisapi.models.created_user import CreatedUser
|
|
10
|
+
from fortisapi.models.location import Location
|
|
11
|
+
from fortisapi.models.terminal_application import (
|
|
12
|
+
TerminalApplication,
|
|
13
|
+
)
|
|
14
|
+
from fortisapi.models.terminal_cvm import TerminalCvm
|
|
15
|
+
from fortisapi.models.terminal_manufacturer import (
|
|
16
|
+
TerminalManufacturer,
|
|
17
|
+
)
|
|
18
|
+
from fortisapi.models.terminal_router import (
|
|
19
|
+
TerminalRouter,
|
|
20
|
+
)
|
|
21
|
+
from fortisapi.models.terminal_timeouts import (
|
|
22
|
+
TerminalTimeouts,
|
|
23
|
+
)
|
|
24
|
+
from fortisapi.models.tip_percents import TipPercents
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class List16(object):
|
|
28
|
+
"""Implementation of the 'List16' model.
|
|
29
|
+
|
|
30
|
+
Attributes:
|
|
31
|
+
location_id (str): Location ID
|
|
32
|
+
default_product_transaction_id (str): Product Transaction ID
|
|
33
|
+
terminal_application_id (str): Terminal Application ID
|
|
34
|
+
terminal_cvm_id (str): Terminal CVM ID
|
|
35
|
+
terminal_manufacturer_code (TerminalManufacturerCodeEnum): Terminal
|
|
36
|
+
Manufacturer Code > >
|
|
37
|
+
title (str): Terminal Name
|
|
38
|
+
mac_address (str): Terminal MAC Address
|
|
39
|
+
local_ip_address (str): Terminal Local IP Address
|
|
40
|
+
port (int): Terminal Port
|
|
41
|
+
serial_number (str): Terminal Serial Number
|
|
42
|
+
terminal_number (str): Terminal Number
|
|
43
|
+
terminal_timeouts (TerminalTimeouts): The following options outlines some
|
|
44
|
+
configurable timeout values that can be used to customize the experience
|
|
45
|
+
at the terminal for the cardholder. >These timeouts are specific to
|
|
46
|
+
Ingenico devices only. > >These timeouts are specific to Ingenico devices
|
|
47
|
+
only. >
|
|
48
|
+
tip_percents (TipPercents): A JSON of tip percents the JSON MUST contain only
|
|
49
|
+
these three fields: percent_1, percent_2, percent_3
|
|
50
|
+
location_api_id (str): Location Api ID
|
|
51
|
+
terminal_api_id (str): Terminal Api ID
|
|
52
|
+
header_line_1 (str): Header Line 1
|
|
53
|
+
header_line_2 (str): Header Line 2
|
|
54
|
+
header_line_3 (str): Header Line 3
|
|
55
|
+
header_line_4 (str): Header Line 4
|
|
56
|
+
header_line_5 (str): Header Line 5
|
|
57
|
+
trailer_line_1 (str): Trailer Line 1
|
|
58
|
+
trailer_line_2 (str): Trailer Line 2
|
|
59
|
+
trailer_line_3 (str): Trailer Line 3
|
|
60
|
+
trailer_line_4 (str): Trailer Line 4
|
|
61
|
+
trailer_line_5 (str): Trailer Line 5
|
|
62
|
+
default_checkin (str): Default Checkin
|
|
63
|
+
default_checkout (str): Default Checkout
|
|
64
|
+
default_room_rate (int): Default Room Rate
|
|
65
|
+
default_room_number (str): Default Room Number
|
|
66
|
+
debit (bool): Debit
|
|
67
|
+
emv (bool): EMV
|
|
68
|
+
cashback_enable (bool): Cashback Enable
|
|
69
|
+
print_enable (bool): Print Enable
|
|
70
|
+
sig_capture_enable (bool): Sig Capture Enable
|
|
71
|
+
is_provisioned (bool): Is Provisioned
|
|
72
|
+
tip_enable (bool): Tip Enable
|
|
73
|
+
validated_decryption (bool): Validated Decryption
|
|
74
|
+
communication_type (CommunicationTypeEnum): Communication Type
|
|
75
|
+
active (bool): Active
|
|
76
|
+
prompt_manual_entry (bool): Prompt Manual Entry
|
|
77
|
+
payment_type_priority (PaymentTypePriorityEnum): Payment Type Priority
|
|
78
|
+
screen_brightness (int): Screen Brightness
|
|
79
|
+
beep_volume (int): Beep Volume
|
|
80
|
+
id (str): Terminal ID
|
|
81
|
+
created_ts (int): Created Time Stamp
|
|
82
|
+
modified_ts (int): Modified Time Stamp
|
|
83
|
+
last_registration_ts (int): Modified Time Stamp
|
|
84
|
+
created_user_id (str): User ID Created the register
|
|
85
|
+
modified_user_id (str): Last User ID that updated the register
|
|
86
|
+
location (Location): Location Information on `expand`
|
|
87
|
+
created_user (CreatedUser): User Information on `expand`
|
|
88
|
+
terminal_application (TerminalApplication): Terminal Application Information
|
|
89
|
+
on `expand`
|
|
90
|
+
changelogs (List[Changelog]): Changelog Information on `expand`
|
|
91
|
+
terminal_routers (List[TerminalRouter]): Terminal Router Information on
|
|
92
|
+
`expand`
|
|
93
|
+
has_terminal_routers (bool): Has Terminal Router Information on `expand`
|
|
94
|
+
terminal_cvm (TerminalCvm): Terminal Cvm Information on `expand`
|
|
95
|
+
terminal_manufacturer (TerminalManufacturer): Terminal Manufacturer
|
|
96
|
+
Information on `expand`
|
|
97
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
98
|
+
model.
|
|
99
|
+
|
|
100
|
+
"""
|
|
101
|
+
|
|
102
|
+
# Create a mapping from Model property names to API property names
|
|
103
|
+
_names = {
|
|
104
|
+
"location_id": "location_id",
|
|
105
|
+
"default_product_transaction_id": "default_product_transaction_id",
|
|
106
|
+
"terminal_application_id": "terminal_application_id",
|
|
107
|
+
"terminal_cvm_id": "terminal_cvm_id",
|
|
108
|
+
"terminal_manufacturer_code": "terminal_manufacturer_code",
|
|
109
|
+
"title": "title",
|
|
110
|
+
"mac_address": "mac_address",
|
|
111
|
+
"local_ip_address": "local_ip_address",
|
|
112
|
+
"port": "port",
|
|
113
|
+
"serial_number": "serial_number",
|
|
114
|
+
"terminal_number": "terminal_number",
|
|
115
|
+
"terminal_timeouts": "terminal_timeouts",
|
|
116
|
+
"tip_percents": "tip_percents",
|
|
117
|
+
"location_api_id": "location_api_id",
|
|
118
|
+
"terminal_api_id": "terminal_api_id",
|
|
119
|
+
"header_line_1": "header_line_1",
|
|
120
|
+
"header_line_2": "header_line_2",
|
|
121
|
+
"header_line_3": "header_line_3",
|
|
122
|
+
"header_line_4": "header_line_4",
|
|
123
|
+
"header_line_5": "header_line_5",
|
|
124
|
+
"trailer_line_1": "trailer_line_1",
|
|
125
|
+
"trailer_line_2": "trailer_line_2",
|
|
126
|
+
"trailer_line_3": "trailer_line_3",
|
|
127
|
+
"trailer_line_4": "trailer_line_4",
|
|
128
|
+
"trailer_line_5": "trailer_line_5",
|
|
129
|
+
"default_checkin": "default_checkin",
|
|
130
|
+
"default_checkout": "default_checkout",
|
|
131
|
+
"default_room_rate": "default_room_rate",
|
|
132
|
+
"default_room_number": "default_room_number",
|
|
133
|
+
"debit": "debit",
|
|
134
|
+
"emv": "emv",
|
|
135
|
+
"cashback_enable": "cashback_enable",
|
|
136
|
+
"print_enable": "print_enable",
|
|
137
|
+
"sig_capture_enable": "sig_capture_enable",
|
|
138
|
+
"is_provisioned": "is_provisioned",
|
|
139
|
+
"tip_enable": "tip_enable",
|
|
140
|
+
"validated_decryption": "validated_decryption",
|
|
141
|
+
"communication_type": "communication_type",
|
|
142
|
+
"active": "active",
|
|
143
|
+
"prompt_manual_entry": "prompt_manual_entry",
|
|
144
|
+
"payment_type_priority": "payment_type_priority",
|
|
145
|
+
"screen_brightness": "screen_brightness",
|
|
146
|
+
"beep_volume": "beep_volume",
|
|
147
|
+
"id": "id",
|
|
148
|
+
"created_ts": "created_ts",
|
|
149
|
+
"modified_ts": "modified_ts",
|
|
150
|
+
"last_registration_ts": "last_registration_ts",
|
|
151
|
+
"created_user_id": "created_user_id",
|
|
152
|
+
"modified_user_id": "modified_user_id",
|
|
153
|
+
"location": "location",
|
|
154
|
+
"created_user": "created_user",
|
|
155
|
+
"terminal_application": "terminal_application",
|
|
156
|
+
"changelogs": "changelogs",
|
|
157
|
+
"terminal_routers": "terminal_routers",
|
|
158
|
+
"has_terminal_routers": "has_terminal_routers",
|
|
159
|
+
"terminal_cvm": "terminal_cvm",
|
|
160
|
+
"terminal_manufacturer": "terminal_manufacturer",
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
_optionals = [
|
|
164
|
+
"location_id",
|
|
165
|
+
"default_product_transaction_id",
|
|
166
|
+
"terminal_application_id",
|
|
167
|
+
"terminal_cvm_id",
|
|
168
|
+
"terminal_manufacturer_code",
|
|
169
|
+
"title",
|
|
170
|
+
"mac_address",
|
|
171
|
+
"local_ip_address",
|
|
172
|
+
"port",
|
|
173
|
+
"serial_number",
|
|
174
|
+
"terminal_number",
|
|
175
|
+
"terminal_timeouts",
|
|
176
|
+
"tip_percents",
|
|
177
|
+
"location_api_id",
|
|
178
|
+
"terminal_api_id",
|
|
179
|
+
"header_line_1",
|
|
180
|
+
"header_line_2",
|
|
181
|
+
"header_line_3",
|
|
182
|
+
"header_line_4",
|
|
183
|
+
"header_line_5",
|
|
184
|
+
"trailer_line_1",
|
|
185
|
+
"trailer_line_2",
|
|
186
|
+
"trailer_line_3",
|
|
187
|
+
"trailer_line_4",
|
|
188
|
+
"trailer_line_5",
|
|
189
|
+
"default_checkin",
|
|
190
|
+
"default_checkout",
|
|
191
|
+
"default_room_rate",
|
|
192
|
+
"default_room_number",
|
|
193
|
+
"debit",
|
|
194
|
+
"emv",
|
|
195
|
+
"cashback_enable",
|
|
196
|
+
"print_enable",
|
|
197
|
+
"sig_capture_enable",
|
|
198
|
+
"is_provisioned",
|
|
199
|
+
"tip_enable",
|
|
200
|
+
"validated_decryption",
|
|
201
|
+
"communication_type",
|
|
202
|
+
"active",
|
|
203
|
+
"prompt_manual_entry",
|
|
204
|
+
"payment_type_priority",
|
|
205
|
+
"screen_brightness",
|
|
206
|
+
"beep_volume",
|
|
207
|
+
"id",
|
|
208
|
+
"created_ts",
|
|
209
|
+
"modified_ts",
|
|
210
|
+
"last_registration_ts",
|
|
211
|
+
"created_user_id",
|
|
212
|
+
"modified_user_id",
|
|
213
|
+
"location",
|
|
214
|
+
"created_user",
|
|
215
|
+
"terminal_application",
|
|
216
|
+
"changelogs",
|
|
217
|
+
"terminal_routers",
|
|
218
|
+
"has_terminal_routers",
|
|
219
|
+
"terminal_cvm",
|
|
220
|
+
"terminal_manufacturer",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
_nullables = [
|
|
224
|
+
"default_product_transaction_id",
|
|
225
|
+
"terminal_cvm_id",
|
|
226
|
+
"mac_address",
|
|
227
|
+
"location_api_id",
|
|
228
|
+
"terminal_api_id",
|
|
229
|
+
"header_line_1",
|
|
230
|
+
"header_line_2",
|
|
231
|
+
"header_line_3",
|
|
232
|
+
"header_line_4",
|
|
233
|
+
"header_line_5",
|
|
234
|
+
"trailer_line_1",
|
|
235
|
+
"trailer_line_2",
|
|
236
|
+
"trailer_line_3",
|
|
237
|
+
"trailer_line_4",
|
|
238
|
+
"trailer_line_5",
|
|
239
|
+
"default_checkin",
|
|
240
|
+
"default_checkout",
|
|
241
|
+
"default_room_rate",
|
|
242
|
+
"default_room_number",
|
|
243
|
+
"communication_type",
|
|
244
|
+
"payment_type_priority",
|
|
245
|
+
"screen_brightness",
|
|
246
|
+
"beep_volume",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
def __init__(
|
|
250
|
+
self,
|
|
251
|
+
location_id=APIHelper.SKIP,
|
|
252
|
+
default_product_transaction_id=APIHelper.SKIP,
|
|
253
|
+
terminal_application_id=APIHelper.SKIP,
|
|
254
|
+
terminal_cvm_id=APIHelper.SKIP,
|
|
255
|
+
terminal_manufacturer_code=APIHelper.SKIP,
|
|
256
|
+
title=APIHelper.SKIP,
|
|
257
|
+
mac_address=APIHelper.SKIP,
|
|
258
|
+
local_ip_address=APIHelper.SKIP,
|
|
259
|
+
port=10009,
|
|
260
|
+
serial_number=APIHelper.SKIP,
|
|
261
|
+
terminal_number=APIHelper.SKIP,
|
|
262
|
+
terminal_timeouts=APIHelper.SKIP,
|
|
263
|
+
tip_percents=APIHelper.SKIP,
|
|
264
|
+
location_api_id=APIHelper.SKIP,
|
|
265
|
+
terminal_api_id=APIHelper.SKIP,
|
|
266
|
+
header_line_1=APIHelper.SKIP,
|
|
267
|
+
header_line_2=APIHelper.SKIP,
|
|
268
|
+
header_line_3=APIHelper.SKIP,
|
|
269
|
+
header_line_4=APIHelper.SKIP,
|
|
270
|
+
header_line_5=APIHelper.SKIP,
|
|
271
|
+
trailer_line_1=APIHelper.SKIP,
|
|
272
|
+
trailer_line_2=APIHelper.SKIP,
|
|
273
|
+
trailer_line_3=APIHelper.SKIP,
|
|
274
|
+
trailer_line_4=APIHelper.SKIP,
|
|
275
|
+
trailer_line_5=APIHelper.SKIP,
|
|
276
|
+
default_checkin=APIHelper.SKIP,
|
|
277
|
+
default_checkout=APIHelper.SKIP,
|
|
278
|
+
default_room_rate=APIHelper.SKIP,
|
|
279
|
+
default_room_number=APIHelper.SKIP,
|
|
280
|
+
debit=APIHelper.SKIP,
|
|
281
|
+
emv=APIHelper.SKIP,
|
|
282
|
+
cashback_enable=APIHelper.SKIP,
|
|
283
|
+
print_enable=APIHelper.SKIP,
|
|
284
|
+
sig_capture_enable=APIHelper.SKIP,
|
|
285
|
+
is_provisioned=APIHelper.SKIP,
|
|
286
|
+
tip_enable=APIHelper.SKIP,
|
|
287
|
+
validated_decryption=APIHelper.SKIP,
|
|
288
|
+
communication_type=APIHelper.SKIP,
|
|
289
|
+
active=APIHelper.SKIP,
|
|
290
|
+
prompt_manual_entry=APIHelper.SKIP,
|
|
291
|
+
payment_type_priority=APIHelper.SKIP,
|
|
292
|
+
screen_brightness=APIHelper.SKIP,
|
|
293
|
+
beep_volume=APIHelper.SKIP,
|
|
294
|
+
id=APIHelper.SKIP,
|
|
295
|
+
created_ts=APIHelper.SKIP,
|
|
296
|
+
modified_ts=APIHelper.SKIP,
|
|
297
|
+
last_registration_ts=APIHelper.SKIP,
|
|
298
|
+
created_user_id=APIHelper.SKIP,
|
|
299
|
+
modified_user_id=APIHelper.SKIP,
|
|
300
|
+
location=APIHelper.SKIP,
|
|
301
|
+
created_user=APIHelper.SKIP,
|
|
302
|
+
terminal_application=APIHelper.SKIP,
|
|
303
|
+
changelogs=APIHelper.SKIP,
|
|
304
|
+
terminal_routers=APIHelper.SKIP,
|
|
305
|
+
has_terminal_routers=APIHelper.SKIP,
|
|
306
|
+
terminal_cvm=APIHelper.SKIP,
|
|
307
|
+
terminal_manufacturer=APIHelper.SKIP,
|
|
308
|
+
additional_properties=None):
|
|
309
|
+
"""Initialize a List16 instance."""
|
|
310
|
+
# Initialize members of the class
|
|
311
|
+
if location_id is not APIHelper.SKIP:
|
|
312
|
+
self.location_id = location_id
|
|
313
|
+
if default_product_transaction_id is not APIHelper.SKIP:
|
|
314
|
+
self.default_product_transaction_id = default_product_transaction_id
|
|
315
|
+
if terminal_application_id is not APIHelper.SKIP:
|
|
316
|
+
self.terminal_application_id = terminal_application_id
|
|
317
|
+
if terminal_cvm_id is not APIHelper.SKIP:
|
|
318
|
+
self.terminal_cvm_id = terminal_cvm_id
|
|
319
|
+
if terminal_manufacturer_code is not APIHelper.SKIP:
|
|
320
|
+
self.terminal_manufacturer_code = terminal_manufacturer_code
|
|
321
|
+
if title is not APIHelper.SKIP:
|
|
322
|
+
self.title = title
|
|
323
|
+
if mac_address is not APIHelper.SKIP:
|
|
324
|
+
self.mac_address = mac_address
|
|
325
|
+
if local_ip_address is not APIHelper.SKIP:
|
|
326
|
+
self.local_ip_address = local_ip_address
|
|
327
|
+
self.port = port
|
|
328
|
+
if serial_number is not APIHelper.SKIP:
|
|
329
|
+
self.serial_number = serial_number
|
|
330
|
+
if terminal_number is not APIHelper.SKIP:
|
|
331
|
+
self.terminal_number = terminal_number
|
|
332
|
+
if terminal_timeouts is not APIHelper.SKIP:
|
|
333
|
+
self.terminal_timeouts = terminal_timeouts
|
|
334
|
+
if tip_percents is not APIHelper.SKIP:
|
|
335
|
+
self.tip_percents = tip_percents
|
|
336
|
+
if location_api_id is not APIHelper.SKIP:
|
|
337
|
+
self.location_api_id = location_api_id
|
|
338
|
+
if terminal_api_id is not APIHelper.SKIP:
|
|
339
|
+
self.terminal_api_id = terminal_api_id
|
|
340
|
+
if header_line_1 is not APIHelper.SKIP:
|
|
341
|
+
self.header_line_1 = header_line_1
|
|
342
|
+
if header_line_2 is not APIHelper.SKIP:
|
|
343
|
+
self.header_line_2 = header_line_2
|
|
344
|
+
if header_line_3 is not APIHelper.SKIP:
|
|
345
|
+
self.header_line_3 = header_line_3
|
|
346
|
+
if header_line_4 is not APIHelper.SKIP:
|
|
347
|
+
self.header_line_4 = header_line_4
|
|
348
|
+
if header_line_5 is not APIHelper.SKIP:
|
|
349
|
+
self.header_line_5 = header_line_5
|
|
350
|
+
if trailer_line_1 is not APIHelper.SKIP:
|
|
351
|
+
self.trailer_line_1 = trailer_line_1
|
|
352
|
+
if trailer_line_2 is not APIHelper.SKIP:
|
|
353
|
+
self.trailer_line_2 = trailer_line_2
|
|
354
|
+
if trailer_line_3 is not APIHelper.SKIP:
|
|
355
|
+
self.trailer_line_3 = trailer_line_3
|
|
356
|
+
if trailer_line_4 is not APIHelper.SKIP:
|
|
357
|
+
self.trailer_line_4 = trailer_line_4
|
|
358
|
+
if trailer_line_5 is not APIHelper.SKIP:
|
|
359
|
+
self.trailer_line_5 = trailer_line_5
|
|
360
|
+
if default_checkin is not APIHelper.SKIP:
|
|
361
|
+
self.default_checkin = default_checkin
|
|
362
|
+
if default_checkout is not APIHelper.SKIP:
|
|
363
|
+
self.default_checkout = default_checkout
|
|
364
|
+
if default_room_rate is not APIHelper.SKIP:
|
|
365
|
+
self.default_room_rate = default_room_rate
|
|
366
|
+
if default_room_number is not APIHelper.SKIP:
|
|
367
|
+
self.default_room_number = default_room_number
|
|
368
|
+
if debit is not APIHelper.SKIP:
|
|
369
|
+
self.debit = debit
|
|
370
|
+
if emv is not APIHelper.SKIP:
|
|
371
|
+
self.emv = emv
|
|
372
|
+
if cashback_enable is not APIHelper.SKIP:
|
|
373
|
+
self.cashback_enable = cashback_enable
|
|
374
|
+
if print_enable is not APIHelper.SKIP:
|
|
375
|
+
self.print_enable = print_enable
|
|
376
|
+
if sig_capture_enable is not APIHelper.SKIP:
|
|
377
|
+
self.sig_capture_enable = sig_capture_enable
|
|
378
|
+
if is_provisioned is not APIHelper.SKIP:
|
|
379
|
+
self.is_provisioned = is_provisioned
|
|
380
|
+
if tip_enable is not APIHelper.SKIP:
|
|
381
|
+
self.tip_enable = tip_enable
|
|
382
|
+
if validated_decryption is not APIHelper.SKIP:
|
|
383
|
+
self.validated_decryption = validated_decryption
|
|
384
|
+
if communication_type is not APIHelper.SKIP:
|
|
385
|
+
self.communication_type = communication_type
|
|
386
|
+
if active is not APIHelper.SKIP:
|
|
387
|
+
self.active = active
|
|
388
|
+
if prompt_manual_entry is not APIHelper.SKIP:
|
|
389
|
+
self.prompt_manual_entry = prompt_manual_entry
|
|
390
|
+
if payment_type_priority is not APIHelper.SKIP:
|
|
391
|
+
self.payment_type_priority = payment_type_priority
|
|
392
|
+
if screen_brightness is not APIHelper.SKIP:
|
|
393
|
+
self.screen_brightness = screen_brightness
|
|
394
|
+
if beep_volume is not APIHelper.SKIP:
|
|
395
|
+
self.beep_volume = beep_volume
|
|
396
|
+
if id is not APIHelper.SKIP:
|
|
397
|
+
self.id = id
|
|
398
|
+
if created_ts is not APIHelper.SKIP:
|
|
399
|
+
self.created_ts = created_ts
|
|
400
|
+
if modified_ts is not APIHelper.SKIP:
|
|
401
|
+
self.modified_ts = modified_ts
|
|
402
|
+
if last_registration_ts is not APIHelper.SKIP:
|
|
403
|
+
self.last_registration_ts = last_registration_ts
|
|
404
|
+
if created_user_id is not APIHelper.SKIP:
|
|
405
|
+
self.created_user_id = created_user_id
|
|
406
|
+
if modified_user_id is not APIHelper.SKIP:
|
|
407
|
+
self.modified_user_id = modified_user_id
|
|
408
|
+
if location is not APIHelper.SKIP:
|
|
409
|
+
self.location = location
|
|
410
|
+
if created_user is not APIHelper.SKIP:
|
|
411
|
+
self.created_user = created_user
|
|
412
|
+
if terminal_application is not APIHelper.SKIP:
|
|
413
|
+
self.terminal_application = terminal_application
|
|
414
|
+
if changelogs is not APIHelper.SKIP:
|
|
415
|
+
self.changelogs = changelogs
|
|
416
|
+
if terminal_routers is not APIHelper.SKIP:
|
|
417
|
+
self.terminal_routers = terminal_routers
|
|
418
|
+
if has_terminal_routers is not APIHelper.SKIP:
|
|
419
|
+
self.has_terminal_routers = has_terminal_routers
|
|
420
|
+
if terminal_cvm is not APIHelper.SKIP:
|
|
421
|
+
self.terminal_cvm = terminal_cvm
|
|
422
|
+
if terminal_manufacturer is not APIHelper.SKIP:
|
|
423
|
+
self.terminal_manufacturer = terminal_manufacturer
|
|
424
|
+
|
|
425
|
+
# Add additional model properties to the instance
|
|
426
|
+
if additional_properties is None:
|
|
427
|
+
additional_properties = {}
|
|
428
|
+
self.additional_properties = additional_properties
|
|
429
|
+
|
|
430
|
+
@classmethod
|
|
431
|
+
def from_dictionary(cls,
|
|
432
|
+
dictionary):
|
|
433
|
+
"""Create an instance of this model from a dictionary
|
|
434
|
+
|
|
435
|
+
Args:
|
|
436
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
437
|
+
as obtained from the deserialization of the server's response. The
|
|
438
|
+
keys MUST match property names in the API description.
|
|
439
|
+
|
|
440
|
+
Returns:
|
|
441
|
+
object: An instance of this structure class.
|
|
442
|
+
|
|
443
|
+
"""
|
|
444
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
445
|
+
return None
|
|
446
|
+
|
|
447
|
+
# Extract variables from the dictionary
|
|
448
|
+
location_id =\
|
|
449
|
+
dictionary.get("location_id")\
|
|
450
|
+
if dictionary.get("location_id")\
|
|
451
|
+
else APIHelper.SKIP
|
|
452
|
+
default_product_transaction_id =\
|
|
453
|
+
dictionary.get("default_product_transaction_id")\
|
|
454
|
+
if "default_product_transaction_id" in dictionary.keys()\
|
|
455
|
+
else APIHelper.SKIP
|
|
456
|
+
terminal_application_id =\
|
|
457
|
+
dictionary.get("terminal_application_id")\
|
|
458
|
+
if dictionary.get("terminal_application_id")\
|
|
459
|
+
else APIHelper.SKIP
|
|
460
|
+
terminal_cvm_id =\
|
|
461
|
+
dictionary.get("terminal_cvm_id")\
|
|
462
|
+
if "terminal_cvm_id" in dictionary.keys()\
|
|
463
|
+
else APIHelper.SKIP
|
|
464
|
+
terminal_manufacturer_code =\
|
|
465
|
+
dictionary.get("terminal_manufacturer_code")\
|
|
466
|
+
if dictionary.get("terminal_manufacturer_code")\
|
|
467
|
+
else APIHelper.SKIP
|
|
468
|
+
title =\
|
|
469
|
+
dictionary.get("title")\
|
|
470
|
+
if dictionary.get("title")\
|
|
471
|
+
else APIHelper.SKIP
|
|
472
|
+
mac_address =\
|
|
473
|
+
dictionary.get("mac_address")\
|
|
474
|
+
if "mac_address" in dictionary.keys()\
|
|
475
|
+
else APIHelper.SKIP
|
|
476
|
+
local_ip_address =\
|
|
477
|
+
dictionary.get("local_ip_address")\
|
|
478
|
+
if dictionary.get("local_ip_address")\
|
|
479
|
+
else APIHelper.SKIP
|
|
480
|
+
port =\
|
|
481
|
+
dictionary.get("port")\
|
|
482
|
+
if dictionary.get("port")\
|
|
483
|
+
else 10009
|
|
484
|
+
serial_number =\
|
|
485
|
+
dictionary.get("serial_number")\
|
|
486
|
+
if dictionary.get("serial_number")\
|
|
487
|
+
else APIHelper.SKIP
|
|
488
|
+
terminal_number =\
|
|
489
|
+
dictionary.get("terminal_number")\
|
|
490
|
+
if dictionary.get("terminal_number")\
|
|
491
|
+
else APIHelper.SKIP
|
|
492
|
+
terminal_timeouts =\
|
|
493
|
+
TerminalTimeouts.from_dictionary(
|
|
494
|
+
dictionary.get("terminal_timeouts"))\
|
|
495
|
+
if "terminal_timeouts" in dictionary.keys()\
|
|
496
|
+
else APIHelper.SKIP
|
|
497
|
+
tip_percents =\
|
|
498
|
+
TipPercents.from_dictionary(
|
|
499
|
+
dictionary.get("tip_percents"))\
|
|
500
|
+
if "tip_percents" in dictionary.keys()\
|
|
501
|
+
else APIHelper.SKIP
|
|
502
|
+
location_api_id =\
|
|
503
|
+
dictionary.get("location_api_id")\
|
|
504
|
+
if "location_api_id" in dictionary.keys()\
|
|
505
|
+
else APIHelper.SKIP
|
|
506
|
+
terminal_api_id =\
|
|
507
|
+
dictionary.get("terminal_api_id")\
|
|
508
|
+
if "terminal_api_id" in dictionary.keys()\
|
|
509
|
+
else APIHelper.SKIP
|
|
510
|
+
header_line_1 =\
|
|
511
|
+
dictionary.get("header_line_1")\
|
|
512
|
+
if "header_line_1" in dictionary.keys()\
|
|
513
|
+
else APIHelper.SKIP
|
|
514
|
+
header_line_2 =\
|
|
515
|
+
dictionary.get("header_line_2")\
|
|
516
|
+
if "header_line_2" in dictionary.keys()\
|
|
517
|
+
else APIHelper.SKIP
|
|
518
|
+
header_line_3 =\
|
|
519
|
+
dictionary.get("header_line_3")\
|
|
520
|
+
if "header_line_3" in dictionary.keys()\
|
|
521
|
+
else APIHelper.SKIP
|
|
522
|
+
header_line_4 =\
|
|
523
|
+
dictionary.get("header_line_4")\
|
|
524
|
+
if "header_line_4" in dictionary.keys()\
|
|
525
|
+
else APIHelper.SKIP
|
|
526
|
+
header_line_5 =\
|
|
527
|
+
dictionary.get("header_line_5")\
|
|
528
|
+
if "header_line_5" in dictionary.keys()\
|
|
529
|
+
else APIHelper.SKIP
|
|
530
|
+
trailer_line_1 =\
|
|
531
|
+
dictionary.get("trailer_line_1")\
|
|
532
|
+
if "trailer_line_1" in dictionary.keys()\
|
|
533
|
+
else APIHelper.SKIP
|
|
534
|
+
trailer_line_2 =\
|
|
535
|
+
dictionary.get("trailer_line_2")\
|
|
536
|
+
if "trailer_line_2" in dictionary.keys()\
|
|
537
|
+
else APIHelper.SKIP
|
|
538
|
+
trailer_line_3 =\
|
|
539
|
+
dictionary.get("trailer_line_3")\
|
|
540
|
+
if "trailer_line_3" in dictionary.keys()\
|
|
541
|
+
else APIHelper.SKIP
|
|
542
|
+
trailer_line_4 =\
|
|
543
|
+
dictionary.get("trailer_line_4")\
|
|
544
|
+
if "trailer_line_4" in dictionary.keys()\
|
|
545
|
+
else APIHelper.SKIP
|
|
546
|
+
trailer_line_5 =\
|
|
547
|
+
dictionary.get("trailer_line_5")\
|
|
548
|
+
if "trailer_line_5" in dictionary.keys()\
|
|
549
|
+
else APIHelper.SKIP
|
|
550
|
+
default_checkin =\
|
|
551
|
+
dictionary.get("default_checkin")\
|
|
552
|
+
if "default_checkin" in dictionary.keys()\
|
|
553
|
+
else APIHelper.SKIP
|
|
554
|
+
default_checkout =\
|
|
555
|
+
dictionary.get("default_checkout")\
|
|
556
|
+
if "default_checkout" in dictionary.keys()\
|
|
557
|
+
else APIHelper.SKIP
|
|
558
|
+
default_room_rate =\
|
|
559
|
+
dictionary.get("default_room_rate")\
|
|
560
|
+
if "default_room_rate" in dictionary.keys()\
|
|
561
|
+
else APIHelper.SKIP
|
|
562
|
+
default_room_number =\
|
|
563
|
+
dictionary.get("default_room_number")\
|
|
564
|
+
if "default_room_number" in dictionary.keys()\
|
|
565
|
+
else APIHelper.SKIP
|
|
566
|
+
debit =\
|
|
567
|
+
dictionary.get("debit")\
|
|
568
|
+
if "debit" in dictionary.keys()\
|
|
569
|
+
else APIHelper.SKIP
|
|
570
|
+
emv =\
|
|
571
|
+
dictionary.get("emv")\
|
|
572
|
+
if "emv" in dictionary.keys()\
|
|
573
|
+
else APIHelper.SKIP
|
|
574
|
+
cashback_enable =\
|
|
575
|
+
dictionary.get("cashback_enable")\
|
|
576
|
+
if "cashback_enable" in dictionary.keys()\
|
|
577
|
+
else APIHelper.SKIP
|
|
578
|
+
print_enable =\
|
|
579
|
+
dictionary.get("print_enable")\
|
|
580
|
+
if "print_enable" in dictionary.keys()\
|
|
581
|
+
else APIHelper.SKIP
|
|
582
|
+
sig_capture_enable =\
|
|
583
|
+
dictionary.get("sig_capture_enable")\
|
|
584
|
+
if "sig_capture_enable" in dictionary.keys()\
|
|
585
|
+
else APIHelper.SKIP
|
|
586
|
+
is_provisioned =\
|
|
587
|
+
dictionary.get("is_provisioned")\
|
|
588
|
+
if "is_provisioned" in dictionary.keys()\
|
|
589
|
+
else APIHelper.SKIP
|
|
590
|
+
tip_enable =\
|
|
591
|
+
dictionary.get("tip_enable")\
|
|
592
|
+
if "tip_enable" in dictionary.keys()\
|
|
593
|
+
else APIHelper.SKIP
|
|
594
|
+
validated_decryption =\
|
|
595
|
+
dictionary.get("validated_decryption")\
|
|
596
|
+
if "validated_decryption" in dictionary.keys()\
|
|
597
|
+
else APIHelper.SKIP
|
|
598
|
+
communication_type =\
|
|
599
|
+
dictionary.get("communication_type")\
|
|
600
|
+
if "communication_type" in dictionary.keys()\
|
|
601
|
+
else APIHelper.SKIP
|
|
602
|
+
active =\
|
|
603
|
+
dictionary.get("active")\
|
|
604
|
+
if "active" in dictionary.keys()\
|
|
605
|
+
else APIHelper.SKIP
|
|
606
|
+
prompt_manual_entry =\
|
|
607
|
+
dictionary.get("prompt_manual_entry")\
|
|
608
|
+
if "prompt_manual_entry" in dictionary.keys()\
|
|
609
|
+
else APIHelper.SKIP
|
|
610
|
+
payment_type_priority =\
|
|
611
|
+
dictionary.get("payment_type_priority")\
|
|
612
|
+
if "payment_type_priority" in dictionary.keys()\
|
|
613
|
+
else APIHelper.SKIP
|
|
614
|
+
screen_brightness =\
|
|
615
|
+
dictionary.get("screen_brightness")\
|
|
616
|
+
if "screen_brightness" in dictionary.keys()\
|
|
617
|
+
else APIHelper.SKIP
|
|
618
|
+
beep_volume =\
|
|
619
|
+
dictionary.get("beep_volume")\
|
|
620
|
+
if "beep_volume" in dictionary.keys()\
|
|
621
|
+
else APIHelper.SKIP
|
|
622
|
+
id =\
|
|
623
|
+
dictionary.get("id")\
|
|
624
|
+
if dictionary.get("id")\
|
|
625
|
+
else APIHelper.SKIP
|
|
626
|
+
created_ts =\
|
|
627
|
+
dictionary.get("created_ts")\
|
|
628
|
+
if dictionary.get("created_ts")\
|
|
629
|
+
else APIHelper.SKIP
|
|
630
|
+
modified_ts =\
|
|
631
|
+
dictionary.get("modified_ts")\
|
|
632
|
+
if dictionary.get("modified_ts")\
|
|
633
|
+
else APIHelper.SKIP
|
|
634
|
+
last_registration_ts =\
|
|
635
|
+
dictionary.get("last_registration_ts")\
|
|
636
|
+
if dictionary.get("last_registration_ts")\
|
|
637
|
+
else APIHelper.SKIP
|
|
638
|
+
created_user_id =\
|
|
639
|
+
dictionary.get("created_user_id")\
|
|
640
|
+
if dictionary.get("created_user_id")\
|
|
641
|
+
else APIHelper.SKIP
|
|
642
|
+
modified_user_id =\
|
|
643
|
+
dictionary.get("modified_user_id")\
|
|
644
|
+
if dictionary.get("modified_user_id")\
|
|
645
|
+
else APIHelper.SKIP
|
|
646
|
+
location =\
|
|
647
|
+
Location.from_dictionary(
|
|
648
|
+
dictionary.get("location"))\
|
|
649
|
+
if "location" in dictionary.keys()\
|
|
650
|
+
else APIHelper.SKIP
|
|
651
|
+
created_user =\
|
|
652
|
+
CreatedUser.from_dictionary(
|
|
653
|
+
dictionary.get("created_user"))\
|
|
654
|
+
if "created_user" in dictionary.keys()\
|
|
655
|
+
else APIHelper.SKIP
|
|
656
|
+
terminal_application =\
|
|
657
|
+
TerminalApplication.from_dictionary(
|
|
658
|
+
dictionary.get("terminal_application"))\
|
|
659
|
+
if "terminal_application" in dictionary.keys()\
|
|
660
|
+
else APIHelper.SKIP
|
|
661
|
+
changelogs = None
|
|
662
|
+
if dictionary.get("changelogs") is not None:
|
|
663
|
+
changelogs = [
|
|
664
|
+
Changelog.from_dictionary(x)
|
|
665
|
+
for x in dictionary.get("changelogs")
|
|
666
|
+
]
|
|
667
|
+
else:
|
|
668
|
+
changelogs = APIHelper.SKIP
|
|
669
|
+
terminal_routers = None
|
|
670
|
+
if dictionary.get("terminal_routers") is not None:
|
|
671
|
+
terminal_routers = [
|
|
672
|
+
TerminalRouter.from_dictionary(x)
|
|
673
|
+
for x in dictionary.get("terminal_routers")
|
|
674
|
+
]
|
|
675
|
+
else:
|
|
676
|
+
terminal_routers = APIHelper.SKIP
|
|
677
|
+
has_terminal_routers =\
|
|
678
|
+
dictionary.get("has_terminal_routers")\
|
|
679
|
+
if "has_terminal_routers" in dictionary.keys()\
|
|
680
|
+
else APIHelper.SKIP
|
|
681
|
+
terminal_cvm =\
|
|
682
|
+
TerminalCvm.from_dictionary(
|
|
683
|
+
dictionary.get("terminal_cvm"))\
|
|
684
|
+
if "terminal_cvm" in dictionary.keys()\
|
|
685
|
+
else APIHelper.SKIP
|
|
686
|
+
terminal_manufacturer =\
|
|
687
|
+
TerminalManufacturer.from_dictionary(
|
|
688
|
+
dictionary.get("terminal_manufacturer"))\
|
|
689
|
+
if "terminal_manufacturer" in dictionary.keys()\
|
|
690
|
+
else APIHelper.SKIP
|
|
691
|
+
|
|
692
|
+
# Clean out expected properties from dictionary
|
|
693
|
+
additional_properties =\
|
|
694
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
695
|
+
|
|
696
|
+
# Return an object of this model
|
|
697
|
+
return cls(location_id,
|
|
698
|
+
default_product_transaction_id,
|
|
699
|
+
terminal_application_id,
|
|
700
|
+
terminal_cvm_id,
|
|
701
|
+
terminal_manufacturer_code,
|
|
702
|
+
title,
|
|
703
|
+
mac_address,
|
|
704
|
+
local_ip_address,
|
|
705
|
+
port,
|
|
706
|
+
serial_number,
|
|
707
|
+
terminal_number,
|
|
708
|
+
terminal_timeouts,
|
|
709
|
+
tip_percents,
|
|
710
|
+
location_api_id,
|
|
711
|
+
terminal_api_id,
|
|
712
|
+
header_line_1,
|
|
713
|
+
header_line_2,
|
|
714
|
+
header_line_3,
|
|
715
|
+
header_line_4,
|
|
716
|
+
header_line_5,
|
|
717
|
+
trailer_line_1,
|
|
718
|
+
trailer_line_2,
|
|
719
|
+
trailer_line_3,
|
|
720
|
+
trailer_line_4,
|
|
721
|
+
trailer_line_5,
|
|
722
|
+
default_checkin,
|
|
723
|
+
default_checkout,
|
|
724
|
+
default_room_rate,
|
|
725
|
+
default_room_number,
|
|
726
|
+
debit,
|
|
727
|
+
emv,
|
|
728
|
+
cashback_enable,
|
|
729
|
+
print_enable,
|
|
730
|
+
sig_capture_enable,
|
|
731
|
+
is_provisioned,
|
|
732
|
+
tip_enable,
|
|
733
|
+
validated_decryption,
|
|
734
|
+
communication_type,
|
|
735
|
+
active,
|
|
736
|
+
prompt_manual_entry,
|
|
737
|
+
payment_type_priority,
|
|
738
|
+
screen_brightness,
|
|
739
|
+
beep_volume,
|
|
740
|
+
id,
|
|
741
|
+
created_ts,
|
|
742
|
+
modified_ts,
|
|
743
|
+
last_registration_ts,
|
|
744
|
+
created_user_id,
|
|
745
|
+
modified_user_id,
|
|
746
|
+
location,
|
|
747
|
+
created_user,
|
|
748
|
+
terminal_application,
|
|
749
|
+
changelogs,
|
|
750
|
+
terminal_routers,
|
|
751
|
+
has_terminal_routers,
|
|
752
|
+
terminal_cvm,
|
|
753
|
+
terminal_manufacturer,
|
|
754
|
+
additional_properties)
|
|
755
|
+
|
|
756
|
+
def __repr__(self):
|
|
757
|
+
"""Return a unambiguous string representation."""
|
|
758
|
+
_location_id=(
|
|
759
|
+
self.location_id
|
|
760
|
+
if hasattr(self, "location_id")
|
|
761
|
+
else None
|
|
762
|
+
)
|
|
763
|
+
_default_product_transaction_id=(
|
|
764
|
+
self.default_product_transaction_id
|
|
765
|
+
if hasattr(self, "default_product_transaction_id")
|
|
766
|
+
else None
|
|
767
|
+
)
|
|
768
|
+
_terminal_application_id=(
|
|
769
|
+
self.terminal_application_id
|
|
770
|
+
if hasattr(self, "terminal_application_id")
|
|
771
|
+
else None
|
|
772
|
+
)
|
|
773
|
+
_terminal_cvm_id=(
|
|
774
|
+
self.terminal_cvm_id
|
|
775
|
+
if hasattr(self, "terminal_cvm_id")
|
|
776
|
+
else None
|
|
777
|
+
)
|
|
778
|
+
_terminal_manufacturer_code=(
|
|
779
|
+
self.terminal_manufacturer_code
|
|
780
|
+
if hasattr(self, "terminal_manufacturer_code")
|
|
781
|
+
else None
|
|
782
|
+
)
|
|
783
|
+
_title=(
|
|
784
|
+
self.title
|
|
785
|
+
if hasattr(self, "title")
|
|
786
|
+
else None
|
|
787
|
+
)
|
|
788
|
+
_mac_address=(
|
|
789
|
+
self.mac_address
|
|
790
|
+
if hasattr(self, "mac_address")
|
|
791
|
+
else None
|
|
792
|
+
)
|
|
793
|
+
_local_ip_address=(
|
|
794
|
+
self.local_ip_address
|
|
795
|
+
if hasattr(self, "local_ip_address")
|
|
796
|
+
else None
|
|
797
|
+
)
|
|
798
|
+
_port=(
|
|
799
|
+
self.port
|
|
800
|
+
if hasattr(self, "port")
|
|
801
|
+
else None
|
|
802
|
+
)
|
|
803
|
+
_serial_number=(
|
|
804
|
+
self.serial_number
|
|
805
|
+
if hasattr(self, "serial_number")
|
|
806
|
+
else None
|
|
807
|
+
)
|
|
808
|
+
_terminal_number=(
|
|
809
|
+
self.terminal_number
|
|
810
|
+
if hasattr(self, "terminal_number")
|
|
811
|
+
else None
|
|
812
|
+
)
|
|
813
|
+
_terminal_timeouts=(
|
|
814
|
+
self.terminal_timeouts
|
|
815
|
+
if hasattr(self, "terminal_timeouts")
|
|
816
|
+
else None
|
|
817
|
+
)
|
|
818
|
+
_tip_percents=(
|
|
819
|
+
self.tip_percents
|
|
820
|
+
if hasattr(self, "tip_percents")
|
|
821
|
+
else None
|
|
822
|
+
)
|
|
823
|
+
_location_api_id=(
|
|
824
|
+
self.location_api_id
|
|
825
|
+
if hasattr(self, "location_api_id")
|
|
826
|
+
else None
|
|
827
|
+
)
|
|
828
|
+
_terminal_api_id=(
|
|
829
|
+
self.terminal_api_id
|
|
830
|
+
if hasattr(self, "terminal_api_id")
|
|
831
|
+
else None
|
|
832
|
+
)
|
|
833
|
+
_header_line_1=(
|
|
834
|
+
self.header_line_1
|
|
835
|
+
if hasattr(self, "header_line_1")
|
|
836
|
+
else None
|
|
837
|
+
)
|
|
838
|
+
_header_line_2=(
|
|
839
|
+
self.header_line_2
|
|
840
|
+
if hasattr(self, "header_line_2")
|
|
841
|
+
else None
|
|
842
|
+
)
|
|
843
|
+
_header_line_3=(
|
|
844
|
+
self.header_line_3
|
|
845
|
+
if hasattr(self, "header_line_3")
|
|
846
|
+
else None
|
|
847
|
+
)
|
|
848
|
+
_header_line_4=(
|
|
849
|
+
self.header_line_4
|
|
850
|
+
if hasattr(self, "header_line_4")
|
|
851
|
+
else None
|
|
852
|
+
)
|
|
853
|
+
_header_line_5=(
|
|
854
|
+
self.header_line_5
|
|
855
|
+
if hasattr(self, "header_line_5")
|
|
856
|
+
else None
|
|
857
|
+
)
|
|
858
|
+
_trailer_line_1=(
|
|
859
|
+
self.trailer_line_1
|
|
860
|
+
if hasattr(self, "trailer_line_1")
|
|
861
|
+
else None
|
|
862
|
+
)
|
|
863
|
+
_trailer_line_2=(
|
|
864
|
+
self.trailer_line_2
|
|
865
|
+
if hasattr(self, "trailer_line_2")
|
|
866
|
+
else None
|
|
867
|
+
)
|
|
868
|
+
_trailer_line_3=(
|
|
869
|
+
self.trailer_line_3
|
|
870
|
+
if hasattr(self, "trailer_line_3")
|
|
871
|
+
else None
|
|
872
|
+
)
|
|
873
|
+
_trailer_line_4=(
|
|
874
|
+
self.trailer_line_4
|
|
875
|
+
if hasattr(self, "trailer_line_4")
|
|
876
|
+
else None
|
|
877
|
+
)
|
|
878
|
+
_trailer_line_5=(
|
|
879
|
+
self.trailer_line_5
|
|
880
|
+
if hasattr(self, "trailer_line_5")
|
|
881
|
+
else None
|
|
882
|
+
)
|
|
883
|
+
_default_checkin=(
|
|
884
|
+
self.default_checkin
|
|
885
|
+
if hasattr(self, "default_checkin")
|
|
886
|
+
else None
|
|
887
|
+
)
|
|
888
|
+
_default_checkout=(
|
|
889
|
+
self.default_checkout
|
|
890
|
+
if hasattr(self, "default_checkout")
|
|
891
|
+
else None
|
|
892
|
+
)
|
|
893
|
+
_default_room_rate=(
|
|
894
|
+
self.default_room_rate
|
|
895
|
+
if hasattr(self, "default_room_rate")
|
|
896
|
+
else None
|
|
897
|
+
)
|
|
898
|
+
_default_room_number=(
|
|
899
|
+
self.default_room_number
|
|
900
|
+
if hasattr(self, "default_room_number")
|
|
901
|
+
else None
|
|
902
|
+
)
|
|
903
|
+
_debit=(
|
|
904
|
+
self.debit
|
|
905
|
+
if hasattr(self, "debit")
|
|
906
|
+
else None
|
|
907
|
+
)
|
|
908
|
+
_emv=(
|
|
909
|
+
self.emv
|
|
910
|
+
if hasattr(self, "emv")
|
|
911
|
+
else None
|
|
912
|
+
)
|
|
913
|
+
_cashback_enable=(
|
|
914
|
+
self.cashback_enable
|
|
915
|
+
if hasattr(self, "cashback_enable")
|
|
916
|
+
else None
|
|
917
|
+
)
|
|
918
|
+
_print_enable=(
|
|
919
|
+
self.print_enable
|
|
920
|
+
if hasattr(self, "print_enable")
|
|
921
|
+
else None
|
|
922
|
+
)
|
|
923
|
+
_sig_capture_enable=(
|
|
924
|
+
self.sig_capture_enable
|
|
925
|
+
if hasattr(self, "sig_capture_enable")
|
|
926
|
+
else None
|
|
927
|
+
)
|
|
928
|
+
_is_provisioned=(
|
|
929
|
+
self.is_provisioned
|
|
930
|
+
if hasattr(self, "is_provisioned")
|
|
931
|
+
else None
|
|
932
|
+
)
|
|
933
|
+
_tip_enable=(
|
|
934
|
+
self.tip_enable
|
|
935
|
+
if hasattr(self, "tip_enable")
|
|
936
|
+
else None
|
|
937
|
+
)
|
|
938
|
+
_validated_decryption=(
|
|
939
|
+
self.validated_decryption
|
|
940
|
+
if hasattr(self, "validated_decryption")
|
|
941
|
+
else None
|
|
942
|
+
)
|
|
943
|
+
_communication_type=(
|
|
944
|
+
self.communication_type
|
|
945
|
+
if hasattr(self, "communication_type")
|
|
946
|
+
else None
|
|
947
|
+
)
|
|
948
|
+
_active=(
|
|
949
|
+
self.active
|
|
950
|
+
if hasattr(self, "active")
|
|
951
|
+
else None
|
|
952
|
+
)
|
|
953
|
+
_prompt_manual_entry=(
|
|
954
|
+
self.prompt_manual_entry
|
|
955
|
+
if hasattr(self, "prompt_manual_entry")
|
|
956
|
+
else None
|
|
957
|
+
)
|
|
958
|
+
_payment_type_priority=(
|
|
959
|
+
self.payment_type_priority
|
|
960
|
+
if hasattr(self, "payment_type_priority")
|
|
961
|
+
else None
|
|
962
|
+
)
|
|
963
|
+
_screen_brightness=(
|
|
964
|
+
self.screen_brightness
|
|
965
|
+
if hasattr(self, "screen_brightness")
|
|
966
|
+
else None
|
|
967
|
+
)
|
|
968
|
+
_beep_volume=(
|
|
969
|
+
self.beep_volume
|
|
970
|
+
if hasattr(self, "beep_volume")
|
|
971
|
+
else None
|
|
972
|
+
)
|
|
973
|
+
_id=(
|
|
974
|
+
self.id
|
|
975
|
+
if hasattr(self, "id")
|
|
976
|
+
else None
|
|
977
|
+
)
|
|
978
|
+
_created_ts=(
|
|
979
|
+
self.created_ts
|
|
980
|
+
if hasattr(self, "created_ts")
|
|
981
|
+
else None
|
|
982
|
+
)
|
|
983
|
+
_modified_ts=(
|
|
984
|
+
self.modified_ts
|
|
985
|
+
if hasattr(self, "modified_ts")
|
|
986
|
+
else None
|
|
987
|
+
)
|
|
988
|
+
_last_registration_ts=(
|
|
989
|
+
self.last_registration_ts
|
|
990
|
+
if hasattr(self, "last_registration_ts")
|
|
991
|
+
else None
|
|
992
|
+
)
|
|
993
|
+
_created_user_id=(
|
|
994
|
+
self.created_user_id
|
|
995
|
+
if hasattr(self, "created_user_id")
|
|
996
|
+
else None
|
|
997
|
+
)
|
|
998
|
+
_modified_user_id=(
|
|
999
|
+
self.modified_user_id
|
|
1000
|
+
if hasattr(self, "modified_user_id")
|
|
1001
|
+
else None
|
|
1002
|
+
)
|
|
1003
|
+
_location=(
|
|
1004
|
+
self.location
|
|
1005
|
+
if hasattr(self, "location")
|
|
1006
|
+
else None
|
|
1007
|
+
)
|
|
1008
|
+
_created_user=(
|
|
1009
|
+
self.created_user
|
|
1010
|
+
if hasattr(self, "created_user")
|
|
1011
|
+
else None
|
|
1012
|
+
)
|
|
1013
|
+
_terminal_application=(
|
|
1014
|
+
self.terminal_application
|
|
1015
|
+
if hasattr(self, "terminal_application")
|
|
1016
|
+
else None
|
|
1017
|
+
)
|
|
1018
|
+
_changelogs=(
|
|
1019
|
+
self.changelogs
|
|
1020
|
+
if hasattr(self, "changelogs")
|
|
1021
|
+
else None
|
|
1022
|
+
)
|
|
1023
|
+
_terminal_routers=(
|
|
1024
|
+
self.terminal_routers
|
|
1025
|
+
if hasattr(self, "terminal_routers")
|
|
1026
|
+
else None
|
|
1027
|
+
)
|
|
1028
|
+
_has_terminal_routers=(
|
|
1029
|
+
self.has_terminal_routers
|
|
1030
|
+
if hasattr(self, "has_terminal_routers")
|
|
1031
|
+
else None
|
|
1032
|
+
)
|
|
1033
|
+
_terminal_cvm=(
|
|
1034
|
+
self.terminal_cvm
|
|
1035
|
+
if hasattr(self, "terminal_cvm")
|
|
1036
|
+
else None
|
|
1037
|
+
)
|
|
1038
|
+
_terminal_manufacturer=(
|
|
1039
|
+
self.terminal_manufacturer
|
|
1040
|
+
if hasattr(self, "terminal_manufacturer")
|
|
1041
|
+
else None
|
|
1042
|
+
)
|
|
1043
|
+
_additional_properties=self.additional_properties
|
|
1044
|
+
return (
|
|
1045
|
+
f"{self.__class__.__name__}("
|
|
1046
|
+
f"location_id={_location_id!r}, "
|
|
1047
|
+
f"default_product_transaction_id={_default_product_transaction_id!r}, "
|
|
1048
|
+
f"terminal_application_id={_terminal_application_id!r}, "
|
|
1049
|
+
f"terminal_cvm_id={_terminal_cvm_id!r}, "
|
|
1050
|
+
f"terminal_manufacturer_code={_terminal_manufacturer_code!r}, "
|
|
1051
|
+
f"title={_title!r}, "
|
|
1052
|
+
f"mac_address={_mac_address!r}, "
|
|
1053
|
+
f"local_ip_address={_local_ip_address!r}, "
|
|
1054
|
+
f"port={_port!r}, "
|
|
1055
|
+
f"serial_number={_serial_number!r}, "
|
|
1056
|
+
f"terminal_number={_terminal_number!r}, "
|
|
1057
|
+
f"terminal_timeouts={_terminal_timeouts!r}, "
|
|
1058
|
+
f"tip_percents={_tip_percents!r}, "
|
|
1059
|
+
f"location_api_id={_location_api_id!r}, "
|
|
1060
|
+
f"terminal_api_id={_terminal_api_id!r}, "
|
|
1061
|
+
f"header_line_1={_header_line_1!r}, "
|
|
1062
|
+
f"header_line_2={_header_line_2!r}, "
|
|
1063
|
+
f"header_line_3={_header_line_3!r}, "
|
|
1064
|
+
f"header_line_4={_header_line_4!r}, "
|
|
1065
|
+
f"header_line_5={_header_line_5!r}, "
|
|
1066
|
+
f"trailer_line_1={_trailer_line_1!r}, "
|
|
1067
|
+
f"trailer_line_2={_trailer_line_2!r}, "
|
|
1068
|
+
f"trailer_line_3={_trailer_line_3!r}, "
|
|
1069
|
+
f"trailer_line_4={_trailer_line_4!r}, "
|
|
1070
|
+
f"trailer_line_5={_trailer_line_5!r}, "
|
|
1071
|
+
f"default_checkin={_default_checkin!r}, "
|
|
1072
|
+
f"default_checkout={_default_checkout!r}, "
|
|
1073
|
+
f"default_room_rate={_default_room_rate!r}, "
|
|
1074
|
+
f"default_room_number={_default_room_number!r}, "
|
|
1075
|
+
f"debit={_debit!r}, "
|
|
1076
|
+
f"emv={_emv!r}, "
|
|
1077
|
+
f"cashback_enable={_cashback_enable!r}, "
|
|
1078
|
+
f"print_enable={_print_enable!r}, "
|
|
1079
|
+
f"sig_capture_enable={_sig_capture_enable!r}, "
|
|
1080
|
+
f"is_provisioned={_is_provisioned!r}, "
|
|
1081
|
+
f"tip_enable={_tip_enable!r}, "
|
|
1082
|
+
f"validated_decryption={_validated_decryption!r}, "
|
|
1083
|
+
f"communication_type={_communication_type!r}, "
|
|
1084
|
+
f"active={_active!r}, "
|
|
1085
|
+
f"prompt_manual_entry={_prompt_manual_entry!r}, "
|
|
1086
|
+
f"payment_type_priority={_payment_type_priority!r}, "
|
|
1087
|
+
f"screen_brightness={_screen_brightness!r}, "
|
|
1088
|
+
f"beep_volume={_beep_volume!r}, "
|
|
1089
|
+
f"id={_id!r}, "
|
|
1090
|
+
f"created_ts={_created_ts!r}, "
|
|
1091
|
+
f"modified_ts={_modified_ts!r}, "
|
|
1092
|
+
f"last_registration_ts={_last_registration_ts!r}, "
|
|
1093
|
+
f"created_user_id={_created_user_id!r}, "
|
|
1094
|
+
f"modified_user_id={_modified_user_id!r}, "
|
|
1095
|
+
f"location={_location!r}, "
|
|
1096
|
+
f"created_user={_created_user!r}, "
|
|
1097
|
+
f"terminal_application={_terminal_application!r}, "
|
|
1098
|
+
f"changelogs={_changelogs!r}, "
|
|
1099
|
+
f"terminal_routers={_terminal_routers!r}, "
|
|
1100
|
+
f"has_terminal_routers={_has_terminal_routers!r}, "
|
|
1101
|
+
f"terminal_cvm={_terminal_cvm!r}, "
|
|
1102
|
+
f"terminal_manufacturer={_terminal_manufacturer!r}, "
|
|
1103
|
+
f"additional_properties={_additional_properties!r}, "
|
|
1104
|
+
f")"
|
|
1105
|
+
)
|
|
1106
|
+
|
|
1107
|
+
def __str__(self):
|
|
1108
|
+
"""Return a human-readable string representation."""
|
|
1109
|
+
_location_id=(
|
|
1110
|
+
self.location_id
|
|
1111
|
+
if hasattr(self, "location_id")
|
|
1112
|
+
else None
|
|
1113
|
+
)
|
|
1114
|
+
_default_product_transaction_id=(
|
|
1115
|
+
self.default_product_transaction_id
|
|
1116
|
+
if hasattr(self, "default_product_transaction_id")
|
|
1117
|
+
else None
|
|
1118
|
+
)
|
|
1119
|
+
_terminal_application_id=(
|
|
1120
|
+
self.terminal_application_id
|
|
1121
|
+
if hasattr(self, "terminal_application_id")
|
|
1122
|
+
else None
|
|
1123
|
+
)
|
|
1124
|
+
_terminal_cvm_id=(
|
|
1125
|
+
self.terminal_cvm_id
|
|
1126
|
+
if hasattr(self, "terminal_cvm_id")
|
|
1127
|
+
else None
|
|
1128
|
+
)
|
|
1129
|
+
_terminal_manufacturer_code=(
|
|
1130
|
+
self.terminal_manufacturer_code
|
|
1131
|
+
if hasattr(self, "terminal_manufacturer_code")
|
|
1132
|
+
else None
|
|
1133
|
+
)
|
|
1134
|
+
_title=(
|
|
1135
|
+
self.title
|
|
1136
|
+
if hasattr(self, "title")
|
|
1137
|
+
else None
|
|
1138
|
+
)
|
|
1139
|
+
_mac_address=(
|
|
1140
|
+
self.mac_address
|
|
1141
|
+
if hasattr(self, "mac_address")
|
|
1142
|
+
else None
|
|
1143
|
+
)
|
|
1144
|
+
_local_ip_address=(
|
|
1145
|
+
self.local_ip_address
|
|
1146
|
+
if hasattr(self, "local_ip_address")
|
|
1147
|
+
else None
|
|
1148
|
+
)
|
|
1149
|
+
_port=(
|
|
1150
|
+
self.port
|
|
1151
|
+
if hasattr(self, "port")
|
|
1152
|
+
else None
|
|
1153
|
+
)
|
|
1154
|
+
_serial_number=(
|
|
1155
|
+
self.serial_number
|
|
1156
|
+
if hasattr(self, "serial_number")
|
|
1157
|
+
else None
|
|
1158
|
+
)
|
|
1159
|
+
_terminal_number=(
|
|
1160
|
+
self.terminal_number
|
|
1161
|
+
if hasattr(self, "terminal_number")
|
|
1162
|
+
else None
|
|
1163
|
+
)
|
|
1164
|
+
_terminal_timeouts=(
|
|
1165
|
+
self.terminal_timeouts
|
|
1166
|
+
if hasattr(self, "terminal_timeouts")
|
|
1167
|
+
else None
|
|
1168
|
+
)
|
|
1169
|
+
_tip_percents=(
|
|
1170
|
+
self.tip_percents
|
|
1171
|
+
if hasattr(self, "tip_percents")
|
|
1172
|
+
else None
|
|
1173
|
+
)
|
|
1174
|
+
_location_api_id=(
|
|
1175
|
+
self.location_api_id
|
|
1176
|
+
if hasattr(self, "location_api_id")
|
|
1177
|
+
else None
|
|
1178
|
+
)
|
|
1179
|
+
_terminal_api_id=(
|
|
1180
|
+
self.terminal_api_id
|
|
1181
|
+
if hasattr(self, "terminal_api_id")
|
|
1182
|
+
else None
|
|
1183
|
+
)
|
|
1184
|
+
_header_line_1=(
|
|
1185
|
+
self.header_line_1
|
|
1186
|
+
if hasattr(self, "header_line_1")
|
|
1187
|
+
else None
|
|
1188
|
+
)
|
|
1189
|
+
_header_line_2=(
|
|
1190
|
+
self.header_line_2
|
|
1191
|
+
if hasattr(self, "header_line_2")
|
|
1192
|
+
else None
|
|
1193
|
+
)
|
|
1194
|
+
_header_line_3=(
|
|
1195
|
+
self.header_line_3
|
|
1196
|
+
if hasattr(self, "header_line_3")
|
|
1197
|
+
else None
|
|
1198
|
+
)
|
|
1199
|
+
_header_line_4=(
|
|
1200
|
+
self.header_line_4
|
|
1201
|
+
if hasattr(self, "header_line_4")
|
|
1202
|
+
else None
|
|
1203
|
+
)
|
|
1204
|
+
_header_line_5=(
|
|
1205
|
+
self.header_line_5
|
|
1206
|
+
if hasattr(self, "header_line_5")
|
|
1207
|
+
else None
|
|
1208
|
+
)
|
|
1209
|
+
_trailer_line_1=(
|
|
1210
|
+
self.trailer_line_1
|
|
1211
|
+
if hasattr(self, "trailer_line_1")
|
|
1212
|
+
else None
|
|
1213
|
+
)
|
|
1214
|
+
_trailer_line_2=(
|
|
1215
|
+
self.trailer_line_2
|
|
1216
|
+
if hasattr(self, "trailer_line_2")
|
|
1217
|
+
else None
|
|
1218
|
+
)
|
|
1219
|
+
_trailer_line_3=(
|
|
1220
|
+
self.trailer_line_3
|
|
1221
|
+
if hasattr(self, "trailer_line_3")
|
|
1222
|
+
else None
|
|
1223
|
+
)
|
|
1224
|
+
_trailer_line_4=(
|
|
1225
|
+
self.trailer_line_4
|
|
1226
|
+
if hasattr(self, "trailer_line_4")
|
|
1227
|
+
else None
|
|
1228
|
+
)
|
|
1229
|
+
_trailer_line_5=(
|
|
1230
|
+
self.trailer_line_5
|
|
1231
|
+
if hasattr(self, "trailer_line_5")
|
|
1232
|
+
else None
|
|
1233
|
+
)
|
|
1234
|
+
_default_checkin=(
|
|
1235
|
+
self.default_checkin
|
|
1236
|
+
if hasattr(self, "default_checkin")
|
|
1237
|
+
else None
|
|
1238
|
+
)
|
|
1239
|
+
_default_checkout=(
|
|
1240
|
+
self.default_checkout
|
|
1241
|
+
if hasattr(self, "default_checkout")
|
|
1242
|
+
else None
|
|
1243
|
+
)
|
|
1244
|
+
_default_room_rate=(
|
|
1245
|
+
self.default_room_rate
|
|
1246
|
+
if hasattr(self, "default_room_rate")
|
|
1247
|
+
else None
|
|
1248
|
+
)
|
|
1249
|
+
_default_room_number=(
|
|
1250
|
+
self.default_room_number
|
|
1251
|
+
if hasattr(self, "default_room_number")
|
|
1252
|
+
else None
|
|
1253
|
+
)
|
|
1254
|
+
_debit=(
|
|
1255
|
+
self.debit
|
|
1256
|
+
if hasattr(self, "debit")
|
|
1257
|
+
else None
|
|
1258
|
+
)
|
|
1259
|
+
_emv=(
|
|
1260
|
+
self.emv
|
|
1261
|
+
if hasattr(self, "emv")
|
|
1262
|
+
else None
|
|
1263
|
+
)
|
|
1264
|
+
_cashback_enable=(
|
|
1265
|
+
self.cashback_enable
|
|
1266
|
+
if hasattr(self, "cashback_enable")
|
|
1267
|
+
else None
|
|
1268
|
+
)
|
|
1269
|
+
_print_enable=(
|
|
1270
|
+
self.print_enable
|
|
1271
|
+
if hasattr(self, "print_enable")
|
|
1272
|
+
else None
|
|
1273
|
+
)
|
|
1274
|
+
_sig_capture_enable=(
|
|
1275
|
+
self.sig_capture_enable
|
|
1276
|
+
if hasattr(self, "sig_capture_enable")
|
|
1277
|
+
else None
|
|
1278
|
+
)
|
|
1279
|
+
_is_provisioned=(
|
|
1280
|
+
self.is_provisioned
|
|
1281
|
+
if hasattr(self, "is_provisioned")
|
|
1282
|
+
else None
|
|
1283
|
+
)
|
|
1284
|
+
_tip_enable=(
|
|
1285
|
+
self.tip_enable
|
|
1286
|
+
if hasattr(self, "tip_enable")
|
|
1287
|
+
else None
|
|
1288
|
+
)
|
|
1289
|
+
_validated_decryption=(
|
|
1290
|
+
self.validated_decryption
|
|
1291
|
+
if hasattr(self, "validated_decryption")
|
|
1292
|
+
else None
|
|
1293
|
+
)
|
|
1294
|
+
_communication_type=(
|
|
1295
|
+
self.communication_type
|
|
1296
|
+
if hasattr(self, "communication_type")
|
|
1297
|
+
else None
|
|
1298
|
+
)
|
|
1299
|
+
_active=(
|
|
1300
|
+
self.active
|
|
1301
|
+
if hasattr(self, "active")
|
|
1302
|
+
else None
|
|
1303
|
+
)
|
|
1304
|
+
_prompt_manual_entry=(
|
|
1305
|
+
self.prompt_manual_entry
|
|
1306
|
+
if hasattr(self, "prompt_manual_entry")
|
|
1307
|
+
else None
|
|
1308
|
+
)
|
|
1309
|
+
_payment_type_priority=(
|
|
1310
|
+
self.payment_type_priority
|
|
1311
|
+
if hasattr(self, "payment_type_priority")
|
|
1312
|
+
else None
|
|
1313
|
+
)
|
|
1314
|
+
_screen_brightness=(
|
|
1315
|
+
self.screen_brightness
|
|
1316
|
+
if hasattr(self, "screen_brightness")
|
|
1317
|
+
else None
|
|
1318
|
+
)
|
|
1319
|
+
_beep_volume=(
|
|
1320
|
+
self.beep_volume
|
|
1321
|
+
if hasattr(self, "beep_volume")
|
|
1322
|
+
else None
|
|
1323
|
+
)
|
|
1324
|
+
_id=(
|
|
1325
|
+
self.id
|
|
1326
|
+
if hasattr(self, "id")
|
|
1327
|
+
else None
|
|
1328
|
+
)
|
|
1329
|
+
_created_ts=(
|
|
1330
|
+
self.created_ts
|
|
1331
|
+
if hasattr(self, "created_ts")
|
|
1332
|
+
else None
|
|
1333
|
+
)
|
|
1334
|
+
_modified_ts=(
|
|
1335
|
+
self.modified_ts
|
|
1336
|
+
if hasattr(self, "modified_ts")
|
|
1337
|
+
else None
|
|
1338
|
+
)
|
|
1339
|
+
_last_registration_ts=(
|
|
1340
|
+
self.last_registration_ts
|
|
1341
|
+
if hasattr(self, "last_registration_ts")
|
|
1342
|
+
else None
|
|
1343
|
+
)
|
|
1344
|
+
_created_user_id=(
|
|
1345
|
+
self.created_user_id
|
|
1346
|
+
if hasattr(self, "created_user_id")
|
|
1347
|
+
else None
|
|
1348
|
+
)
|
|
1349
|
+
_modified_user_id=(
|
|
1350
|
+
self.modified_user_id
|
|
1351
|
+
if hasattr(self, "modified_user_id")
|
|
1352
|
+
else None
|
|
1353
|
+
)
|
|
1354
|
+
_location=(
|
|
1355
|
+
self.location
|
|
1356
|
+
if hasattr(self, "location")
|
|
1357
|
+
else None
|
|
1358
|
+
)
|
|
1359
|
+
_created_user=(
|
|
1360
|
+
self.created_user
|
|
1361
|
+
if hasattr(self, "created_user")
|
|
1362
|
+
else None
|
|
1363
|
+
)
|
|
1364
|
+
_terminal_application=(
|
|
1365
|
+
self.terminal_application
|
|
1366
|
+
if hasattr(self, "terminal_application")
|
|
1367
|
+
else None
|
|
1368
|
+
)
|
|
1369
|
+
_changelogs=(
|
|
1370
|
+
self.changelogs
|
|
1371
|
+
if hasattr(self, "changelogs")
|
|
1372
|
+
else None
|
|
1373
|
+
)
|
|
1374
|
+
_terminal_routers=(
|
|
1375
|
+
self.terminal_routers
|
|
1376
|
+
if hasattr(self, "terminal_routers")
|
|
1377
|
+
else None
|
|
1378
|
+
)
|
|
1379
|
+
_has_terminal_routers=(
|
|
1380
|
+
self.has_terminal_routers
|
|
1381
|
+
if hasattr(self, "has_terminal_routers")
|
|
1382
|
+
else None
|
|
1383
|
+
)
|
|
1384
|
+
_terminal_cvm=(
|
|
1385
|
+
self.terminal_cvm
|
|
1386
|
+
if hasattr(self, "terminal_cvm")
|
|
1387
|
+
else None
|
|
1388
|
+
)
|
|
1389
|
+
_terminal_manufacturer=(
|
|
1390
|
+
self.terminal_manufacturer
|
|
1391
|
+
if hasattr(self, "terminal_manufacturer")
|
|
1392
|
+
else None
|
|
1393
|
+
)
|
|
1394
|
+
_additional_properties=self.additional_properties
|
|
1395
|
+
return (
|
|
1396
|
+
f"{self.__class__.__name__}("
|
|
1397
|
+
f"location_id={_location_id!s}, "
|
|
1398
|
+
f"default_product_transaction_id={_default_product_transaction_id!s}, "
|
|
1399
|
+
f"terminal_application_id={_terminal_application_id!s}, "
|
|
1400
|
+
f"terminal_cvm_id={_terminal_cvm_id!s}, "
|
|
1401
|
+
f"terminal_manufacturer_code={_terminal_manufacturer_code!s}, "
|
|
1402
|
+
f"title={_title!s}, "
|
|
1403
|
+
f"mac_address={_mac_address!s}, "
|
|
1404
|
+
f"local_ip_address={_local_ip_address!s}, "
|
|
1405
|
+
f"port={_port!s}, "
|
|
1406
|
+
f"serial_number={_serial_number!s}, "
|
|
1407
|
+
f"terminal_number={_terminal_number!s}, "
|
|
1408
|
+
f"terminal_timeouts={_terminal_timeouts!s}, "
|
|
1409
|
+
f"tip_percents={_tip_percents!s}, "
|
|
1410
|
+
f"location_api_id={_location_api_id!s}, "
|
|
1411
|
+
f"terminal_api_id={_terminal_api_id!s}, "
|
|
1412
|
+
f"header_line_1={_header_line_1!s}, "
|
|
1413
|
+
f"header_line_2={_header_line_2!s}, "
|
|
1414
|
+
f"header_line_3={_header_line_3!s}, "
|
|
1415
|
+
f"header_line_4={_header_line_4!s}, "
|
|
1416
|
+
f"header_line_5={_header_line_5!s}, "
|
|
1417
|
+
f"trailer_line_1={_trailer_line_1!s}, "
|
|
1418
|
+
f"trailer_line_2={_trailer_line_2!s}, "
|
|
1419
|
+
f"trailer_line_3={_trailer_line_3!s}, "
|
|
1420
|
+
f"trailer_line_4={_trailer_line_4!s}, "
|
|
1421
|
+
f"trailer_line_5={_trailer_line_5!s}, "
|
|
1422
|
+
f"default_checkin={_default_checkin!s}, "
|
|
1423
|
+
f"default_checkout={_default_checkout!s}, "
|
|
1424
|
+
f"default_room_rate={_default_room_rate!s}, "
|
|
1425
|
+
f"default_room_number={_default_room_number!s}, "
|
|
1426
|
+
f"debit={_debit!s}, "
|
|
1427
|
+
f"emv={_emv!s}, "
|
|
1428
|
+
f"cashback_enable={_cashback_enable!s}, "
|
|
1429
|
+
f"print_enable={_print_enable!s}, "
|
|
1430
|
+
f"sig_capture_enable={_sig_capture_enable!s}, "
|
|
1431
|
+
f"is_provisioned={_is_provisioned!s}, "
|
|
1432
|
+
f"tip_enable={_tip_enable!s}, "
|
|
1433
|
+
f"validated_decryption={_validated_decryption!s}, "
|
|
1434
|
+
f"communication_type={_communication_type!s}, "
|
|
1435
|
+
f"active={_active!s}, "
|
|
1436
|
+
f"prompt_manual_entry={_prompt_manual_entry!s}, "
|
|
1437
|
+
f"payment_type_priority={_payment_type_priority!s}, "
|
|
1438
|
+
f"screen_brightness={_screen_brightness!s}, "
|
|
1439
|
+
f"beep_volume={_beep_volume!s}, "
|
|
1440
|
+
f"id={_id!s}, "
|
|
1441
|
+
f"created_ts={_created_ts!s}, "
|
|
1442
|
+
f"modified_ts={_modified_ts!s}, "
|
|
1443
|
+
f"last_registration_ts={_last_registration_ts!s}, "
|
|
1444
|
+
f"created_user_id={_created_user_id!s}, "
|
|
1445
|
+
f"modified_user_id={_modified_user_id!s}, "
|
|
1446
|
+
f"location={_location!s}, "
|
|
1447
|
+
f"created_user={_created_user!s}, "
|
|
1448
|
+
f"terminal_application={_terminal_application!s}, "
|
|
1449
|
+
f"changelogs={_changelogs!s}, "
|
|
1450
|
+
f"terminal_routers={_terminal_routers!s}, "
|
|
1451
|
+
f"has_terminal_routers={_has_terminal_routers!s}, "
|
|
1452
|
+
f"terminal_cvm={_terminal_cvm!s}, "
|
|
1453
|
+
f"terminal_manufacturer={_terminal_manufacturer!s}, "
|
|
1454
|
+
f"additional_properties={_additional_properties!s}, "
|
|
1455
|
+
f")"
|
|
1456
|
+
)
|