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,264 @@
|
|
|
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
|
+
|
|
9
|
+
|
|
10
|
+
class ShippingAddress(object):
|
|
11
|
+
"""Implementation of the 'ShippingAddress' model.
|
|
12
|
+
|
|
13
|
+
Cardholder shipping address object
|
|
14
|
+
|
|
15
|
+
Attributes:
|
|
16
|
+
city (str): The city of the Cardholder shipping address associated with the
|
|
17
|
+
card used for this purchase. This field is required unless market or
|
|
18
|
+
regional mandate restricts sending this information.
|
|
19
|
+
country_code (str): The ISO 3166-1 alpha-3 or alpha-2 country of the
|
|
20
|
+
Cardholder shipping address associated with the card used for this
|
|
21
|
+
purchase. The field is required if Cardholder Shipping Address State is
|
|
22
|
+
present and unless market or regional mandate restricts sending this
|
|
23
|
+
information.
|
|
24
|
+
address_line_1 (str): First line of the street address or equivalent local
|
|
25
|
+
portion of the Cardholder shipping address associated with the card use
|
|
26
|
+
for this purchase. This field is required unless market or regional
|
|
27
|
+
mandate restricts sending this information.
|
|
28
|
+
address_line_2 (str): Second line of the street address or equivalent local
|
|
29
|
+
portion of the Cardholder shipping address associated with the card use
|
|
30
|
+
for this purchase. This field is required unless market or regional
|
|
31
|
+
mandate restricts sending this information.
|
|
32
|
+
address_line_3 (str): Third line of the street address or equivalent local
|
|
33
|
+
portion of the Cardholder shipping address associated with the card use
|
|
34
|
+
for this purchase. This field is required unless market or regional
|
|
35
|
+
mandate restricts sending this information.
|
|
36
|
+
postal_code (str): ZIP or other postal code of the Cardholder shipping
|
|
37
|
+
address associated with the card used for this purchase. This field is
|
|
38
|
+
required unless market or regional mandate restricts sending this
|
|
39
|
+
information.
|
|
40
|
+
state (str): The state or province of the Cardholder shipping address
|
|
41
|
+
associated with the card used for this purchase. The value should be the
|
|
42
|
+
country subdivision code defined in ISO 3166-2. This field is required
|
|
43
|
+
unless State is not applicable for this country and unless market or
|
|
44
|
+
regional mandate restricts sending this information.
|
|
45
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
46
|
+
model.
|
|
47
|
+
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
# Create a mapping from Model property names to API property names
|
|
51
|
+
_names = {
|
|
52
|
+
"city": "city",
|
|
53
|
+
"country_code": "country_code",
|
|
54
|
+
"address_line_1": "address_line_1",
|
|
55
|
+
"address_line_2": "address_line_2",
|
|
56
|
+
"address_line_3": "address_line_3",
|
|
57
|
+
"postal_code": "postal_code",
|
|
58
|
+
"state": "state",
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
_optionals = [
|
|
62
|
+
"city",
|
|
63
|
+
"country_code",
|
|
64
|
+
"address_line_1",
|
|
65
|
+
"address_line_2",
|
|
66
|
+
"address_line_3",
|
|
67
|
+
"postal_code",
|
|
68
|
+
"state",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
def __init__(
|
|
72
|
+
self,
|
|
73
|
+
city=APIHelper.SKIP,
|
|
74
|
+
country_code=APIHelper.SKIP,
|
|
75
|
+
address_line_1=APIHelper.SKIP,
|
|
76
|
+
address_line_2=APIHelper.SKIP,
|
|
77
|
+
address_line_3=APIHelper.SKIP,
|
|
78
|
+
postal_code=APIHelper.SKIP,
|
|
79
|
+
state=APIHelper.SKIP,
|
|
80
|
+
additional_properties=None):
|
|
81
|
+
"""Initialize a ShippingAddress instance."""
|
|
82
|
+
# Initialize members of the class
|
|
83
|
+
if city is not APIHelper.SKIP:
|
|
84
|
+
self.city = city
|
|
85
|
+
if country_code is not APIHelper.SKIP:
|
|
86
|
+
self.country_code = country_code
|
|
87
|
+
if address_line_1 is not APIHelper.SKIP:
|
|
88
|
+
self.address_line_1 = address_line_1
|
|
89
|
+
if address_line_2 is not APIHelper.SKIP:
|
|
90
|
+
self.address_line_2 = address_line_2
|
|
91
|
+
if address_line_3 is not APIHelper.SKIP:
|
|
92
|
+
self.address_line_3 = address_line_3
|
|
93
|
+
if postal_code is not APIHelper.SKIP:
|
|
94
|
+
self.postal_code = postal_code
|
|
95
|
+
if state is not APIHelper.SKIP:
|
|
96
|
+
self.state = state
|
|
97
|
+
|
|
98
|
+
# Add additional model properties to the instance
|
|
99
|
+
if additional_properties is None:
|
|
100
|
+
additional_properties = {}
|
|
101
|
+
self.additional_properties = additional_properties
|
|
102
|
+
|
|
103
|
+
@classmethod
|
|
104
|
+
def from_dictionary(cls,
|
|
105
|
+
dictionary):
|
|
106
|
+
"""Create an instance of this model from a dictionary
|
|
107
|
+
|
|
108
|
+
Args:
|
|
109
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
110
|
+
as obtained from the deserialization of the server's response. The
|
|
111
|
+
keys MUST match property names in the API description.
|
|
112
|
+
|
|
113
|
+
Returns:
|
|
114
|
+
object: An instance of this structure class.
|
|
115
|
+
|
|
116
|
+
"""
|
|
117
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
118
|
+
return None
|
|
119
|
+
|
|
120
|
+
# Extract variables from the dictionary
|
|
121
|
+
city =\
|
|
122
|
+
dictionary.get("city")\
|
|
123
|
+
if dictionary.get("city")\
|
|
124
|
+
else APIHelper.SKIP
|
|
125
|
+
country_code =\
|
|
126
|
+
dictionary.get("country_code")\
|
|
127
|
+
if dictionary.get("country_code")\
|
|
128
|
+
else APIHelper.SKIP
|
|
129
|
+
address_line_1 =\
|
|
130
|
+
dictionary.get("address_line_1")\
|
|
131
|
+
if dictionary.get("address_line_1")\
|
|
132
|
+
else APIHelper.SKIP
|
|
133
|
+
address_line_2 =\
|
|
134
|
+
dictionary.get("address_line_2")\
|
|
135
|
+
if dictionary.get("address_line_2")\
|
|
136
|
+
else APIHelper.SKIP
|
|
137
|
+
address_line_3 =\
|
|
138
|
+
dictionary.get("address_line_3")\
|
|
139
|
+
if dictionary.get("address_line_3")\
|
|
140
|
+
else APIHelper.SKIP
|
|
141
|
+
postal_code =\
|
|
142
|
+
dictionary.get("postal_code")\
|
|
143
|
+
if dictionary.get("postal_code")\
|
|
144
|
+
else APIHelper.SKIP
|
|
145
|
+
state =\
|
|
146
|
+
dictionary.get("state")\
|
|
147
|
+
if dictionary.get("state")\
|
|
148
|
+
else APIHelper.SKIP
|
|
149
|
+
|
|
150
|
+
# Clean out expected properties from dictionary
|
|
151
|
+
additional_properties =\
|
|
152
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
153
|
+
|
|
154
|
+
# Return an object of this model
|
|
155
|
+
return cls(city,
|
|
156
|
+
country_code,
|
|
157
|
+
address_line_1,
|
|
158
|
+
address_line_2,
|
|
159
|
+
address_line_3,
|
|
160
|
+
postal_code,
|
|
161
|
+
state,
|
|
162
|
+
additional_properties)
|
|
163
|
+
|
|
164
|
+
def __repr__(self):
|
|
165
|
+
"""Return a unambiguous string representation."""
|
|
166
|
+
_city=(
|
|
167
|
+
self.city
|
|
168
|
+
if hasattr(self, "city")
|
|
169
|
+
else None
|
|
170
|
+
)
|
|
171
|
+
_country_code=(
|
|
172
|
+
self.country_code
|
|
173
|
+
if hasattr(self, "country_code")
|
|
174
|
+
else None
|
|
175
|
+
)
|
|
176
|
+
_address_line_1=(
|
|
177
|
+
self.address_line_1
|
|
178
|
+
if hasattr(self, "address_line_1")
|
|
179
|
+
else None
|
|
180
|
+
)
|
|
181
|
+
_address_line_2=(
|
|
182
|
+
self.address_line_2
|
|
183
|
+
if hasattr(self, "address_line_2")
|
|
184
|
+
else None
|
|
185
|
+
)
|
|
186
|
+
_address_line_3=(
|
|
187
|
+
self.address_line_3
|
|
188
|
+
if hasattr(self, "address_line_3")
|
|
189
|
+
else None
|
|
190
|
+
)
|
|
191
|
+
_postal_code=(
|
|
192
|
+
self.postal_code
|
|
193
|
+
if hasattr(self, "postal_code")
|
|
194
|
+
else None
|
|
195
|
+
)
|
|
196
|
+
_state=(
|
|
197
|
+
self.state
|
|
198
|
+
if hasattr(self, "state")
|
|
199
|
+
else None
|
|
200
|
+
)
|
|
201
|
+
_additional_properties=self.additional_properties
|
|
202
|
+
return (
|
|
203
|
+
f"{self.__class__.__name__}("
|
|
204
|
+
f"city={_city!r}, "
|
|
205
|
+
f"country_code={_country_code!r}, "
|
|
206
|
+
f"address_line_1={_address_line_1!r}, "
|
|
207
|
+
f"address_line_2={_address_line_2!r}, "
|
|
208
|
+
f"address_line_3={_address_line_3!r}, "
|
|
209
|
+
f"postal_code={_postal_code!r}, "
|
|
210
|
+
f"state={_state!r}, "
|
|
211
|
+
f"additional_properties={_additional_properties!r}, "
|
|
212
|
+
f")"
|
|
213
|
+
)
|
|
214
|
+
|
|
215
|
+
def __str__(self):
|
|
216
|
+
"""Return a human-readable string representation."""
|
|
217
|
+
_city=(
|
|
218
|
+
self.city
|
|
219
|
+
if hasattr(self, "city")
|
|
220
|
+
else None
|
|
221
|
+
)
|
|
222
|
+
_country_code=(
|
|
223
|
+
self.country_code
|
|
224
|
+
if hasattr(self, "country_code")
|
|
225
|
+
else None
|
|
226
|
+
)
|
|
227
|
+
_address_line_1=(
|
|
228
|
+
self.address_line_1
|
|
229
|
+
if hasattr(self, "address_line_1")
|
|
230
|
+
else None
|
|
231
|
+
)
|
|
232
|
+
_address_line_2=(
|
|
233
|
+
self.address_line_2
|
|
234
|
+
if hasattr(self, "address_line_2")
|
|
235
|
+
else None
|
|
236
|
+
)
|
|
237
|
+
_address_line_3=(
|
|
238
|
+
self.address_line_3
|
|
239
|
+
if hasattr(self, "address_line_3")
|
|
240
|
+
else None
|
|
241
|
+
)
|
|
242
|
+
_postal_code=(
|
|
243
|
+
self.postal_code
|
|
244
|
+
if hasattr(self, "postal_code")
|
|
245
|
+
else None
|
|
246
|
+
)
|
|
247
|
+
_state=(
|
|
248
|
+
self.state
|
|
249
|
+
if hasattr(self, "state")
|
|
250
|
+
else None
|
|
251
|
+
)
|
|
252
|
+
_additional_properties=self.additional_properties
|
|
253
|
+
return (
|
|
254
|
+
f"{self.__class__.__name__}("
|
|
255
|
+
f"city={_city!s}, "
|
|
256
|
+
f"country_code={_country_code!s}, "
|
|
257
|
+
f"address_line_1={_address_line_1!s}, "
|
|
258
|
+
f"address_line_2={_address_line_2!s}, "
|
|
259
|
+
f"address_line_3={_address_line_3!s}, "
|
|
260
|
+
f"postal_code={_postal_code!s}, "
|
|
261
|
+
f"state={_state!s}, "
|
|
262
|
+
f"additional_properties={_additional_properties!s}, "
|
|
263
|
+
f")"
|
|
264
|
+
)
|
|
@@ -0,0 +1,220 @@
|
|
|
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
|
+
|
|
9
|
+
|
|
10
|
+
class Signature(object):
|
|
11
|
+
"""Implementation of the 'Signature' model.
|
|
12
|
+
|
|
13
|
+
Signature Information on `expand`
|
|
14
|
+
|
|
15
|
+
Attributes:
|
|
16
|
+
signature (str): Signature
|
|
17
|
+
resource (ResourceEnum): Resource >Recurring, Transaction, AccountVault,
|
|
18
|
+
DeviceTerm >
|
|
19
|
+
resource_id (str): Resource ID
|
|
20
|
+
id (str): Signature ID
|
|
21
|
+
created_ts (int): Created Time Stamp
|
|
22
|
+
modified_ts (int): Modified Time Stamp
|
|
23
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
24
|
+
model.
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
# Create a mapping from Model property names to API property names
|
|
29
|
+
_names = {
|
|
30
|
+
"signature": "signature",
|
|
31
|
+
"resource": "resource",
|
|
32
|
+
"resource_id": "resource_id",
|
|
33
|
+
"id": "id",
|
|
34
|
+
"created_ts": "created_ts",
|
|
35
|
+
"modified_ts": "modified_ts",
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
_optionals = [
|
|
39
|
+
"signature",
|
|
40
|
+
"resource",
|
|
41
|
+
"resource_id",
|
|
42
|
+
"id",
|
|
43
|
+
"created_ts",
|
|
44
|
+
"modified_ts",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
def __init__(
|
|
48
|
+
self,
|
|
49
|
+
signature=APIHelper.SKIP,
|
|
50
|
+
resource=APIHelper.SKIP,
|
|
51
|
+
resource_id=APIHelper.SKIP,
|
|
52
|
+
id=APIHelper.SKIP,
|
|
53
|
+
created_ts=APIHelper.SKIP,
|
|
54
|
+
modified_ts=APIHelper.SKIP,
|
|
55
|
+
additional_properties=None):
|
|
56
|
+
"""Initialize a Signature instance."""
|
|
57
|
+
# Initialize members of the class
|
|
58
|
+
if signature is not APIHelper.SKIP:
|
|
59
|
+
self.signature = signature
|
|
60
|
+
if resource is not APIHelper.SKIP:
|
|
61
|
+
self.resource = resource
|
|
62
|
+
if resource_id is not APIHelper.SKIP:
|
|
63
|
+
self.resource_id = resource_id
|
|
64
|
+
if id is not APIHelper.SKIP:
|
|
65
|
+
self.id = id
|
|
66
|
+
if created_ts is not APIHelper.SKIP:
|
|
67
|
+
self.created_ts = created_ts
|
|
68
|
+
if modified_ts is not APIHelper.SKIP:
|
|
69
|
+
self.modified_ts = modified_ts
|
|
70
|
+
|
|
71
|
+
# Add additional model properties to the instance
|
|
72
|
+
if additional_properties is None:
|
|
73
|
+
additional_properties = {}
|
|
74
|
+
self.additional_properties = additional_properties
|
|
75
|
+
|
|
76
|
+
@classmethod
|
|
77
|
+
def from_dictionary(cls,
|
|
78
|
+
dictionary):
|
|
79
|
+
"""Create an instance of this model from a dictionary
|
|
80
|
+
|
|
81
|
+
Args:
|
|
82
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
83
|
+
as obtained from the deserialization of the server's response. The
|
|
84
|
+
keys MUST match property names in the API description.
|
|
85
|
+
|
|
86
|
+
Returns:
|
|
87
|
+
object: An instance of this structure class.
|
|
88
|
+
|
|
89
|
+
"""
|
|
90
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
91
|
+
return None
|
|
92
|
+
|
|
93
|
+
# Extract variables from the dictionary
|
|
94
|
+
signature =\
|
|
95
|
+
dictionary.get("signature")\
|
|
96
|
+
if dictionary.get("signature")\
|
|
97
|
+
else APIHelper.SKIP
|
|
98
|
+
resource =\
|
|
99
|
+
dictionary.get("resource")\
|
|
100
|
+
if dictionary.get("resource")\
|
|
101
|
+
else APIHelper.SKIP
|
|
102
|
+
resource_id =\
|
|
103
|
+
dictionary.get("resource_id")\
|
|
104
|
+
if dictionary.get("resource_id")\
|
|
105
|
+
else APIHelper.SKIP
|
|
106
|
+
id =\
|
|
107
|
+
dictionary.get("id")\
|
|
108
|
+
if dictionary.get("id")\
|
|
109
|
+
else APIHelper.SKIP
|
|
110
|
+
created_ts =\
|
|
111
|
+
dictionary.get("created_ts")\
|
|
112
|
+
if dictionary.get("created_ts")\
|
|
113
|
+
else APIHelper.SKIP
|
|
114
|
+
modified_ts =\
|
|
115
|
+
dictionary.get("modified_ts")\
|
|
116
|
+
if dictionary.get("modified_ts")\
|
|
117
|
+
else APIHelper.SKIP
|
|
118
|
+
|
|
119
|
+
# Clean out expected properties from dictionary
|
|
120
|
+
additional_properties =\
|
|
121
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
122
|
+
|
|
123
|
+
# Return an object of this model
|
|
124
|
+
return cls(signature,
|
|
125
|
+
resource,
|
|
126
|
+
resource_id,
|
|
127
|
+
id,
|
|
128
|
+
created_ts,
|
|
129
|
+
modified_ts,
|
|
130
|
+
additional_properties)
|
|
131
|
+
|
|
132
|
+
def __repr__(self):
|
|
133
|
+
"""Return a unambiguous string representation."""
|
|
134
|
+
_signature=(
|
|
135
|
+
self.signature
|
|
136
|
+
if hasattr(self, "signature")
|
|
137
|
+
else None
|
|
138
|
+
)
|
|
139
|
+
_resource=(
|
|
140
|
+
self.resource
|
|
141
|
+
if hasattr(self, "resource")
|
|
142
|
+
else None
|
|
143
|
+
)
|
|
144
|
+
_resource_id=(
|
|
145
|
+
self.resource_id
|
|
146
|
+
if hasattr(self, "resource_id")
|
|
147
|
+
else None
|
|
148
|
+
)
|
|
149
|
+
_id=(
|
|
150
|
+
self.id
|
|
151
|
+
if hasattr(self, "id")
|
|
152
|
+
else None
|
|
153
|
+
)
|
|
154
|
+
_created_ts=(
|
|
155
|
+
self.created_ts
|
|
156
|
+
if hasattr(self, "created_ts")
|
|
157
|
+
else None
|
|
158
|
+
)
|
|
159
|
+
_modified_ts=(
|
|
160
|
+
self.modified_ts
|
|
161
|
+
if hasattr(self, "modified_ts")
|
|
162
|
+
else None
|
|
163
|
+
)
|
|
164
|
+
_additional_properties=self.additional_properties
|
|
165
|
+
return (
|
|
166
|
+
f"{self.__class__.__name__}("
|
|
167
|
+
f"signature={_signature!r}, "
|
|
168
|
+
f"resource={_resource!r}, "
|
|
169
|
+
f"resource_id={_resource_id!r}, "
|
|
170
|
+
f"id={_id!r}, "
|
|
171
|
+
f"created_ts={_created_ts!r}, "
|
|
172
|
+
f"modified_ts={_modified_ts!r}, "
|
|
173
|
+
f"additional_properties={_additional_properties!r}, "
|
|
174
|
+
f")"
|
|
175
|
+
)
|
|
176
|
+
|
|
177
|
+
def __str__(self):
|
|
178
|
+
"""Return a human-readable string representation."""
|
|
179
|
+
_signature=(
|
|
180
|
+
self.signature
|
|
181
|
+
if hasattr(self, "signature")
|
|
182
|
+
else None
|
|
183
|
+
)
|
|
184
|
+
_resource=(
|
|
185
|
+
self.resource
|
|
186
|
+
if hasattr(self, "resource")
|
|
187
|
+
else None
|
|
188
|
+
)
|
|
189
|
+
_resource_id=(
|
|
190
|
+
self.resource_id
|
|
191
|
+
if hasattr(self, "resource_id")
|
|
192
|
+
else None
|
|
193
|
+
)
|
|
194
|
+
_id=(
|
|
195
|
+
self.id
|
|
196
|
+
if hasattr(self, "id")
|
|
197
|
+
else None
|
|
198
|
+
)
|
|
199
|
+
_created_ts=(
|
|
200
|
+
self.created_ts
|
|
201
|
+
if hasattr(self, "created_ts")
|
|
202
|
+
else None
|
|
203
|
+
)
|
|
204
|
+
_modified_ts=(
|
|
205
|
+
self.modified_ts
|
|
206
|
+
if hasattr(self, "modified_ts")
|
|
207
|
+
else None
|
|
208
|
+
)
|
|
209
|
+
_additional_properties=self.additional_properties
|
|
210
|
+
return (
|
|
211
|
+
f"{self.__class__.__name__}("
|
|
212
|
+
f"signature={_signature!s}, "
|
|
213
|
+
f"resource={_resource!s}, "
|
|
214
|
+
f"resource_id={_resource_id!s}, "
|
|
215
|
+
f"id={_id!s}, "
|
|
216
|
+
f"created_ts={_created_ts!s}, "
|
|
217
|
+
f"modified_ts={_modified_ts!s}, "
|
|
218
|
+
f"additional_properties={_additional_properties!s}, "
|
|
219
|
+
f")"
|
|
220
|
+
)
|
|
@@ -0,0 +1,178 @@
|
|
|
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
|
+
|
|
9
|
+
|
|
10
|
+
class SmsBlacklist(object):
|
|
11
|
+
"""Implementation of the 'SmsBlacklist' model.
|
|
12
|
+
|
|
13
|
+
Sms Blacklist Information on `expand`
|
|
14
|
+
|
|
15
|
+
Attributes:
|
|
16
|
+
id (str): Blacklist ID
|
|
17
|
+
is_blacklisted (bool): isBlacklisted
|
|
18
|
+
detail (bool): Contact Id
|
|
19
|
+
created_ts (int): Created Time Stamp
|
|
20
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
21
|
+
model.
|
|
22
|
+
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
# Create a mapping from Model property names to API property names
|
|
26
|
+
_names = {
|
|
27
|
+
"id": "id",
|
|
28
|
+
"is_blacklisted": "isBlacklisted",
|
|
29
|
+
"detail": "detail",
|
|
30
|
+
"created_ts": "created_ts",
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
_optionals = [
|
|
34
|
+
"id",
|
|
35
|
+
"is_blacklisted",
|
|
36
|
+
"detail",
|
|
37
|
+
"created_ts",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
_nullables = [
|
|
41
|
+
"id",
|
|
42
|
+
"created_ts",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
def __init__(
|
|
46
|
+
self,
|
|
47
|
+
id=APIHelper.SKIP,
|
|
48
|
+
is_blacklisted=APIHelper.SKIP,
|
|
49
|
+
detail=APIHelper.SKIP,
|
|
50
|
+
created_ts=APIHelper.SKIP,
|
|
51
|
+
additional_properties=None):
|
|
52
|
+
"""Initialize a SmsBlacklist instance."""
|
|
53
|
+
# Initialize members of the class
|
|
54
|
+
if id is not APIHelper.SKIP:
|
|
55
|
+
self.id = id
|
|
56
|
+
if is_blacklisted is not APIHelper.SKIP:
|
|
57
|
+
self.is_blacklisted = is_blacklisted
|
|
58
|
+
if detail is not APIHelper.SKIP:
|
|
59
|
+
self.detail = detail
|
|
60
|
+
if created_ts is not APIHelper.SKIP:
|
|
61
|
+
self.created_ts = created_ts
|
|
62
|
+
|
|
63
|
+
# Add additional model properties to the instance
|
|
64
|
+
if additional_properties is None:
|
|
65
|
+
additional_properties = {}
|
|
66
|
+
self.additional_properties = additional_properties
|
|
67
|
+
|
|
68
|
+
@classmethod
|
|
69
|
+
def from_dictionary(cls,
|
|
70
|
+
dictionary):
|
|
71
|
+
"""Create an instance of this model from a dictionary
|
|
72
|
+
|
|
73
|
+
Args:
|
|
74
|
+
dictionary (dictionary): A dictionary representation of the object
|
|
75
|
+
as obtained from the deserialization of the server's response. The
|
|
76
|
+
keys MUST match property names in the API description.
|
|
77
|
+
|
|
78
|
+
Returns:
|
|
79
|
+
object: An instance of this structure class.
|
|
80
|
+
|
|
81
|
+
"""
|
|
82
|
+
if not isinstance(dictionary, dict) or dictionary is None:
|
|
83
|
+
return None
|
|
84
|
+
|
|
85
|
+
# Extract variables from the dictionary
|
|
86
|
+
id =\
|
|
87
|
+
dictionary.get("id")\
|
|
88
|
+
if "id" in dictionary.keys()\
|
|
89
|
+
else APIHelper.SKIP
|
|
90
|
+
is_blacklisted =\
|
|
91
|
+
dictionary.get("isBlacklisted")\
|
|
92
|
+
if "isBlacklisted" in dictionary.keys()\
|
|
93
|
+
else APIHelper.SKIP
|
|
94
|
+
detail =\
|
|
95
|
+
dictionary.get("detail")\
|
|
96
|
+
if "detail" in dictionary.keys()\
|
|
97
|
+
else APIHelper.SKIP
|
|
98
|
+
created_ts =\
|
|
99
|
+
dictionary.get("created_ts")\
|
|
100
|
+
if "created_ts" in dictionary.keys()\
|
|
101
|
+
else APIHelper.SKIP
|
|
102
|
+
|
|
103
|
+
# Clean out expected properties from dictionary
|
|
104
|
+
additional_properties =\
|
|
105
|
+
{k: v for k, v in dictionary.items() if k not in cls._names.values()}
|
|
106
|
+
|
|
107
|
+
# Return an object of this model
|
|
108
|
+
return cls(id,
|
|
109
|
+
is_blacklisted,
|
|
110
|
+
detail,
|
|
111
|
+
created_ts,
|
|
112
|
+
additional_properties)
|
|
113
|
+
|
|
114
|
+
def __repr__(self):
|
|
115
|
+
"""Return a unambiguous string representation."""
|
|
116
|
+
_id=(
|
|
117
|
+
self.id
|
|
118
|
+
if hasattr(self, "id")
|
|
119
|
+
else None
|
|
120
|
+
)
|
|
121
|
+
_is_blacklisted=(
|
|
122
|
+
self.is_blacklisted
|
|
123
|
+
if hasattr(self, "is_blacklisted")
|
|
124
|
+
else None
|
|
125
|
+
)
|
|
126
|
+
_detail=(
|
|
127
|
+
self.detail
|
|
128
|
+
if hasattr(self, "detail")
|
|
129
|
+
else None
|
|
130
|
+
)
|
|
131
|
+
_created_ts=(
|
|
132
|
+
self.created_ts
|
|
133
|
+
if hasattr(self, "created_ts")
|
|
134
|
+
else None
|
|
135
|
+
)
|
|
136
|
+
_additional_properties=self.additional_properties
|
|
137
|
+
return (
|
|
138
|
+
f"{self.__class__.__name__}("
|
|
139
|
+
f"id={_id!r}, "
|
|
140
|
+
f"is_blacklisted={_is_blacklisted!r}, "
|
|
141
|
+
f"detail={_detail!r}, "
|
|
142
|
+
f"created_ts={_created_ts!r}, "
|
|
143
|
+
f"additional_properties={_additional_properties!r}, "
|
|
144
|
+
f")"
|
|
145
|
+
)
|
|
146
|
+
|
|
147
|
+
def __str__(self):
|
|
148
|
+
"""Return a human-readable string representation."""
|
|
149
|
+
_id=(
|
|
150
|
+
self.id
|
|
151
|
+
if hasattr(self, "id")
|
|
152
|
+
else None
|
|
153
|
+
)
|
|
154
|
+
_is_blacklisted=(
|
|
155
|
+
self.is_blacklisted
|
|
156
|
+
if hasattr(self, "is_blacklisted")
|
|
157
|
+
else None
|
|
158
|
+
)
|
|
159
|
+
_detail=(
|
|
160
|
+
self.detail
|
|
161
|
+
if hasattr(self, "detail")
|
|
162
|
+
else None
|
|
163
|
+
)
|
|
164
|
+
_created_ts=(
|
|
165
|
+
self.created_ts
|
|
166
|
+
if hasattr(self, "created_ts")
|
|
167
|
+
else None
|
|
168
|
+
)
|
|
169
|
+
_additional_properties=self.additional_properties
|
|
170
|
+
return (
|
|
171
|
+
f"{self.__class__.__name__}("
|
|
172
|
+
f"id={_id!s}, "
|
|
173
|
+
f"is_blacklisted={_is_blacklisted!s}, "
|
|
174
|
+
f"detail={_detail!s}, "
|
|
175
|
+
f"created_ts={_created_ts!s}, "
|
|
176
|
+
f"additional_properties={_additional_properties!s}, "
|
|
177
|
+
f")"
|
|
178
|
+
)
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"""fortisapi.
|
|
2
|
+
|
|
3
|
+
This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
# ruff: noqa: E501
|
|
7
|
+
|
|
8
|
+
class SmsEnum(object):
|
|
9
|
+
"""Implementation of the 'sms' enum.
|
|
10
|
+
|
|
11
|
+
Resend SMS
|
|
12
|
+
|
|
13
|
+
Attributes:
|
|
14
|
+
ENUM_0: The enum member of type int.
|
|
15
|
+
ENUM_1: The enum member of type int.
|
|
16
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
17
|
+
model.
|
|
18
|
+
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
ENUM_0 = 0
|
|
22
|
+
|
|
23
|
+
ENUM_1 = 1
|
|
24
|
+
|
|
25
|
+
@classmethod
|
|
26
|
+
def from_value(cls, value, default=None):
|
|
27
|
+
"""Return the matching enum value for the given input."""
|
|
28
|
+
if value is None:
|
|
29
|
+
return default
|
|
30
|
+
|
|
31
|
+
# If numeric and matches directly
|
|
32
|
+
if isinstance(value, int):
|
|
33
|
+
for name, val in cls.__dict__.items():
|
|
34
|
+
if not name.startswith("_") and val == value:
|
|
35
|
+
return val
|
|
36
|
+
|
|
37
|
+
# If string, perform case-insensitive match
|
|
38
|
+
if isinstance(value, str):
|
|
39
|
+
value_lower = value.lower()
|
|
40
|
+
for name, val in cls.__dict__.items():
|
|
41
|
+
if not name.startswith("_") and (
|
|
42
|
+
name.lower() == value_lower or str(val).lower() == value_lower
|
|
43
|
+
):
|
|
44
|
+
return val
|
|
45
|
+
|
|
46
|
+
# Fallback to default
|
|
47
|
+
return default
|