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,1197 @@
|
|
|
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.address_2 import Address2
|
|
9
|
+
from fortisapi.models.ui_prefs import UiPrefs
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class CreatedUser(object):
|
|
13
|
+
"""Implementation of the 'CreatedUser' model.
|
|
14
|
+
|
|
15
|
+
User Information on `expand`
|
|
16
|
+
|
|
17
|
+
Attributes:
|
|
18
|
+
account_number (str): Account Number
|
|
19
|
+
branding_domain_url (str): Branding Domain Url
|
|
20
|
+
cell_phone (str): Cell Phone
|
|
21
|
+
company_name (str): Company Name
|
|
22
|
+
contact_id (str): Contact
|
|
23
|
+
date_of_birth (str): Date Of Birth
|
|
24
|
+
domain_id (str): Domain
|
|
25
|
+
email (str): Email
|
|
26
|
+
email_trx_receipt (bool): Email Trx Receipt
|
|
27
|
+
home_phone (str): Home Phone
|
|
28
|
+
first_name (str): First Name
|
|
29
|
+
last_name (str): Last Name
|
|
30
|
+
locale (str): Locale
|
|
31
|
+
office_phone (str): Office Phone
|
|
32
|
+
office_ext_phone (str): Office Ext Phone
|
|
33
|
+
primary_location_id (str): Primary Location ID
|
|
34
|
+
requires_new_password (str): Requires New Password
|
|
35
|
+
terms_condition_code (str): Terms Condition (This field is required when
|
|
36
|
+
updating your own password).
|
|
37
|
+
tz (str): Time zone
|
|
38
|
+
ui_prefs (UiPrefs): Ui Prefs
|
|
39
|
+
username (str): Username
|
|
40
|
+
user_api_key (str): User Api Key
|
|
41
|
+
user_hash_key (str): User Hash Key
|
|
42
|
+
user_type_code (UserTypeCodeEnum): User Type
|
|
43
|
+
password (str): Password
|
|
44
|
+
zip (str): Zip
|
|
45
|
+
location_id (str): Location ID
|
|
46
|
+
contact_api_id (str): ContactApi Id
|
|
47
|
+
primary_location_api_id (str): Primary LocationApi ID
|
|
48
|
+
status_code (StatusCodeEnum): Status Code
|
|
49
|
+
api_only (bool): API Only
|
|
50
|
+
is_invitation (bool): Is Invitation
|
|
51
|
+
address (Address2): Address
|
|
52
|
+
id (str): User ID
|
|
53
|
+
status (bool): Status
|
|
54
|
+
login_attempts (int): Login Attempts
|
|
55
|
+
last_login_ts (int): Last Login
|
|
56
|
+
created_ts (int): Created Time Stamp
|
|
57
|
+
modified_ts (int): Modified Time Stamp
|
|
58
|
+
created_user_id (str): Created User
|
|
59
|
+
terms_accepted_ts (int): Terms Accepted
|
|
60
|
+
terms_agree_ip (str): Terms Agree Ip
|
|
61
|
+
current_date_time (str): Current Date Time
|
|
62
|
+
current_login_ip (str): Current Login Ip
|
|
63
|
+
current_login (int): Current Login Timestamp
|
|
64
|
+
sftp_access (bool): SFTP Access
|
|
65
|
+
log_api_response_body_ts (int): Log Api Response Body
|
|
66
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
67
|
+
model.
|
|
68
|
+
|
|
69
|
+
"""
|
|
70
|
+
|
|
71
|
+
# Create a mapping from Model property names to API property names
|
|
72
|
+
_names = {
|
|
73
|
+
"account_number": "account_number",
|
|
74
|
+
"branding_domain_url": "branding_domain_url",
|
|
75
|
+
"cell_phone": "cell_phone",
|
|
76
|
+
"company_name": "company_name",
|
|
77
|
+
"contact_id": "contact_id",
|
|
78
|
+
"date_of_birth": "date_of_birth",
|
|
79
|
+
"domain_id": "domain_id",
|
|
80
|
+
"email": "email",
|
|
81
|
+
"email_trx_receipt": "email_trx_receipt",
|
|
82
|
+
"home_phone": "home_phone",
|
|
83
|
+
"first_name": "first_name",
|
|
84
|
+
"last_name": "last_name",
|
|
85
|
+
"locale": "locale",
|
|
86
|
+
"office_phone": "office_phone",
|
|
87
|
+
"office_ext_phone": "office_ext_phone",
|
|
88
|
+
"primary_location_id": "primary_location_id",
|
|
89
|
+
"requires_new_password": "requires_new_password",
|
|
90
|
+
"terms_condition_code": "terms_condition_code",
|
|
91
|
+
"tz": "tz",
|
|
92
|
+
"ui_prefs": "ui_prefs",
|
|
93
|
+
"username": "username",
|
|
94
|
+
"user_api_key": "user_api_key",
|
|
95
|
+
"user_hash_key": "user_hash_key",
|
|
96
|
+
"user_type_code": "user_type_code",
|
|
97
|
+
"password": "password",
|
|
98
|
+
"zip": "zip",
|
|
99
|
+
"location_id": "location_id",
|
|
100
|
+
"contact_api_id": "contact_api_id",
|
|
101
|
+
"primary_location_api_id": "primary_location_api_id",
|
|
102
|
+
"status_code": "status_code",
|
|
103
|
+
"api_only": "api_only",
|
|
104
|
+
"is_invitation": "is_invitation",
|
|
105
|
+
"address": "address",
|
|
106
|
+
"id": "id",
|
|
107
|
+
"status": "status",
|
|
108
|
+
"login_attempts": "login_attempts",
|
|
109
|
+
"last_login_ts": "last_login_ts",
|
|
110
|
+
"created_ts": "created_ts",
|
|
111
|
+
"modified_ts": "modified_ts",
|
|
112
|
+
"created_user_id": "created_user_id",
|
|
113
|
+
"terms_accepted_ts": "terms_accepted_ts",
|
|
114
|
+
"terms_agree_ip": "terms_agree_ip",
|
|
115
|
+
"current_date_time": "current_date_time",
|
|
116
|
+
"current_login_ip": "current_login_ip",
|
|
117
|
+
"current_login": "current_login",
|
|
118
|
+
"sftp_access": "sftp_access",
|
|
119
|
+
"log_api_response_body_ts": "log_api_response_body_ts",
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
_optionals = [
|
|
123
|
+
"account_number",
|
|
124
|
+
"branding_domain_url",
|
|
125
|
+
"cell_phone",
|
|
126
|
+
"company_name",
|
|
127
|
+
"contact_id",
|
|
128
|
+
"date_of_birth",
|
|
129
|
+
"domain_id",
|
|
130
|
+
"email",
|
|
131
|
+
"email_trx_receipt",
|
|
132
|
+
"home_phone",
|
|
133
|
+
"first_name",
|
|
134
|
+
"last_name",
|
|
135
|
+
"locale",
|
|
136
|
+
"office_phone",
|
|
137
|
+
"office_ext_phone",
|
|
138
|
+
"primary_location_id",
|
|
139
|
+
"requires_new_password",
|
|
140
|
+
"terms_condition_code",
|
|
141
|
+
"tz",
|
|
142
|
+
"ui_prefs",
|
|
143
|
+
"username",
|
|
144
|
+
"user_api_key",
|
|
145
|
+
"user_hash_key",
|
|
146
|
+
"user_type_code",
|
|
147
|
+
"password",
|
|
148
|
+
"zip",
|
|
149
|
+
"location_id",
|
|
150
|
+
"contact_api_id",
|
|
151
|
+
"primary_location_api_id",
|
|
152
|
+
"status_code",
|
|
153
|
+
"api_only",
|
|
154
|
+
"is_invitation",
|
|
155
|
+
"address",
|
|
156
|
+
"id",
|
|
157
|
+
"status",
|
|
158
|
+
"login_attempts",
|
|
159
|
+
"last_login_ts",
|
|
160
|
+
"created_ts",
|
|
161
|
+
"modified_ts",
|
|
162
|
+
"created_user_id",
|
|
163
|
+
"terms_accepted_ts",
|
|
164
|
+
"terms_agree_ip",
|
|
165
|
+
"current_date_time",
|
|
166
|
+
"current_login_ip",
|
|
167
|
+
"current_login",
|
|
168
|
+
"sftp_access",
|
|
169
|
+
"log_api_response_body_ts",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
_nullables = [
|
|
173
|
+
"account_number",
|
|
174
|
+
"branding_domain_url",
|
|
175
|
+
"cell_phone",
|
|
176
|
+
"company_name",
|
|
177
|
+
"contact_id",
|
|
178
|
+
"date_of_birth",
|
|
179
|
+
"domain_id",
|
|
180
|
+
"home_phone",
|
|
181
|
+
"first_name",
|
|
182
|
+
"locale",
|
|
183
|
+
"office_phone",
|
|
184
|
+
"office_ext_phone",
|
|
185
|
+
"requires_new_password",
|
|
186
|
+
"terms_condition_code",
|
|
187
|
+
"user_api_key",
|
|
188
|
+
"user_hash_key",
|
|
189
|
+
"password",
|
|
190
|
+
"zip",
|
|
191
|
+
"location_id",
|
|
192
|
+
"contact_api_id",
|
|
193
|
+
"primary_location_api_id",
|
|
194
|
+
"status_code",
|
|
195
|
+
"terms_accepted_ts",
|
|
196
|
+
"terms_agree_ip",
|
|
197
|
+
"current_login_ip",
|
|
198
|
+
"current_login",
|
|
199
|
+
"log_api_response_body_ts",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
def __init__(
|
|
203
|
+
self,
|
|
204
|
+
account_number=APIHelper.SKIP,
|
|
205
|
+
branding_domain_url=APIHelper.SKIP,
|
|
206
|
+
cell_phone=APIHelper.SKIP,
|
|
207
|
+
company_name=APIHelper.SKIP,
|
|
208
|
+
contact_id=APIHelper.SKIP,
|
|
209
|
+
date_of_birth=APIHelper.SKIP,
|
|
210
|
+
domain_id=APIHelper.SKIP,
|
|
211
|
+
email=APIHelper.SKIP,
|
|
212
|
+
email_trx_receipt=APIHelper.SKIP,
|
|
213
|
+
home_phone=APIHelper.SKIP,
|
|
214
|
+
first_name=APIHelper.SKIP,
|
|
215
|
+
last_name=APIHelper.SKIP,
|
|
216
|
+
locale=APIHelper.SKIP,
|
|
217
|
+
office_phone=APIHelper.SKIP,
|
|
218
|
+
office_ext_phone=APIHelper.SKIP,
|
|
219
|
+
primary_location_id=APIHelper.SKIP,
|
|
220
|
+
requires_new_password=APIHelper.SKIP,
|
|
221
|
+
terms_condition_code=APIHelper.SKIP,
|
|
222
|
+
tz=APIHelper.SKIP,
|
|
223
|
+
ui_prefs=APIHelper.SKIP,
|
|
224
|
+
username=APIHelper.SKIP,
|
|
225
|
+
user_api_key=APIHelper.SKIP,
|
|
226
|
+
user_hash_key=APIHelper.SKIP,
|
|
227
|
+
user_type_code=APIHelper.SKIP,
|
|
228
|
+
password=APIHelper.SKIP,
|
|
229
|
+
zip=APIHelper.SKIP,
|
|
230
|
+
location_id=APIHelper.SKIP,
|
|
231
|
+
contact_api_id=APIHelper.SKIP,
|
|
232
|
+
primary_location_api_id=APIHelper.SKIP,
|
|
233
|
+
status_code=APIHelper.SKIP,
|
|
234
|
+
api_only=APIHelper.SKIP,
|
|
235
|
+
is_invitation=APIHelper.SKIP,
|
|
236
|
+
address=APIHelper.SKIP,
|
|
237
|
+
id=APIHelper.SKIP,
|
|
238
|
+
status=APIHelper.SKIP,
|
|
239
|
+
login_attempts=APIHelper.SKIP,
|
|
240
|
+
last_login_ts=APIHelper.SKIP,
|
|
241
|
+
created_ts=APIHelper.SKIP,
|
|
242
|
+
modified_ts=APIHelper.SKIP,
|
|
243
|
+
created_user_id=APIHelper.SKIP,
|
|
244
|
+
terms_accepted_ts=APIHelper.SKIP,
|
|
245
|
+
terms_agree_ip=APIHelper.SKIP,
|
|
246
|
+
current_date_time=APIHelper.SKIP,
|
|
247
|
+
current_login_ip=APIHelper.SKIP,
|
|
248
|
+
current_login=APIHelper.SKIP,
|
|
249
|
+
sftp_access=APIHelper.SKIP,
|
|
250
|
+
log_api_response_body_ts=APIHelper.SKIP,
|
|
251
|
+
additional_properties=None):
|
|
252
|
+
"""Initialize a CreatedUser instance."""
|
|
253
|
+
# Initialize members of the class
|
|
254
|
+
if account_number is not APIHelper.SKIP:
|
|
255
|
+
self.account_number = account_number
|
|
256
|
+
if branding_domain_url is not APIHelper.SKIP:
|
|
257
|
+
self.branding_domain_url = branding_domain_url
|
|
258
|
+
if cell_phone is not APIHelper.SKIP:
|
|
259
|
+
self.cell_phone = cell_phone
|
|
260
|
+
if company_name is not APIHelper.SKIP:
|
|
261
|
+
self.company_name = company_name
|
|
262
|
+
if contact_id is not APIHelper.SKIP:
|
|
263
|
+
self.contact_id = contact_id
|
|
264
|
+
if date_of_birth is not APIHelper.SKIP:
|
|
265
|
+
self.date_of_birth = date_of_birth
|
|
266
|
+
if domain_id is not APIHelper.SKIP:
|
|
267
|
+
self.domain_id = domain_id
|
|
268
|
+
if email is not APIHelper.SKIP:
|
|
269
|
+
self.email = email
|
|
270
|
+
if email_trx_receipt is not APIHelper.SKIP:
|
|
271
|
+
self.email_trx_receipt = email_trx_receipt
|
|
272
|
+
if home_phone is not APIHelper.SKIP:
|
|
273
|
+
self.home_phone = home_phone
|
|
274
|
+
if first_name is not APIHelper.SKIP:
|
|
275
|
+
self.first_name = first_name
|
|
276
|
+
if last_name is not APIHelper.SKIP:
|
|
277
|
+
self.last_name = last_name
|
|
278
|
+
if locale is not APIHelper.SKIP:
|
|
279
|
+
self.locale = locale
|
|
280
|
+
if office_phone is not APIHelper.SKIP:
|
|
281
|
+
self.office_phone = office_phone
|
|
282
|
+
if office_ext_phone is not APIHelper.SKIP:
|
|
283
|
+
self.office_ext_phone = office_ext_phone
|
|
284
|
+
if primary_location_id is not APIHelper.SKIP:
|
|
285
|
+
self.primary_location_id = primary_location_id
|
|
286
|
+
if requires_new_password is not APIHelper.SKIP:
|
|
287
|
+
self.requires_new_password = requires_new_password
|
|
288
|
+
if terms_condition_code is not APIHelper.SKIP:
|
|
289
|
+
self.terms_condition_code = terms_condition_code
|
|
290
|
+
if tz is not APIHelper.SKIP:
|
|
291
|
+
self.tz = tz
|
|
292
|
+
if ui_prefs is not APIHelper.SKIP:
|
|
293
|
+
self.ui_prefs = ui_prefs
|
|
294
|
+
if username is not APIHelper.SKIP:
|
|
295
|
+
self.username = username
|
|
296
|
+
if user_api_key is not APIHelper.SKIP:
|
|
297
|
+
self.user_api_key = user_api_key
|
|
298
|
+
if user_hash_key is not APIHelper.SKIP:
|
|
299
|
+
self.user_hash_key = user_hash_key
|
|
300
|
+
if user_type_code is not APIHelper.SKIP:
|
|
301
|
+
self.user_type_code = user_type_code
|
|
302
|
+
if password is not APIHelper.SKIP:
|
|
303
|
+
self.password = password
|
|
304
|
+
if zip is not APIHelper.SKIP:
|
|
305
|
+
self.zip = zip
|
|
306
|
+
if location_id is not APIHelper.SKIP:
|
|
307
|
+
self.location_id = location_id
|
|
308
|
+
if contact_api_id is not APIHelper.SKIP:
|
|
309
|
+
self.contact_api_id = contact_api_id
|
|
310
|
+
if primary_location_api_id is not APIHelper.SKIP:
|
|
311
|
+
self.primary_location_api_id = primary_location_api_id
|
|
312
|
+
if status_code is not APIHelper.SKIP:
|
|
313
|
+
self.status_code = status_code
|
|
314
|
+
if api_only is not APIHelper.SKIP:
|
|
315
|
+
self.api_only = api_only
|
|
316
|
+
if is_invitation is not APIHelper.SKIP:
|
|
317
|
+
self.is_invitation = is_invitation
|
|
318
|
+
if address is not APIHelper.SKIP:
|
|
319
|
+
self.address = address
|
|
320
|
+
if id is not APIHelper.SKIP:
|
|
321
|
+
self.id = id
|
|
322
|
+
if status is not APIHelper.SKIP:
|
|
323
|
+
self.status = status
|
|
324
|
+
if login_attempts is not APIHelper.SKIP:
|
|
325
|
+
self.login_attempts = login_attempts
|
|
326
|
+
if last_login_ts is not APIHelper.SKIP:
|
|
327
|
+
self.last_login_ts = last_login_ts
|
|
328
|
+
if created_ts is not APIHelper.SKIP:
|
|
329
|
+
self.created_ts = created_ts
|
|
330
|
+
if modified_ts is not APIHelper.SKIP:
|
|
331
|
+
self.modified_ts = modified_ts
|
|
332
|
+
if created_user_id is not APIHelper.SKIP:
|
|
333
|
+
self.created_user_id = created_user_id
|
|
334
|
+
if terms_accepted_ts is not APIHelper.SKIP:
|
|
335
|
+
self.terms_accepted_ts = terms_accepted_ts
|
|
336
|
+
if terms_agree_ip is not APIHelper.SKIP:
|
|
337
|
+
self.terms_agree_ip = terms_agree_ip
|
|
338
|
+
if current_date_time is not APIHelper.SKIP:
|
|
339
|
+
self.current_date_time = current_date_time
|
|
340
|
+
if current_login_ip is not APIHelper.SKIP:
|
|
341
|
+
self.current_login_ip = current_login_ip
|
|
342
|
+
if current_login is not APIHelper.SKIP:
|
|
343
|
+
self.current_login = current_login
|
|
344
|
+
if sftp_access is not APIHelper.SKIP:
|
|
345
|
+
self.sftp_access = sftp_access
|
|
346
|
+
if log_api_response_body_ts is not APIHelper.SKIP:
|
|
347
|
+
self.log_api_response_body_ts = log_api_response_body_ts
|
|
348
|
+
|
|
349
|
+
# Add additional model properties to the instance
|
|
350
|
+
if additional_properties is None:
|
|
351
|
+
additional_properties = {}
|
|
352
|
+
self.additional_properties = additional_properties
|
|
353
|
+
|
|
354
|
+
@classmethod
|
|
355
|
+
def from_dictionary(cls,
|
|
356
|
+
dictionary):
|
|
357
|
+
"""Create an instance of this model from a dictionary
|
|
358
|
+
|
|
359
|
+
Args:
|
|
360
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
361
|
+
as obtained from the deserialization of the server's response. The
|
|
362
|
+
keys MUST match property names in the API description.
|
|
363
|
+
|
|
364
|
+
Returns:
|
|
365
|
+
object: An instance of this structure class.
|
|
366
|
+
|
|
367
|
+
"""
|
|
368
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
369
|
+
return None
|
|
370
|
+
|
|
371
|
+
# Extract variables from the dictionary
|
|
372
|
+
account_number =\
|
|
373
|
+
dictionary.get("account_number")\
|
|
374
|
+
if "account_number" in dictionary.keys()\
|
|
375
|
+
else APIHelper.SKIP
|
|
376
|
+
branding_domain_url =\
|
|
377
|
+
dictionary.get("branding_domain_url")\
|
|
378
|
+
if "branding_domain_url" in dictionary.keys()\
|
|
379
|
+
else APIHelper.SKIP
|
|
380
|
+
cell_phone =\
|
|
381
|
+
dictionary.get("cell_phone")\
|
|
382
|
+
if "cell_phone" in dictionary.keys()\
|
|
383
|
+
else APIHelper.SKIP
|
|
384
|
+
company_name =\
|
|
385
|
+
dictionary.get("company_name")\
|
|
386
|
+
if "company_name" in dictionary.keys()\
|
|
387
|
+
else APIHelper.SKIP
|
|
388
|
+
contact_id =\
|
|
389
|
+
dictionary.get("contact_id")\
|
|
390
|
+
if "contact_id" in dictionary.keys()\
|
|
391
|
+
else APIHelper.SKIP
|
|
392
|
+
date_of_birth =\
|
|
393
|
+
dictionary.get("date_of_birth")\
|
|
394
|
+
if "date_of_birth" in dictionary.keys()\
|
|
395
|
+
else APIHelper.SKIP
|
|
396
|
+
domain_id =\
|
|
397
|
+
dictionary.get("domain_id")\
|
|
398
|
+
if "domain_id" in dictionary.keys()\
|
|
399
|
+
else APIHelper.SKIP
|
|
400
|
+
email =\
|
|
401
|
+
dictionary.get("email")\
|
|
402
|
+
if dictionary.get("email")\
|
|
403
|
+
else APIHelper.SKIP
|
|
404
|
+
email_trx_receipt =\
|
|
405
|
+
dictionary.get("email_trx_receipt")\
|
|
406
|
+
if "email_trx_receipt" in dictionary.keys()\
|
|
407
|
+
else APIHelper.SKIP
|
|
408
|
+
home_phone =\
|
|
409
|
+
dictionary.get("home_phone")\
|
|
410
|
+
if "home_phone" in dictionary.keys()\
|
|
411
|
+
else APIHelper.SKIP
|
|
412
|
+
first_name =\
|
|
413
|
+
dictionary.get("first_name")\
|
|
414
|
+
if "first_name" in dictionary.keys()\
|
|
415
|
+
else APIHelper.SKIP
|
|
416
|
+
last_name =\
|
|
417
|
+
dictionary.get("last_name")\
|
|
418
|
+
if dictionary.get("last_name")\
|
|
419
|
+
else APIHelper.SKIP
|
|
420
|
+
locale =\
|
|
421
|
+
dictionary.get("locale")\
|
|
422
|
+
if "locale" in dictionary.keys()\
|
|
423
|
+
else APIHelper.SKIP
|
|
424
|
+
office_phone =\
|
|
425
|
+
dictionary.get("office_phone")\
|
|
426
|
+
if "office_phone" in dictionary.keys()\
|
|
427
|
+
else APIHelper.SKIP
|
|
428
|
+
office_ext_phone =\
|
|
429
|
+
dictionary.get("office_ext_phone")\
|
|
430
|
+
if "office_ext_phone" in dictionary.keys()\
|
|
431
|
+
else APIHelper.SKIP
|
|
432
|
+
primary_location_id =\
|
|
433
|
+
dictionary.get("primary_location_id")\
|
|
434
|
+
if dictionary.get("primary_location_id")\
|
|
435
|
+
else APIHelper.SKIP
|
|
436
|
+
requires_new_password =\
|
|
437
|
+
dictionary.get("requires_new_password")\
|
|
438
|
+
if "requires_new_password" in dictionary.keys()\
|
|
439
|
+
else APIHelper.SKIP
|
|
440
|
+
terms_condition_code =\
|
|
441
|
+
dictionary.get("terms_condition_code")\
|
|
442
|
+
if "terms_condition_code" in dictionary.keys()\
|
|
443
|
+
else APIHelper.SKIP
|
|
444
|
+
tz =\
|
|
445
|
+
dictionary.get("tz")\
|
|
446
|
+
if dictionary.get("tz")\
|
|
447
|
+
else APIHelper.SKIP
|
|
448
|
+
ui_prefs =\
|
|
449
|
+
UiPrefs.from_dictionary(
|
|
450
|
+
dictionary.get("ui_prefs"))\
|
|
451
|
+
if "ui_prefs" in dictionary.keys()\
|
|
452
|
+
else APIHelper.SKIP
|
|
453
|
+
username =\
|
|
454
|
+
dictionary.get("username")\
|
|
455
|
+
if dictionary.get("username")\
|
|
456
|
+
else APIHelper.SKIP
|
|
457
|
+
user_api_key =\
|
|
458
|
+
dictionary.get("user_api_key")\
|
|
459
|
+
if "user_api_key" in dictionary.keys()\
|
|
460
|
+
else APIHelper.SKIP
|
|
461
|
+
user_hash_key =\
|
|
462
|
+
dictionary.get("user_hash_key")\
|
|
463
|
+
if "user_hash_key" in dictionary.keys()\
|
|
464
|
+
else APIHelper.SKIP
|
|
465
|
+
user_type_code =\
|
|
466
|
+
dictionary.get("user_type_code")\
|
|
467
|
+
if dictionary.get("user_type_code")\
|
|
468
|
+
else APIHelper.SKIP
|
|
469
|
+
password =\
|
|
470
|
+
dictionary.get("password")\
|
|
471
|
+
if "password" in dictionary.keys()\
|
|
472
|
+
else APIHelper.SKIP
|
|
473
|
+
zip =\
|
|
474
|
+
dictionary.get("zip")\
|
|
475
|
+
if "zip" in dictionary.keys()\
|
|
476
|
+
else APIHelper.SKIP
|
|
477
|
+
location_id =\
|
|
478
|
+
dictionary.get("location_id")\
|
|
479
|
+
if "location_id" in dictionary.keys()\
|
|
480
|
+
else APIHelper.SKIP
|
|
481
|
+
contact_api_id =\
|
|
482
|
+
dictionary.get("contact_api_id")\
|
|
483
|
+
if "contact_api_id" in dictionary.keys()\
|
|
484
|
+
else APIHelper.SKIP
|
|
485
|
+
primary_location_api_id =\
|
|
486
|
+
dictionary.get("primary_location_api_id")\
|
|
487
|
+
if "primary_location_api_id" in dictionary.keys()\
|
|
488
|
+
else APIHelper.SKIP
|
|
489
|
+
status_code =\
|
|
490
|
+
dictionary.get("status_code")\
|
|
491
|
+
if "status_code" in dictionary.keys()\
|
|
492
|
+
else APIHelper.SKIP
|
|
493
|
+
api_only =\
|
|
494
|
+
dictionary.get("api_only")\
|
|
495
|
+
if "api_only" in dictionary.keys()\
|
|
496
|
+
else APIHelper.SKIP
|
|
497
|
+
is_invitation =\
|
|
498
|
+
dictionary.get("is_invitation")\
|
|
499
|
+
if "is_invitation" in dictionary.keys()\
|
|
500
|
+
else APIHelper.SKIP
|
|
501
|
+
address =\
|
|
502
|
+
Address2.from_dictionary(
|
|
503
|
+
dictionary.get("address"))\
|
|
504
|
+
if "address" in dictionary.keys()\
|
|
505
|
+
else APIHelper.SKIP
|
|
506
|
+
id =\
|
|
507
|
+
dictionary.get("id")\
|
|
508
|
+
if dictionary.get("id")\
|
|
509
|
+
else APIHelper.SKIP
|
|
510
|
+
status =\
|
|
511
|
+
dictionary.get("status")\
|
|
512
|
+
if "status" in dictionary.keys()\
|
|
513
|
+
else APIHelper.SKIP
|
|
514
|
+
login_attempts =\
|
|
515
|
+
dictionary.get("login_attempts")\
|
|
516
|
+
if dictionary.get("login_attempts")\
|
|
517
|
+
else APIHelper.SKIP
|
|
518
|
+
last_login_ts =\
|
|
519
|
+
dictionary.get("last_login_ts")\
|
|
520
|
+
if dictionary.get("last_login_ts")\
|
|
521
|
+
else APIHelper.SKIP
|
|
522
|
+
created_ts =\
|
|
523
|
+
dictionary.get("created_ts")\
|
|
524
|
+
if dictionary.get("created_ts")\
|
|
525
|
+
else APIHelper.SKIP
|
|
526
|
+
modified_ts =\
|
|
527
|
+
dictionary.get("modified_ts")\
|
|
528
|
+
if dictionary.get("modified_ts")\
|
|
529
|
+
else APIHelper.SKIP
|
|
530
|
+
created_user_id =\
|
|
531
|
+
dictionary.get("created_user_id")\
|
|
532
|
+
if dictionary.get("created_user_id")\
|
|
533
|
+
else APIHelper.SKIP
|
|
534
|
+
terms_accepted_ts =\
|
|
535
|
+
dictionary.get("terms_accepted_ts")\
|
|
536
|
+
if "terms_accepted_ts" in dictionary.keys()\
|
|
537
|
+
else APIHelper.SKIP
|
|
538
|
+
terms_agree_ip =\
|
|
539
|
+
dictionary.get("terms_agree_ip")\
|
|
540
|
+
if "terms_agree_ip" in dictionary.keys()\
|
|
541
|
+
else APIHelper.SKIP
|
|
542
|
+
current_date_time =\
|
|
543
|
+
dictionary.get("current_date_time")\
|
|
544
|
+
if dictionary.get("current_date_time")\
|
|
545
|
+
else APIHelper.SKIP
|
|
546
|
+
current_login_ip =\
|
|
547
|
+
dictionary.get("current_login_ip")\
|
|
548
|
+
if "current_login_ip" in dictionary.keys()\
|
|
549
|
+
else APIHelper.SKIP
|
|
550
|
+
current_login =\
|
|
551
|
+
dictionary.get("current_login")\
|
|
552
|
+
if "current_login" in dictionary.keys()\
|
|
553
|
+
else APIHelper.SKIP
|
|
554
|
+
sftp_access =\
|
|
555
|
+
dictionary.get("sftp_access")\
|
|
556
|
+
if "sftp_access" in dictionary.keys()\
|
|
557
|
+
else APIHelper.SKIP
|
|
558
|
+
log_api_response_body_ts =\
|
|
559
|
+
dictionary.get("log_api_response_body_ts")\
|
|
560
|
+
if "log_api_response_body_ts" in dictionary.keys()\
|
|
561
|
+
else APIHelper.SKIP
|
|
562
|
+
|
|
563
|
+
# Clean out expected properties from dictionary
|
|
564
|
+
additional_properties =\
|
|
565
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
566
|
+
|
|
567
|
+
# Return an object of this model
|
|
568
|
+
return cls(account_number,
|
|
569
|
+
branding_domain_url,
|
|
570
|
+
cell_phone,
|
|
571
|
+
company_name,
|
|
572
|
+
contact_id,
|
|
573
|
+
date_of_birth,
|
|
574
|
+
domain_id,
|
|
575
|
+
email,
|
|
576
|
+
email_trx_receipt,
|
|
577
|
+
home_phone,
|
|
578
|
+
first_name,
|
|
579
|
+
last_name,
|
|
580
|
+
locale,
|
|
581
|
+
office_phone,
|
|
582
|
+
office_ext_phone,
|
|
583
|
+
primary_location_id,
|
|
584
|
+
requires_new_password,
|
|
585
|
+
terms_condition_code,
|
|
586
|
+
tz,
|
|
587
|
+
ui_prefs,
|
|
588
|
+
username,
|
|
589
|
+
user_api_key,
|
|
590
|
+
user_hash_key,
|
|
591
|
+
user_type_code,
|
|
592
|
+
password,
|
|
593
|
+
zip,
|
|
594
|
+
location_id,
|
|
595
|
+
contact_api_id,
|
|
596
|
+
primary_location_api_id,
|
|
597
|
+
status_code,
|
|
598
|
+
api_only,
|
|
599
|
+
is_invitation,
|
|
600
|
+
address,
|
|
601
|
+
id,
|
|
602
|
+
status,
|
|
603
|
+
login_attempts,
|
|
604
|
+
last_login_ts,
|
|
605
|
+
created_ts,
|
|
606
|
+
modified_ts,
|
|
607
|
+
created_user_id,
|
|
608
|
+
terms_accepted_ts,
|
|
609
|
+
terms_agree_ip,
|
|
610
|
+
current_date_time,
|
|
611
|
+
current_login_ip,
|
|
612
|
+
current_login,
|
|
613
|
+
sftp_access,
|
|
614
|
+
log_api_response_body_ts,
|
|
615
|
+
additional_properties)
|
|
616
|
+
|
|
617
|
+
def __repr__(self):
|
|
618
|
+
"""Return a unambiguous string representation."""
|
|
619
|
+
_account_number=(
|
|
620
|
+
self.account_number
|
|
621
|
+
if hasattr(self, "account_number")
|
|
622
|
+
else None
|
|
623
|
+
)
|
|
624
|
+
_branding_domain_url=(
|
|
625
|
+
self.branding_domain_url
|
|
626
|
+
if hasattr(self, "branding_domain_url")
|
|
627
|
+
else None
|
|
628
|
+
)
|
|
629
|
+
_cell_phone=(
|
|
630
|
+
self.cell_phone
|
|
631
|
+
if hasattr(self, "cell_phone")
|
|
632
|
+
else None
|
|
633
|
+
)
|
|
634
|
+
_company_name=(
|
|
635
|
+
self.company_name
|
|
636
|
+
if hasattr(self, "company_name")
|
|
637
|
+
else None
|
|
638
|
+
)
|
|
639
|
+
_contact_id=(
|
|
640
|
+
self.contact_id
|
|
641
|
+
if hasattr(self, "contact_id")
|
|
642
|
+
else None
|
|
643
|
+
)
|
|
644
|
+
_date_of_birth=(
|
|
645
|
+
self.date_of_birth
|
|
646
|
+
if hasattr(self, "date_of_birth")
|
|
647
|
+
else None
|
|
648
|
+
)
|
|
649
|
+
_domain_id=(
|
|
650
|
+
self.domain_id
|
|
651
|
+
if hasattr(self, "domain_id")
|
|
652
|
+
else None
|
|
653
|
+
)
|
|
654
|
+
_email=(
|
|
655
|
+
self.email
|
|
656
|
+
if hasattr(self, "email")
|
|
657
|
+
else None
|
|
658
|
+
)
|
|
659
|
+
_email_trx_receipt=(
|
|
660
|
+
self.email_trx_receipt
|
|
661
|
+
if hasattr(self, "email_trx_receipt")
|
|
662
|
+
else None
|
|
663
|
+
)
|
|
664
|
+
_home_phone=(
|
|
665
|
+
self.home_phone
|
|
666
|
+
if hasattr(self, "home_phone")
|
|
667
|
+
else None
|
|
668
|
+
)
|
|
669
|
+
_first_name=(
|
|
670
|
+
self.first_name
|
|
671
|
+
if hasattr(self, "first_name")
|
|
672
|
+
else None
|
|
673
|
+
)
|
|
674
|
+
_last_name=(
|
|
675
|
+
self.last_name
|
|
676
|
+
if hasattr(self, "last_name")
|
|
677
|
+
else None
|
|
678
|
+
)
|
|
679
|
+
_locale=(
|
|
680
|
+
self.locale
|
|
681
|
+
if hasattr(self, "locale")
|
|
682
|
+
else None
|
|
683
|
+
)
|
|
684
|
+
_office_phone=(
|
|
685
|
+
self.office_phone
|
|
686
|
+
if hasattr(self, "office_phone")
|
|
687
|
+
else None
|
|
688
|
+
)
|
|
689
|
+
_office_ext_phone=(
|
|
690
|
+
self.office_ext_phone
|
|
691
|
+
if hasattr(self, "office_ext_phone")
|
|
692
|
+
else None
|
|
693
|
+
)
|
|
694
|
+
_primary_location_id=(
|
|
695
|
+
self.primary_location_id
|
|
696
|
+
if hasattr(self, "primary_location_id")
|
|
697
|
+
else None
|
|
698
|
+
)
|
|
699
|
+
_requires_new_password=(
|
|
700
|
+
self.requires_new_password
|
|
701
|
+
if hasattr(self, "requires_new_password")
|
|
702
|
+
else None
|
|
703
|
+
)
|
|
704
|
+
_terms_condition_code=(
|
|
705
|
+
self.terms_condition_code
|
|
706
|
+
if hasattr(self, "terms_condition_code")
|
|
707
|
+
else None
|
|
708
|
+
)
|
|
709
|
+
_tz=(
|
|
710
|
+
self.tz
|
|
711
|
+
if hasattr(self, "tz")
|
|
712
|
+
else None
|
|
713
|
+
)
|
|
714
|
+
_ui_prefs=(
|
|
715
|
+
self.ui_prefs
|
|
716
|
+
if hasattr(self, "ui_prefs")
|
|
717
|
+
else None
|
|
718
|
+
)
|
|
719
|
+
_username=(
|
|
720
|
+
self.username
|
|
721
|
+
if hasattr(self, "username")
|
|
722
|
+
else None
|
|
723
|
+
)
|
|
724
|
+
_user_api_key=(
|
|
725
|
+
self.user_api_key
|
|
726
|
+
if hasattr(self, "user_api_key")
|
|
727
|
+
else None
|
|
728
|
+
)
|
|
729
|
+
_user_hash_key=(
|
|
730
|
+
self.user_hash_key
|
|
731
|
+
if hasattr(self, "user_hash_key")
|
|
732
|
+
else None
|
|
733
|
+
)
|
|
734
|
+
_user_type_code=(
|
|
735
|
+
self.user_type_code
|
|
736
|
+
if hasattr(self, "user_type_code")
|
|
737
|
+
else None
|
|
738
|
+
)
|
|
739
|
+
_password=(
|
|
740
|
+
self.password
|
|
741
|
+
if hasattr(self, "password")
|
|
742
|
+
else None
|
|
743
|
+
)
|
|
744
|
+
_zip=(
|
|
745
|
+
self.zip
|
|
746
|
+
if hasattr(self, "zip")
|
|
747
|
+
else None
|
|
748
|
+
)
|
|
749
|
+
_location_id=(
|
|
750
|
+
self.location_id
|
|
751
|
+
if hasattr(self, "location_id")
|
|
752
|
+
else None
|
|
753
|
+
)
|
|
754
|
+
_contact_api_id=(
|
|
755
|
+
self.contact_api_id
|
|
756
|
+
if hasattr(self, "contact_api_id")
|
|
757
|
+
else None
|
|
758
|
+
)
|
|
759
|
+
_primary_location_api_id=(
|
|
760
|
+
self.primary_location_api_id
|
|
761
|
+
if hasattr(self, "primary_location_api_id")
|
|
762
|
+
else None
|
|
763
|
+
)
|
|
764
|
+
_status_code=(
|
|
765
|
+
self.status_code
|
|
766
|
+
if hasattr(self, "status_code")
|
|
767
|
+
else None
|
|
768
|
+
)
|
|
769
|
+
_api_only=(
|
|
770
|
+
self.api_only
|
|
771
|
+
if hasattr(self, "api_only")
|
|
772
|
+
else None
|
|
773
|
+
)
|
|
774
|
+
_is_invitation=(
|
|
775
|
+
self.is_invitation
|
|
776
|
+
if hasattr(self, "is_invitation")
|
|
777
|
+
else None
|
|
778
|
+
)
|
|
779
|
+
_address=(
|
|
780
|
+
self.address
|
|
781
|
+
if hasattr(self, "address")
|
|
782
|
+
else None
|
|
783
|
+
)
|
|
784
|
+
_id=(
|
|
785
|
+
self.id
|
|
786
|
+
if hasattr(self, "id")
|
|
787
|
+
else None
|
|
788
|
+
)
|
|
789
|
+
_status=(
|
|
790
|
+
self.status
|
|
791
|
+
if hasattr(self, "status")
|
|
792
|
+
else None
|
|
793
|
+
)
|
|
794
|
+
_login_attempts=(
|
|
795
|
+
self.login_attempts
|
|
796
|
+
if hasattr(self, "login_attempts")
|
|
797
|
+
else None
|
|
798
|
+
)
|
|
799
|
+
_last_login_ts=(
|
|
800
|
+
self.last_login_ts
|
|
801
|
+
if hasattr(self, "last_login_ts")
|
|
802
|
+
else None
|
|
803
|
+
)
|
|
804
|
+
_created_ts=(
|
|
805
|
+
self.created_ts
|
|
806
|
+
if hasattr(self, "created_ts")
|
|
807
|
+
else None
|
|
808
|
+
)
|
|
809
|
+
_modified_ts=(
|
|
810
|
+
self.modified_ts
|
|
811
|
+
if hasattr(self, "modified_ts")
|
|
812
|
+
else None
|
|
813
|
+
)
|
|
814
|
+
_created_user_id=(
|
|
815
|
+
self.created_user_id
|
|
816
|
+
if hasattr(self, "created_user_id")
|
|
817
|
+
else None
|
|
818
|
+
)
|
|
819
|
+
_terms_accepted_ts=(
|
|
820
|
+
self.terms_accepted_ts
|
|
821
|
+
if hasattr(self, "terms_accepted_ts")
|
|
822
|
+
else None
|
|
823
|
+
)
|
|
824
|
+
_terms_agree_ip=(
|
|
825
|
+
self.terms_agree_ip
|
|
826
|
+
if hasattr(self, "terms_agree_ip")
|
|
827
|
+
else None
|
|
828
|
+
)
|
|
829
|
+
_current_date_time=(
|
|
830
|
+
self.current_date_time
|
|
831
|
+
if hasattr(self, "current_date_time")
|
|
832
|
+
else None
|
|
833
|
+
)
|
|
834
|
+
_current_login_ip=(
|
|
835
|
+
self.current_login_ip
|
|
836
|
+
if hasattr(self, "current_login_ip")
|
|
837
|
+
else None
|
|
838
|
+
)
|
|
839
|
+
_current_login=(
|
|
840
|
+
self.current_login
|
|
841
|
+
if hasattr(self, "current_login")
|
|
842
|
+
else None
|
|
843
|
+
)
|
|
844
|
+
_sftp_access=(
|
|
845
|
+
self.sftp_access
|
|
846
|
+
if hasattr(self, "sftp_access")
|
|
847
|
+
else None
|
|
848
|
+
)
|
|
849
|
+
_log_api_response_body_ts=(
|
|
850
|
+
self.log_api_response_body_ts
|
|
851
|
+
if hasattr(self, "log_api_response_body_ts")
|
|
852
|
+
else None
|
|
853
|
+
)
|
|
854
|
+
_additional_properties=self.additional_properties
|
|
855
|
+
return (
|
|
856
|
+
f"{self.__class__.__name__}("
|
|
857
|
+
f"account_number={_account_number!r}, "
|
|
858
|
+
f"branding_domain_url={_branding_domain_url!r}, "
|
|
859
|
+
f"cell_phone={_cell_phone!r}, "
|
|
860
|
+
f"company_name={_company_name!r}, "
|
|
861
|
+
f"contact_id={_contact_id!r}, "
|
|
862
|
+
f"date_of_birth={_date_of_birth!r}, "
|
|
863
|
+
f"domain_id={_domain_id!r}, "
|
|
864
|
+
f"email={_email!r}, "
|
|
865
|
+
f"email_trx_receipt={_email_trx_receipt!r}, "
|
|
866
|
+
f"home_phone={_home_phone!r}, "
|
|
867
|
+
f"first_name={_first_name!r}, "
|
|
868
|
+
f"last_name={_last_name!r}, "
|
|
869
|
+
f"locale={_locale!r}, "
|
|
870
|
+
f"office_phone={_office_phone!r}, "
|
|
871
|
+
f"office_ext_phone={_office_ext_phone!r}, "
|
|
872
|
+
f"primary_location_id={_primary_location_id!r}, "
|
|
873
|
+
f"requires_new_password={_requires_new_password!r}, "
|
|
874
|
+
f"terms_condition_code={_terms_condition_code!r}, "
|
|
875
|
+
f"tz={_tz!r}, "
|
|
876
|
+
f"ui_prefs={_ui_prefs!r}, "
|
|
877
|
+
f"username={_username!r}, "
|
|
878
|
+
f"user_api_key={_user_api_key!r}, "
|
|
879
|
+
f"user_hash_key={_user_hash_key!r}, "
|
|
880
|
+
f"user_type_code={_user_type_code!r}, "
|
|
881
|
+
f"password={_password!r}, "
|
|
882
|
+
f"zip={_zip!r}, "
|
|
883
|
+
f"location_id={_location_id!r}, "
|
|
884
|
+
f"contact_api_id={_contact_api_id!r}, "
|
|
885
|
+
f"primary_location_api_id={_primary_location_api_id!r}, "
|
|
886
|
+
f"status_code={_status_code!r}, "
|
|
887
|
+
f"api_only={_api_only!r}, "
|
|
888
|
+
f"is_invitation={_is_invitation!r}, "
|
|
889
|
+
f"address={_address!r}, "
|
|
890
|
+
f"id={_id!r}, "
|
|
891
|
+
f"status={_status!r}, "
|
|
892
|
+
f"login_attempts={_login_attempts!r}, "
|
|
893
|
+
f"last_login_ts={_last_login_ts!r}, "
|
|
894
|
+
f"created_ts={_created_ts!r}, "
|
|
895
|
+
f"modified_ts={_modified_ts!r}, "
|
|
896
|
+
f"created_user_id={_created_user_id!r}, "
|
|
897
|
+
f"terms_accepted_ts={_terms_accepted_ts!r}, "
|
|
898
|
+
f"terms_agree_ip={_terms_agree_ip!r}, "
|
|
899
|
+
f"current_date_time={_current_date_time!r}, "
|
|
900
|
+
f"current_login_ip={_current_login_ip!r}, "
|
|
901
|
+
f"current_login={_current_login!r}, "
|
|
902
|
+
f"sftp_access={_sftp_access!r}, "
|
|
903
|
+
f"log_api_response_body_ts={_log_api_response_body_ts!r}, "
|
|
904
|
+
f"additional_properties={_additional_properties!r}, "
|
|
905
|
+
f")"
|
|
906
|
+
)
|
|
907
|
+
|
|
908
|
+
def __str__(self):
|
|
909
|
+
"""Return a human-readable string representation."""
|
|
910
|
+
_account_number=(
|
|
911
|
+
self.account_number
|
|
912
|
+
if hasattr(self, "account_number")
|
|
913
|
+
else None
|
|
914
|
+
)
|
|
915
|
+
_branding_domain_url=(
|
|
916
|
+
self.branding_domain_url
|
|
917
|
+
if hasattr(self, "branding_domain_url")
|
|
918
|
+
else None
|
|
919
|
+
)
|
|
920
|
+
_cell_phone=(
|
|
921
|
+
self.cell_phone
|
|
922
|
+
if hasattr(self, "cell_phone")
|
|
923
|
+
else None
|
|
924
|
+
)
|
|
925
|
+
_company_name=(
|
|
926
|
+
self.company_name
|
|
927
|
+
if hasattr(self, "company_name")
|
|
928
|
+
else None
|
|
929
|
+
)
|
|
930
|
+
_contact_id=(
|
|
931
|
+
self.contact_id
|
|
932
|
+
if hasattr(self, "contact_id")
|
|
933
|
+
else None
|
|
934
|
+
)
|
|
935
|
+
_date_of_birth=(
|
|
936
|
+
self.date_of_birth
|
|
937
|
+
if hasattr(self, "date_of_birth")
|
|
938
|
+
else None
|
|
939
|
+
)
|
|
940
|
+
_domain_id=(
|
|
941
|
+
self.domain_id
|
|
942
|
+
if hasattr(self, "domain_id")
|
|
943
|
+
else None
|
|
944
|
+
)
|
|
945
|
+
_email=(
|
|
946
|
+
self.email
|
|
947
|
+
if hasattr(self, "email")
|
|
948
|
+
else None
|
|
949
|
+
)
|
|
950
|
+
_email_trx_receipt=(
|
|
951
|
+
self.email_trx_receipt
|
|
952
|
+
if hasattr(self, "email_trx_receipt")
|
|
953
|
+
else None
|
|
954
|
+
)
|
|
955
|
+
_home_phone=(
|
|
956
|
+
self.home_phone
|
|
957
|
+
if hasattr(self, "home_phone")
|
|
958
|
+
else None
|
|
959
|
+
)
|
|
960
|
+
_first_name=(
|
|
961
|
+
self.first_name
|
|
962
|
+
if hasattr(self, "first_name")
|
|
963
|
+
else None
|
|
964
|
+
)
|
|
965
|
+
_last_name=(
|
|
966
|
+
self.last_name
|
|
967
|
+
if hasattr(self, "last_name")
|
|
968
|
+
else None
|
|
969
|
+
)
|
|
970
|
+
_locale=(
|
|
971
|
+
self.locale
|
|
972
|
+
if hasattr(self, "locale")
|
|
973
|
+
else None
|
|
974
|
+
)
|
|
975
|
+
_office_phone=(
|
|
976
|
+
self.office_phone
|
|
977
|
+
if hasattr(self, "office_phone")
|
|
978
|
+
else None
|
|
979
|
+
)
|
|
980
|
+
_office_ext_phone=(
|
|
981
|
+
self.office_ext_phone
|
|
982
|
+
if hasattr(self, "office_ext_phone")
|
|
983
|
+
else None
|
|
984
|
+
)
|
|
985
|
+
_primary_location_id=(
|
|
986
|
+
self.primary_location_id
|
|
987
|
+
if hasattr(self, "primary_location_id")
|
|
988
|
+
else None
|
|
989
|
+
)
|
|
990
|
+
_requires_new_password=(
|
|
991
|
+
self.requires_new_password
|
|
992
|
+
if hasattr(self, "requires_new_password")
|
|
993
|
+
else None
|
|
994
|
+
)
|
|
995
|
+
_terms_condition_code=(
|
|
996
|
+
self.terms_condition_code
|
|
997
|
+
if hasattr(self, "terms_condition_code")
|
|
998
|
+
else None
|
|
999
|
+
)
|
|
1000
|
+
_tz=(
|
|
1001
|
+
self.tz
|
|
1002
|
+
if hasattr(self, "tz")
|
|
1003
|
+
else None
|
|
1004
|
+
)
|
|
1005
|
+
_ui_prefs=(
|
|
1006
|
+
self.ui_prefs
|
|
1007
|
+
if hasattr(self, "ui_prefs")
|
|
1008
|
+
else None
|
|
1009
|
+
)
|
|
1010
|
+
_username=(
|
|
1011
|
+
self.username
|
|
1012
|
+
if hasattr(self, "username")
|
|
1013
|
+
else None
|
|
1014
|
+
)
|
|
1015
|
+
_user_api_key=(
|
|
1016
|
+
self.user_api_key
|
|
1017
|
+
if hasattr(self, "user_api_key")
|
|
1018
|
+
else None
|
|
1019
|
+
)
|
|
1020
|
+
_user_hash_key=(
|
|
1021
|
+
self.user_hash_key
|
|
1022
|
+
if hasattr(self, "user_hash_key")
|
|
1023
|
+
else None
|
|
1024
|
+
)
|
|
1025
|
+
_user_type_code=(
|
|
1026
|
+
self.user_type_code
|
|
1027
|
+
if hasattr(self, "user_type_code")
|
|
1028
|
+
else None
|
|
1029
|
+
)
|
|
1030
|
+
_password=(
|
|
1031
|
+
self.password
|
|
1032
|
+
if hasattr(self, "password")
|
|
1033
|
+
else None
|
|
1034
|
+
)
|
|
1035
|
+
_zip=(
|
|
1036
|
+
self.zip
|
|
1037
|
+
if hasattr(self, "zip")
|
|
1038
|
+
else None
|
|
1039
|
+
)
|
|
1040
|
+
_location_id=(
|
|
1041
|
+
self.location_id
|
|
1042
|
+
if hasattr(self, "location_id")
|
|
1043
|
+
else None
|
|
1044
|
+
)
|
|
1045
|
+
_contact_api_id=(
|
|
1046
|
+
self.contact_api_id
|
|
1047
|
+
if hasattr(self, "contact_api_id")
|
|
1048
|
+
else None
|
|
1049
|
+
)
|
|
1050
|
+
_primary_location_api_id=(
|
|
1051
|
+
self.primary_location_api_id
|
|
1052
|
+
if hasattr(self, "primary_location_api_id")
|
|
1053
|
+
else None
|
|
1054
|
+
)
|
|
1055
|
+
_status_code=(
|
|
1056
|
+
self.status_code
|
|
1057
|
+
if hasattr(self, "status_code")
|
|
1058
|
+
else None
|
|
1059
|
+
)
|
|
1060
|
+
_api_only=(
|
|
1061
|
+
self.api_only
|
|
1062
|
+
if hasattr(self, "api_only")
|
|
1063
|
+
else None
|
|
1064
|
+
)
|
|
1065
|
+
_is_invitation=(
|
|
1066
|
+
self.is_invitation
|
|
1067
|
+
if hasattr(self, "is_invitation")
|
|
1068
|
+
else None
|
|
1069
|
+
)
|
|
1070
|
+
_address=(
|
|
1071
|
+
self.address
|
|
1072
|
+
if hasattr(self, "address")
|
|
1073
|
+
else None
|
|
1074
|
+
)
|
|
1075
|
+
_id=(
|
|
1076
|
+
self.id
|
|
1077
|
+
if hasattr(self, "id")
|
|
1078
|
+
else None
|
|
1079
|
+
)
|
|
1080
|
+
_status=(
|
|
1081
|
+
self.status
|
|
1082
|
+
if hasattr(self, "status")
|
|
1083
|
+
else None
|
|
1084
|
+
)
|
|
1085
|
+
_login_attempts=(
|
|
1086
|
+
self.login_attempts
|
|
1087
|
+
if hasattr(self, "login_attempts")
|
|
1088
|
+
else None
|
|
1089
|
+
)
|
|
1090
|
+
_last_login_ts=(
|
|
1091
|
+
self.last_login_ts
|
|
1092
|
+
if hasattr(self, "last_login_ts")
|
|
1093
|
+
else None
|
|
1094
|
+
)
|
|
1095
|
+
_created_ts=(
|
|
1096
|
+
self.created_ts
|
|
1097
|
+
if hasattr(self, "created_ts")
|
|
1098
|
+
else None
|
|
1099
|
+
)
|
|
1100
|
+
_modified_ts=(
|
|
1101
|
+
self.modified_ts
|
|
1102
|
+
if hasattr(self, "modified_ts")
|
|
1103
|
+
else None
|
|
1104
|
+
)
|
|
1105
|
+
_created_user_id=(
|
|
1106
|
+
self.created_user_id
|
|
1107
|
+
if hasattr(self, "created_user_id")
|
|
1108
|
+
else None
|
|
1109
|
+
)
|
|
1110
|
+
_terms_accepted_ts=(
|
|
1111
|
+
self.terms_accepted_ts
|
|
1112
|
+
if hasattr(self, "terms_accepted_ts")
|
|
1113
|
+
else None
|
|
1114
|
+
)
|
|
1115
|
+
_terms_agree_ip=(
|
|
1116
|
+
self.terms_agree_ip
|
|
1117
|
+
if hasattr(self, "terms_agree_ip")
|
|
1118
|
+
else None
|
|
1119
|
+
)
|
|
1120
|
+
_current_date_time=(
|
|
1121
|
+
self.current_date_time
|
|
1122
|
+
if hasattr(self, "current_date_time")
|
|
1123
|
+
else None
|
|
1124
|
+
)
|
|
1125
|
+
_current_login_ip=(
|
|
1126
|
+
self.current_login_ip
|
|
1127
|
+
if hasattr(self, "current_login_ip")
|
|
1128
|
+
else None
|
|
1129
|
+
)
|
|
1130
|
+
_current_login=(
|
|
1131
|
+
self.current_login
|
|
1132
|
+
if hasattr(self, "current_login")
|
|
1133
|
+
else None
|
|
1134
|
+
)
|
|
1135
|
+
_sftp_access=(
|
|
1136
|
+
self.sftp_access
|
|
1137
|
+
if hasattr(self, "sftp_access")
|
|
1138
|
+
else None
|
|
1139
|
+
)
|
|
1140
|
+
_log_api_response_body_ts=(
|
|
1141
|
+
self.log_api_response_body_ts
|
|
1142
|
+
if hasattr(self, "log_api_response_body_ts")
|
|
1143
|
+
else None
|
|
1144
|
+
)
|
|
1145
|
+
_additional_properties=self.additional_properties
|
|
1146
|
+
return (
|
|
1147
|
+
f"{self.__class__.__name__}("
|
|
1148
|
+
f"account_number={_account_number!s}, "
|
|
1149
|
+
f"branding_domain_url={_branding_domain_url!s}, "
|
|
1150
|
+
f"cell_phone={_cell_phone!s}, "
|
|
1151
|
+
f"company_name={_company_name!s}, "
|
|
1152
|
+
f"contact_id={_contact_id!s}, "
|
|
1153
|
+
f"date_of_birth={_date_of_birth!s}, "
|
|
1154
|
+
f"domain_id={_domain_id!s}, "
|
|
1155
|
+
f"email={_email!s}, "
|
|
1156
|
+
f"email_trx_receipt={_email_trx_receipt!s}, "
|
|
1157
|
+
f"home_phone={_home_phone!s}, "
|
|
1158
|
+
f"first_name={_first_name!s}, "
|
|
1159
|
+
f"last_name={_last_name!s}, "
|
|
1160
|
+
f"locale={_locale!s}, "
|
|
1161
|
+
f"office_phone={_office_phone!s}, "
|
|
1162
|
+
f"office_ext_phone={_office_ext_phone!s}, "
|
|
1163
|
+
f"primary_location_id={_primary_location_id!s}, "
|
|
1164
|
+
f"requires_new_password={_requires_new_password!s}, "
|
|
1165
|
+
f"terms_condition_code={_terms_condition_code!s}, "
|
|
1166
|
+
f"tz={_tz!s}, "
|
|
1167
|
+
f"ui_prefs={_ui_prefs!s}, "
|
|
1168
|
+
f"username={_username!s}, "
|
|
1169
|
+
f"user_api_key={_user_api_key!s}, "
|
|
1170
|
+
f"user_hash_key={_user_hash_key!s}, "
|
|
1171
|
+
f"user_type_code={_user_type_code!s}, "
|
|
1172
|
+
f"password={_password!s}, "
|
|
1173
|
+
f"zip={_zip!s}, "
|
|
1174
|
+
f"location_id={_location_id!s}, "
|
|
1175
|
+
f"contact_api_id={_contact_api_id!s}, "
|
|
1176
|
+
f"primary_location_api_id={_primary_location_api_id!s}, "
|
|
1177
|
+
f"status_code={_status_code!s}, "
|
|
1178
|
+
f"api_only={_api_only!s}, "
|
|
1179
|
+
f"is_invitation={_is_invitation!s}, "
|
|
1180
|
+
f"address={_address!s}, "
|
|
1181
|
+
f"id={_id!s}, "
|
|
1182
|
+
f"status={_status!s}, "
|
|
1183
|
+
f"login_attempts={_login_attempts!s}, "
|
|
1184
|
+
f"last_login_ts={_last_login_ts!s}, "
|
|
1185
|
+
f"created_ts={_created_ts!s}, "
|
|
1186
|
+
f"modified_ts={_modified_ts!s}, "
|
|
1187
|
+
f"created_user_id={_created_user_id!s}, "
|
|
1188
|
+
f"terms_accepted_ts={_terms_accepted_ts!s}, "
|
|
1189
|
+
f"terms_agree_ip={_terms_agree_ip!s}, "
|
|
1190
|
+
f"current_date_time={_current_date_time!s}, "
|
|
1191
|
+
f"current_login_ip={_current_login_ip!s}, "
|
|
1192
|
+
f"current_login={_current_login!s}, "
|
|
1193
|
+
f"sftp_access={_sftp_access!s}, "
|
|
1194
|
+
f"log_api_response_body_ts={_log_api_response_body_ts!s}, "
|
|
1195
|
+
f"additional_properties={_additional_properties!s}, "
|
|
1196
|
+
f")"
|
|
1197
|
+
)
|