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,935 @@
|
|
|
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 ReasonCodeId1Enum(object):
|
|
9
|
+
"""Implementation of the 'ReasonCodeId1' enum.
|
|
10
|
+
|
|
11
|
+
Response reason code that provides more detail as to the result of the
|
|
12
|
+
transaction. The reason code list can be found here: Response Reason Codes
|
|
13
|
+
>0 - N/A
|
|
14
|
+
>
|
|
15
|
+
>1000 - CC - Approved / ACH - Accepted
|
|
16
|
+
>
|
|
17
|
+
>1000 - CC - Approved / ACH - Accepted
|
|
18
|
+
>
|
|
19
|
+
>1001 - AuthCompleted
|
|
20
|
+
>
|
|
21
|
+
>1002 - Forced
|
|
22
|
+
>
|
|
23
|
+
>1003 - AuthOnly Declined
|
|
24
|
+
>
|
|
25
|
+
>1004 - Validation Failure (System Run Trx)
|
|
26
|
+
>
|
|
27
|
+
>1005 - Processor Response Invalid
|
|
28
|
+
>
|
|
29
|
+
>1200 - Voided
|
|
30
|
+
>
|
|
31
|
+
>1201 - Partial Approval
|
|
32
|
+
>
|
|
33
|
+
>1240 - Approved, optional fields are missing (Paya ACH only)
|
|
34
|
+
>
|
|
35
|
+
>1301 - Account Deactivated for Fraud
|
|
36
|
+
>
|
|
37
|
+
>1302-1399 - Reserved for Future Fraud Reason Codes
|
|
38
|
+
>
|
|
39
|
+
>1500 - Generic Decline
|
|
40
|
+
>
|
|
41
|
+
>1510 - Call
|
|
42
|
+
>
|
|
43
|
+
>1518 - Transaction Not Permitted - Terminal
|
|
44
|
+
>
|
|
45
|
+
>1520 - Pickup Card
|
|
46
|
+
>
|
|
47
|
+
>1530 - Retry Trx
|
|
48
|
+
>
|
|
49
|
+
>1531 - Communication Error
|
|
50
|
+
>
|
|
51
|
+
>1540 - Setup Issue, contact Support
|
|
52
|
+
>
|
|
53
|
+
>1541 - Device is not signature capable
|
|
54
|
+
>
|
|
55
|
+
>1588 - Data could not be de-tokenized
|
|
56
|
+
>
|
|
57
|
+
>1599 - Other Reason
|
|
58
|
+
>
|
|
59
|
+
>1601 - Generic Decline
|
|
60
|
+
>
|
|
61
|
+
>1602 - Call
|
|
62
|
+
>
|
|
63
|
+
>1603 - No Reply
|
|
64
|
+
>
|
|
65
|
+
>1604 - Pickup Card - No Fraud
|
|
66
|
+
>
|
|
67
|
+
>1605 - Pickup Card - Fraud
|
|
68
|
+
>
|
|
69
|
+
>1606 - Pickup Card - Lost
|
|
70
|
+
>
|
|
71
|
+
>1607 - Pickup Card - Stolen
|
|
72
|
+
>
|
|
73
|
+
>1608 - Account Error
|
|
74
|
+
>
|
|
75
|
+
>1609 - Already Reversed
|
|
76
|
+
>
|
|
77
|
+
>1610 - Bad PIN
|
|
78
|
+
>
|
|
79
|
+
>1611 - Cashback Exceeded
|
|
80
|
+
>
|
|
81
|
+
>1612 - Cashback Not Available
|
|
82
|
+
>
|
|
83
|
+
>1613 - CID Error
|
|
84
|
+
>
|
|
85
|
+
>1614 - Date Error
|
|
86
|
+
>
|
|
87
|
+
>1615 - Do Not Honor
|
|
88
|
+
>
|
|
89
|
+
>1616 - NSF
|
|
90
|
+
>
|
|
91
|
+
>1618 - Invalid Service Code
|
|
92
|
+
>
|
|
93
|
+
>1619 - Exceeded activity limit
|
|
94
|
+
>
|
|
95
|
+
>1620 - Violation
|
|
96
|
+
>
|
|
97
|
+
>1621 - Encryption Error
|
|
98
|
+
>
|
|
99
|
+
>1622 - Card Expired
|
|
100
|
+
>
|
|
101
|
+
>1623 - Renter
|
|
102
|
+
>
|
|
103
|
+
>1624 - Security Violation
|
|
104
|
+
>
|
|
105
|
+
>1625 - Card Not Permitted
|
|
106
|
+
>
|
|
107
|
+
>1626 - Trans Not Permitted
|
|
108
|
+
>
|
|
109
|
+
>1627 - System Error
|
|
110
|
+
>
|
|
111
|
+
>1628 - Bad Merchant ID
|
|
112
|
+
>
|
|
113
|
+
>1629 - Duplicate Batch (Already Closed)
|
|
114
|
+
>
|
|
115
|
+
>1630 - Batch Rejected
|
|
116
|
+
>
|
|
117
|
+
>1631 - Account Closed
|
|
118
|
+
>
|
|
119
|
+
>1632 - PIN tries exceeded
|
|
120
|
+
>
|
|
121
|
+
>
|
|
122
|
+
>
|
|
123
|
+
>
|
|
124
|
+
>
|
|
125
|
+
>
|
|
126
|
+
>
|
|
127
|
+
>
|
|
128
|
+
>
|
|
129
|
+
>
|
|
130
|
+
>
|
|
131
|
+
>
|
|
132
|
+
>
|
|
133
|
+
>
|
|
134
|
+
>
|
|
135
|
+
>1640 - Required fields are missing (ACH only)
|
|
136
|
+
>
|
|
137
|
+
>1641 - Previously declined transaction (1640)
|
|
138
|
+
>
|
|
139
|
+
>
|
|
140
|
+
>
|
|
141
|
+
>
|
|
142
|
+
>
|
|
143
|
+
>
|
|
144
|
+
>
|
|
145
|
+
>
|
|
146
|
+
>
|
|
147
|
+
>
|
|
148
|
+
>
|
|
149
|
+
>
|
|
150
|
+
>
|
|
151
|
+
>
|
|
152
|
+
>
|
|
153
|
+
>
|
|
154
|
+
>
|
|
155
|
+
>1650 - Contact Support
|
|
156
|
+
>
|
|
157
|
+
>1651 - Max Sending - Throttle Limit Hit (ACH only)
|
|
158
|
+
>
|
|
159
|
+
>1652 - Max Attempts Exceeded
|
|
160
|
+
>
|
|
161
|
+
>1653 - Contact Support
|
|
162
|
+
>
|
|
163
|
+
>1654 - Voided - Online Reversal Failed
|
|
164
|
+
>
|
|
165
|
+
>1655 - Decline (AVS Auto Reversal)
|
|
166
|
+
>
|
|
167
|
+
>1656 - Decline (CVV Auto Reversal)
|
|
168
|
+
>
|
|
169
|
+
>1657 - Decline (Partial Auth Auto Reversal)
|
|
170
|
+
>
|
|
171
|
+
>1658 - Expired Authorization
|
|
172
|
+
>
|
|
173
|
+
>1659 - Declined - Partial Approval not Supported
|
|
174
|
+
>
|
|
175
|
+
>1660 - Bank Account Error, please delete and re-add Token
|
|
176
|
+
>
|
|
177
|
+
>1661 - Declined AuthIncrement
|
|
178
|
+
>
|
|
179
|
+
>1662 - Auto Reversal - Processor can't settle
|
|
180
|
+
>
|
|
181
|
+
>1663 - Manager Needed (Needs override transaction)
|
|
182
|
+
>
|
|
183
|
+
>1664 - Token Not Found: Sharing Group Unavailable
|
|
184
|
+
>
|
|
185
|
+
>1665 - Contact Not Found: Sharing Group Unavailable
|
|
186
|
+
>
|
|
187
|
+
>1666 - Amount Error
|
|
188
|
+
>
|
|
189
|
+
>1667 - Action Not Allowed in Current State
|
|
190
|
+
>
|
|
191
|
+
>1668 - Original Authorization Not Valid
|
|
192
|
+
>
|
|
193
|
+
>1701 - Chip Reject
|
|
194
|
+
>
|
|
195
|
+
>1800 - Incorrect CVV
|
|
196
|
+
>
|
|
197
|
+
>1801 - Duplicate Transaction
|
|
198
|
+
>
|
|
199
|
+
>1802 - MID/TID Not Registered
|
|
200
|
+
>
|
|
201
|
+
>1803 - Stop Recurring
|
|
202
|
+
>
|
|
203
|
+
>1804 - No Transactions in Batch
|
|
204
|
+
>
|
|
205
|
+
>1805 - Batch Does Not Exist
|
|
206
|
+
>
|
|
207
|
+
>
|
|
208
|
+
>
|
|
209
|
+
**ACH Reject Reason Codes**
|
|
210
|
+
| Code | E-Code | Verbiage | Short Description | Long Description |
|
|
211
|
+
| ----------- | ----------- | ----------- | ----------- | ----------- |
|
|
212
|
+
| 2101 | Rejected-R01 | | Insufficient funds | Available balance is not
|
|
213
|
+
sufficient to cover the amount of the debit entry |
|
|
214
|
+
| 2102 | Rejected-R02 | E02 | Bank account closed | Previously active amount has
|
|
215
|
+
been closed by the customer of RDFI |
|
|
216
|
+
| 2103 | Rejected-R03 | E03 | No bank account/unable to locate account | Account
|
|
217
|
+
number does not correspond to the individual identified in the entry, or the
|
|
218
|
+
account number designated is not an open account |
|
|
219
|
+
| 2104 | Rejected-R04 | E04 | Invalid bank account number | Account number
|
|
220
|
+
structure is not valid |
|
|
221
|
+
| 2105 | Rejected-R05 | E05 | Reserved | Currently not in use |
|
|
222
|
+
| 2106 | Rejected-R06 | | Returned per ODFI request | ODFI requested the RDFI to
|
|
223
|
+
return the entry |
|
|
224
|
+
| 2107 | Rejected-R07 | E07 | Authorization revoked by customer | Receiver has
|
|
225
|
+
revoked authorization |
|
|
226
|
+
| 2108 | Rejected-R08 | E08 | Payment stopped | Receiver of a recurring debit has
|
|
227
|
+
stopped payment of an entry |
|
|
228
|
+
| 2109 | Rejected-R09 | | Uncollected funds | Collected funds are not sufficient
|
|
229
|
+
for payment of the debit entry |
|
|
230
|
+
| 2110 | Rejected-R10 | E10 | Customer Advises Originator is Not Known to
|
|
231
|
+
Receiver and/or Is Not Authorized by Receiver to Debit Receiver’s Account |
|
|
232
|
+
Receiver has advised RDFI that originator is not authorized to debit his bank
|
|
233
|
+
account |
|
|
234
|
+
| 2111 | Rejected-R11 | | Customer Advises Entry Not In Accordance with the
|
|
235
|
+
Terms of the Authorization | To be used when there is an error in the
|
|
236
|
+
authorization |
|
|
237
|
+
| 2112 | Rejected-R12 | | Branch sold to another RDFI | RDFI unable to post
|
|
238
|
+
entry destined for a bank account maintained at a branch sold to another
|
|
239
|
+
financial institution |
|
|
240
|
+
| 2113 | Rejected-R13 | | RDFI not qualified to participate | Financial
|
|
241
|
+
institution does not receive commercial ACH entries |
|
|
242
|
+
| 2114 | Rejected-R14 | E14 | Representative payee deceased or unable to continue
|
|
243
|
+
in that capacity | The representative payee authorized to accept entries on
|
|
244
|
+
behalf of a beneficiary is either deceased or unable to continue in that capacity
|
|
245
|
+
|
|
|
246
|
+
| 2115 | Rejected-R15 | E15 | Beneficiary or bank account holder deceased |
|
|
247
|
+
(Other than representative payee) deceased* - (1) the beneficiary entitled to
|
|
248
|
+
payments is deceased or (2) the bank account holder other than a representative
|
|
249
|
+
payee is deceased |
|
|
250
|
+
| 2116 | Rejected-R16 | E16 | Bank account frozen | Funds in bank account are
|
|
251
|
+
unavailable due to action by RDFI or legal order |
|
|
252
|
+
| 2117 | Rejected-R17 | | File record edit criteria | Entry with Invalid Account
|
|
253
|
+
Number Initiated Under Questionable Circumstances |
|
|
254
|
+
| 2118 | Rejected-R18 | | Improper effective entry date | Entries have been
|
|
255
|
+
presented prior to the first available processing window for the effective date. |
|
|
256
|
+
| 2119 | Rejected-R19 | | Amount field error | Improper formatting of the amount
|
|
257
|
+
field |
|
|
258
|
+
| 2120 | Rejected-R20 | | Non-payment bank account | Entry destined for
|
|
259
|
+
non-payment bank account defined by reg. |
|
|
260
|
+
| 2121 | Rejected-R21 | | Invalid company Identification | The company ID
|
|
261
|
+
information not valid (normally CIE entries) |
|
|
262
|
+
| 2122 | Rejected-R22 | | Invalid individual ID number | Individual id used by
|
|
263
|
+
receiver is incorrect (CIE entries) |
|
|
264
|
+
| 2123 | Rejected-R23 | | Credit entry refused by receiver | Receiver returned
|
|
265
|
+
entry because minimum or exact amount not remitted, bank account is subject to
|
|
266
|
+
litigation, or payment represents an overpayment, originator is not known to
|
|
267
|
+
receiver or receiver has not authorized this credit entry to this bank account |
|
|
268
|
+
| 2124 | Rejected-R24 | | Duplicate entry | RDFI has received a duplicate entry |
|
|
269
|
+
| 2125 | Rejected-R25 | | Addenda error | Improper formatting of the addenda
|
|
270
|
+
record information |
|
|
271
|
+
| 2126 | Rejected-R26 | | Mandatory field error | Improper information in one of
|
|
272
|
+
the mandatory fields |
|
|
273
|
+
| 2127 | Rejected-R27 | | Trace number error | Original entry trace number is
|
|
274
|
+
not valid for return entry; or addenda trace numbers do not correspond with entry
|
|
275
|
+
detail record |
|
|
276
|
+
| 2128 | Rejected-R28 | | Transit routing number check digit error | Check digit
|
|
277
|
+
for the transit routing number is incorrect |
|
|
278
|
+
| 2129 | Rejected-R29 | E29 | Corporate customer advises not authorized | RDFI
|
|
279
|
+
has been notified by corporate receiver that debit entry of originator is not
|
|
280
|
+
authorized |
|
|
281
|
+
| 2130 | Rejected-R30 | | RDFI not participant in check truncation program |
|
|
282
|
+
Financial institution not participating in automated check safekeeping
|
|
283
|
+
application |
|
|
284
|
+
| 2131 | Rejected-R31 | | Permissible return entry (CCD and CTX only) | RDFI has
|
|
285
|
+
been notified by the ODFI that it agrees to accept a CCD or CTX return entry |
|
|
286
|
+
| 2132 | Rejected-R32 | | RDFI non-settlement | RDFI is not able to settle the
|
|
287
|
+
entry |
|
|
288
|
+
| 2133 | Rejected-R33 | | Return of XCK entry | RDFI determines at its sole
|
|
289
|
+
discretion to return an XCK entry; an XCK return entry may be initiated by
|
|
290
|
+
midnight of the sixtieth day following the settlement date if the XCK entry |
|
|
291
|
+
| 2134 | Rejected-R34 | | Limited participation RDFI | RDFI participation has
|
|
292
|
+
been limited by a federal or state supervisor |
|
|
293
|
+
| 2135 | Rejected-R35 | | Return of improper debit entry | ACH debit not
|
|
294
|
+
permitted for use with the CIE standard entry class code (except for reversals) |
|
|
295
|
+
| 2136 | Rejected-R36 | | Return of Improper Credit Entry | |
|
|
296
|
+
| 2137 | Rejected-R37 | | Source Document Presented for Payment | |
|
|
297
|
+
| 2138 | Rejected-R38 | | Stop Payment on Source Document | |
|
|
298
|
+
| 2139 | Rejected-R39 | | Improper Source Document | |
|
|
299
|
+
| 2140 | Rejected-R40 | | Return of ENR Entry by Federal Government Agency | |
|
|
300
|
+
| 2141 | Rejected-R41 | | Invalid Transaction Code | |
|
|
301
|
+
| 2142 | Rejected-R42 | | Routing Number/Check Digit Error | |
|
|
302
|
+
| 2143 | Rejected-R43 | | Invalid DFI Account Number | |
|
|
303
|
+
| 2144 | Rejected-R44 | | Invalid Individual ID Number/Identification | |
|
|
304
|
+
| 2145 | Rejected-R45 | | Invalid Individual Name/Company Name | |
|
|
305
|
+
| 2146 | Rejected-R46 | | Invalid Representative Payee Indicator | |
|
|
306
|
+
| 2147 | Rejected-R47 | | Duplicate Enrollment | |
|
|
307
|
+
| 2150 | Rejected-R50 | | State Law Affecting RCK Acceptance | |
|
|
308
|
+
| 2151 | Rejected-R51 | | Item is Ineligible, Notice Not Provided, etc. | |
|
|
309
|
+
| 2152 | Rejected-R52 | | Stop Payment on Item (adjustment entries) | |
|
|
310
|
+
| 2153 | Rejected-R53 | | Item and ACH Entry Presented for Payment | |
|
|
311
|
+
| 2161 | Rejected-R61 | | Misrouted Return | |
|
|
312
|
+
| 2162 | Rejected-R62 | | Incorrect Trace Number | |
|
|
313
|
+
| 2163 | Rejected-R63 | | Incorrect Dollar Amount | |
|
|
314
|
+
| 2164 | Rejected-R64 | | Incorrect Individual Identification | |
|
|
315
|
+
| 2165 | Rejected-R65 | | Incorrect Transaction Code | |
|
|
316
|
+
| 2166 | Rejected-R66 | | Incorrect Company Identification | |
|
|
317
|
+
| 2167 | Rejected-R67 | | Duplicate Return | |
|
|
318
|
+
| 2168 | Rejected-R68 | | Untimely Return | |
|
|
319
|
+
| 2169 | Rejected-R69 | | Multiple Errors | |
|
|
320
|
+
| 2170 | Rejected-R70 | | Permissible Return Entry Not Accepted | |
|
|
321
|
+
| 2171 | Rejected-R71 | | Misrouted Dishonored Return | |
|
|
322
|
+
| 2172 | Rejected-R72 | | Untimely Dishonored Return | |
|
|
323
|
+
| 2173 | Rejected-R73 | | Timely Original Return | |
|
|
324
|
+
| 2174 | Rejected-R74 | | Corrected Return | |
|
|
325
|
+
| 2180 | Rejected-R80 | | Cross-Border Payment Coding Error | |
|
|
326
|
+
| 2181 | Rejected-R81 | | Non-Participant in Cross-Border Program | |
|
|
327
|
+
| 2182 | Rejected-R82 | | Invalid Foreign Receiving DFI Identification | |
|
|
328
|
+
| 2183 | Rejected-R83 | | Foreign Receiving DFI Unable to Settle | |
|
|
329
|
+
| 2200 | Voided | | Processor Void | The transaction was voided by the processor
|
|
330
|
+
before being sent to the bank |
|
|
331
|
+
| 2201 | Rejected-C01 | | | |
|
|
332
|
+
| 2202 | Rejected-C02 | | | |
|
|
333
|
+
| 2203 | Rejected-C03 | | | |
|
|
334
|
+
| 2204 | Rejected-C04 | | | |
|
|
335
|
+
| 2205 | Rejected-C05 | | | |
|
|
336
|
+
| 2206 | Rejected-C06 | | | |
|
|
337
|
+
| 2207 | Rejected-C07 | | | |
|
|
338
|
+
| 2208 | Rejected-C08 | | | |
|
|
339
|
+
| 2209 | Rejected-C09 | | | |
|
|
340
|
+
| 2210 | Rejected-C10 | | | |
|
|
341
|
+
| 2211 | Rejected-C11 | | | |
|
|
342
|
+
| 2212 | Rejected-C12 | | | |
|
|
343
|
+
| 2213 | Rejected-C13 | | | |
|
|
344
|
+
| 2261 | Rejected-C61 | | | |
|
|
345
|
+
| 2262 | Rejected-C62 | | | |
|
|
346
|
+
| 2263 | Rejected-C63 | | | |
|
|
347
|
+
| 2264 | Rejected-C64 | | | |
|
|
348
|
+
| 2265 | Rejected-C65 | | | |
|
|
349
|
+
| 2266 | Rejected-C66 | | | |
|
|
350
|
+
| 2267 | Rejected-C67 | | | |
|
|
351
|
+
| 2268 | Rejected-C68 | | | |
|
|
352
|
+
| 2269 | Rejected-C69 | | | |
|
|
353
|
+
| 2301 | Rejected-X01 | | Misc Check 21 Return | |
|
|
354
|
+
| 2304 | Rejected-X04 | | Invalid Image | |
|
|
355
|
+
| 2305 | Rejected-X05 | E95 | Breach of Warranty | |
|
|
356
|
+
| 2306 | Rejected-X06 | E96 | Counterfeit / Forgery | |
|
|
357
|
+
| 2307 | Rejected-X07 | E97 | Refer to Maker | |
|
|
358
|
+
| 2308 | Rejected-X08 | | Maximum Payment Attempts | |
|
|
359
|
+
| 2309 | Rejected-X09 | | Item Cannot be Re-presented | |
|
|
360
|
+
| 2310 | Rejected-X10 | | Not Our Item | |
|
|
361
|
+
| 2321 | Rejected-X21 | | Pay None | |
|
|
362
|
+
| 2322 | Rejected-X22 | | Pay All | |
|
|
363
|
+
| 2323 | Rejected-X23 | E93 | Non-Negotiable | |
|
|
364
|
+
| 2329 | Rejected-X29 | | Stale Dated | |
|
|
365
|
+
| 2345 | Rejected-X45 | | Misc Return | |
|
|
366
|
+
| 2371 | Rejected-X71 | | RCK - 2nd Time | |
|
|
367
|
+
| 2372 | Rejected-X72 | | RCK Reject - ACH | |
|
|
368
|
+
| 2373 | Rejected-X73 | | RCK Reject - Payer | |
|
|
369
|
+
|
|
370
|
+
Attributes:
|
|
371
|
+
ENUM_0: The enum member of type int.
|
|
372
|
+
ENUM_1000: The enum member of type int.
|
|
373
|
+
ENUM_1001: The enum member of type int.
|
|
374
|
+
ENUM_1002: The enum member of type int.
|
|
375
|
+
ENUM_1003: The enum member of type int.
|
|
376
|
+
ENUM_1004: The enum member of type int.
|
|
377
|
+
ENUM_1005: The enum member of type int.
|
|
378
|
+
ENUM_1200: The enum member of type int.
|
|
379
|
+
ENUM_1201: The enum member of type int.
|
|
380
|
+
ENUM_1240: The enum member of type int.
|
|
381
|
+
ENUM_1301: The enum member of type int.
|
|
382
|
+
ENUM_1302: The enum member of type int.
|
|
383
|
+
ENUM_1303: The enum member of type int.
|
|
384
|
+
ENUM_1304: The enum member of type int.
|
|
385
|
+
ENUM_1305: The enum member of type int.
|
|
386
|
+
ENUM_1306: The enum member of type int.
|
|
387
|
+
ENUM_1307: The enum member of type int.
|
|
388
|
+
ENUM_1308: The enum member of type int.
|
|
389
|
+
ENUM_1309: The enum member of type int.
|
|
390
|
+
ENUM_1310: The enum member of type int.
|
|
391
|
+
ENUM_1311: The enum member of type int.
|
|
392
|
+
ENUM_1312: The enum member of type int.
|
|
393
|
+
ENUM_1313: The enum member of type int.
|
|
394
|
+
ENUM_1314: The enum member of type int.
|
|
395
|
+
ENUM_1315: The enum member of type int.
|
|
396
|
+
ENUM_1316: The enum member of type int.
|
|
397
|
+
ENUM_1317: The enum member of type int.
|
|
398
|
+
ENUM_1318: The enum member of type int.
|
|
399
|
+
ENUM_1319: The enum member of type int.
|
|
400
|
+
ENUM_1320: The enum member of type int.
|
|
401
|
+
ENUM_1321: The enum member of type int.
|
|
402
|
+
ENUM_1322: The enum member of type int.
|
|
403
|
+
ENUM_1323: The enum member of type int.
|
|
404
|
+
ENUM_1324: The enum member of type int.
|
|
405
|
+
ENUM_1325: The enum member of type int.
|
|
406
|
+
ENUM_1326: The enum member of type int.
|
|
407
|
+
ENUM_1327: The enum member of type int.
|
|
408
|
+
ENUM_1328: The enum member of type int.
|
|
409
|
+
ENUM_1329: The enum member of type int.
|
|
410
|
+
ENUM_1330: The enum member of type int.
|
|
411
|
+
ENUM_1331: The enum member of type int.
|
|
412
|
+
ENUM_1332: The enum member of type int.
|
|
413
|
+
ENUM_1333: The enum member of type int.
|
|
414
|
+
ENUM_1334: The enum member of type int.
|
|
415
|
+
ENUM_1335: The enum member of type int.
|
|
416
|
+
ENUM_1336: The enum member of type int.
|
|
417
|
+
ENUM_1337: The enum member of type int.
|
|
418
|
+
ENUM_1338: The enum member of type int.
|
|
419
|
+
ENUM_1339: The enum member of type int.
|
|
420
|
+
ENUM_1340: The enum member of type int.
|
|
421
|
+
ENUM_1341: The enum member of type int.
|
|
422
|
+
ENUM_1342: The enum member of type int.
|
|
423
|
+
ENUM_1343: The enum member of type int.
|
|
424
|
+
ENUM_1344: The enum member of type int.
|
|
425
|
+
ENUM_1345: The enum member of type int.
|
|
426
|
+
ENUM_1346: The enum member of type int.
|
|
427
|
+
ENUM_1347: The enum member of type int.
|
|
428
|
+
ENUM_1348: The enum member of type int.
|
|
429
|
+
ENUM_1349: The enum member of type int.
|
|
430
|
+
ENUM_1350: The enum member of type int.
|
|
431
|
+
ENUM_1351: The enum member of type int.
|
|
432
|
+
ENUM_1352: The enum member of type int.
|
|
433
|
+
ENUM_1353: The enum member of type int.
|
|
434
|
+
ENUM_1354: The enum member of type int.
|
|
435
|
+
ENUM_1355: The enum member of type int.
|
|
436
|
+
ENUM_1356: The enum member of type int.
|
|
437
|
+
ENUM_1357: The enum member of type int.
|
|
438
|
+
ENUM_1358: The enum member of type int.
|
|
439
|
+
ENUM_1359: The enum member of type int.
|
|
440
|
+
ENUM_1360: The enum member of type int.
|
|
441
|
+
ENUM_1361: The enum member of type int.
|
|
442
|
+
ENUM_1362: The enum member of type int.
|
|
443
|
+
ENUM_1363: The enum member of type int.
|
|
444
|
+
ENUM_1364: The enum member of type int.
|
|
445
|
+
ENUM_1365: The enum member of type int.
|
|
446
|
+
ENUM_1366: The enum member of type int.
|
|
447
|
+
ENUM_1367: The enum member of type int.
|
|
448
|
+
ENUM_1368: The enum member of type int.
|
|
449
|
+
ENUM_1369: The enum member of type int.
|
|
450
|
+
ENUM_1370: The enum member of type int.
|
|
451
|
+
ENUM_1371: The enum member of type int.
|
|
452
|
+
ENUM_1372: The enum member of type int.
|
|
453
|
+
ENUM_1373: The enum member of type int.
|
|
454
|
+
ENUM_1374: The enum member of type int.
|
|
455
|
+
ENUM_1375: The enum member of type int.
|
|
456
|
+
ENUM_1376: The enum member of type int.
|
|
457
|
+
ENUM_1377: The enum member of type int.
|
|
458
|
+
ENUM_1378: The enum member of type int.
|
|
459
|
+
ENUM_1379: The enum member of type int.
|
|
460
|
+
ENUM_1380: The enum member of type int.
|
|
461
|
+
ENUM_1381: The enum member of type int.
|
|
462
|
+
ENUM_1382: The enum member of type int.
|
|
463
|
+
ENUM_1383: The enum member of type int.
|
|
464
|
+
ENUM_1384: The enum member of type int.
|
|
465
|
+
ENUM_1385: The enum member of type int.
|
|
466
|
+
ENUM_1386: The enum member of type int.
|
|
467
|
+
ENUM_1387: The enum member of type int.
|
|
468
|
+
ENUM_1388: The enum member of type int.
|
|
469
|
+
ENUM_1389: The enum member of type int.
|
|
470
|
+
ENUM_1390: The enum member of type int.
|
|
471
|
+
ENUM_1391: The enum member of type int.
|
|
472
|
+
ENUM_1392: The enum member of type int.
|
|
473
|
+
ENUM_1393: The enum member of type int.
|
|
474
|
+
ENUM_1394: The enum member of type int.
|
|
475
|
+
ENUM_1395: The enum member of type int.
|
|
476
|
+
ENUM_1396: The enum member of type int.
|
|
477
|
+
ENUM_1397: The enum member of type int.
|
|
478
|
+
ENUM_1398: The enum member of type int.
|
|
479
|
+
ENUM_1399: The enum member of type int.
|
|
480
|
+
ENUM_1500: The enum member of type int.
|
|
481
|
+
ENUM_1510: The enum member of type int.
|
|
482
|
+
ENUM_1518: The enum member of type int.
|
|
483
|
+
ENUM_1520: The enum member of type int.
|
|
484
|
+
ENUM_1530: The enum member of type int.
|
|
485
|
+
ENUM_1531: The enum member of type int.
|
|
486
|
+
ENUM_1540: The enum member of type int.
|
|
487
|
+
ENUM_1541: The enum member of type int.
|
|
488
|
+
ENUM_1588: The enum member of type int.
|
|
489
|
+
ENUM_1599: The enum member of type int.
|
|
490
|
+
ENUM_1601: The enum member of type int.
|
|
491
|
+
ENUM_1602: The enum member of type int.
|
|
492
|
+
ENUM_1603: The enum member of type int.
|
|
493
|
+
ENUM_1604: The enum member of type int.
|
|
494
|
+
ENUM_1605: The enum member of type int.
|
|
495
|
+
ENUM_1606: The enum member of type int.
|
|
496
|
+
ENUM_1607: The enum member of type int.
|
|
497
|
+
ENUM_1608: The enum member of type int.
|
|
498
|
+
ENUM_1609: The enum member of type int.
|
|
499
|
+
ENUM_1610: The enum member of type int.
|
|
500
|
+
ENUM_1611: The enum member of type int.
|
|
501
|
+
ENUM_1612: The enum member of type int.
|
|
502
|
+
ENUM_1613: The enum member of type int.
|
|
503
|
+
ENUM_1614: The enum member of type int.
|
|
504
|
+
ENUM_1615: The enum member of type int.
|
|
505
|
+
ENUM_1616: The enum member of type int.
|
|
506
|
+
ENUM_1617: The enum member of type int.
|
|
507
|
+
ENUM_1618: The enum member of type int.
|
|
508
|
+
ENUM_1619: The enum member of type int.
|
|
509
|
+
ENUM_1620: The enum member of type int.
|
|
510
|
+
ENUM_1621: The enum member of type int.
|
|
511
|
+
ENUM_1622: The enum member of type int.
|
|
512
|
+
ENUM_1623: The enum member of type int.
|
|
513
|
+
ENUM_1624: The enum member of type int.
|
|
514
|
+
ENUM_1625: The enum member of type int.
|
|
515
|
+
ENUM_1626: The enum member of type int.
|
|
516
|
+
ENUM_1627: The enum member of type int.
|
|
517
|
+
ENUM_1628: The enum member of type int.
|
|
518
|
+
ENUM_1629: The enum member of type int.
|
|
519
|
+
ENUM_1630: The enum member of type int.
|
|
520
|
+
ENUM_1631: The enum member of type int.
|
|
521
|
+
ENUM_1632: The enum member of type int.
|
|
522
|
+
ENUM_1640: The enum member of type int.
|
|
523
|
+
ENUM_1641: The enum member of type int.
|
|
524
|
+
ENUM_1650: The enum member of type int.
|
|
525
|
+
ENUM_1651: The enum member of type int.
|
|
526
|
+
ENUM_1652: The enum member of type int.
|
|
527
|
+
ENUM_1653: The enum member of type int.
|
|
528
|
+
ENUM_1654: The enum member of type int.
|
|
529
|
+
ENUM_1655: The enum member of type int.
|
|
530
|
+
ENUM_1656: The enum member of type int.
|
|
531
|
+
ENUM_1657: The enum member of type int.
|
|
532
|
+
ENUM_1658: The enum member of type int.
|
|
533
|
+
ENUM_1659: The enum member of type int.
|
|
534
|
+
ENUM_1660: The enum member of type int.
|
|
535
|
+
ENUM_1661: The enum member of type int.
|
|
536
|
+
ENUM_1662: The enum member of type int.
|
|
537
|
+
ENUM_1663: The enum member of type int.
|
|
538
|
+
ENUM_1664: The enum member of type int.
|
|
539
|
+
ENUM_1665: The enum member of type int.
|
|
540
|
+
ENUM_1666: The enum member of type int.
|
|
541
|
+
ENUM_1667: The enum member of type int.
|
|
542
|
+
ENUM_1668: The enum member of type int.
|
|
543
|
+
ENUM_1701: The enum member of type int.
|
|
544
|
+
ENUM_1800: The enum member of type int.
|
|
545
|
+
ENUM_1801: The enum member of type int.
|
|
546
|
+
ENUM_1802: The enum member of type int.
|
|
547
|
+
ENUM_1803: The enum member of type int.
|
|
548
|
+
ENUM_1804: The enum member of type int.
|
|
549
|
+
ENUM_1805: The enum member of type int.
|
|
550
|
+
additional_properties (Dict[str, object]): The additional properties for the
|
|
551
|
+
model.
|
|
552
|
+
|
|
553
|
+
"""
|
|
554
|
+
|
|
555
|
+
ENUM_0 = 0
|
|
556
|
+
|
|
557
|
+
ENUM_1000 = 1000
|
|
558
|
+
|
|
559
|
+
ENUM_1001 = 1001
|
|
560
|
+
|
|
561
|
+
ENUM_1002 = 1002
|
|
562
|
+
|
|
563
|
+
ENUM_1003 = 1003
|
|
564
|
+
|
|
565
|
+
ENUM_1004 = 1004
|
|
566
|
+
|
|
567
|
+
ENUM_1005 = 1005
|
|
568
|
+
|
|
569
|
+
ENUM_1200 = 1200
|
|
570
|
+
|
|
571
|
+
ENUM_1201 = 1201
|
|
572
|
+
|
|
573
|
+
ENUM_1240 = 1240
|
|
574
|
+
|
|
575
|
+
ENUM_1301 = 1301
|
|
576
|
+
|
|
577
|
+
ENUM_1302 = 1302
|
|
578
|
+
|
|
579
|
+
ENUM_1303 = 1303
|
|
580
|
+
|
|
581
|
+
ENUM_1304 = 1304
|
|
582
|
+
|
|
583
|
+
ENUM_1305 = 1305
|
|
584
|
+
|
|
585
|
+
ENUM_1306 = 1306
|
|
586
|
+
|
|
587
|
+
ENUM_1307 = 1307
|
|
588
|
+
|
|
589
|
+
ENUM_1308 = 1308
|
|
590
|
+
|
|
591
|
+
ENUM_1309 = 1309
|
|
592
|
+
|
|
593
|
+
ENUM_1310 = 1310
|
|
594
|
+
|
|
595
|
+
ENUM_1311 = 1311
|
|
596
|
+
|
|
597
|
+
ENUM_1312 = 1312
|
|
598
|
+
|
|
599
|
+
ENUM_1313 = 1313
|
|
600
|
+
|
|
601
|
+
ENUM_1314 = 1314
|
|
602
|
+
|
|
603
|
+
ENUM_1315 = 1315
|
|
604
|
+
|
|
605
|
+
ENUM_1316 = 1316
|
|
606
|
+
|
|
607
|
+
ENUM_1317 = 1317
|
|
608
|
+
|
|
609
|
+
ENUM_1318 = 1318
|
|
610
|
+
|
|
611
|
+
ENUM_1319 = 1319
|
|
612
|
+
|
|
613
|
+
ENUM_1320 = 1320
|
|
614
|
+
|
|
615
|
+
ENUM_1321 = 1321
|
|
616
|
+
|
|
617
|
+
ENUM_1322 = 1322
|
|
618
|
+
|
|
619
|
+
ENUM_1323 = 1323
|
|
620
|
+
|
|
621
|
+
ENUM_1324 = 1324
|
|
622
|
+
|
|
623
|
+
ENUM_1325 = 1325
|
|
624
|
+
|
|
625
|
+
ENUM_1326 = 1326
|
|
626
|
+
|
|
627
|
+
ENUM_1327 = 1327
|
|
628
|
+
|
|
629
|
+
ENUM_1328 = 1328
|
|
630
|
+
|
|
631
|
+
ENUM_1329 = 1329
|
|
632
|
+
|
|
633
|
+
ENUM_1330 = 1330
|
|
634
|
+
|
|
635
|
+
ENUM_1331 = 1331
|
|
636
|
+
|
|
637
|
+
ENUM_1332 = 1332
|
|
638
|
+
|
|
639
|
+
ENUM_1333 = 1333
|
|
640
|
+
|
|
641
|
+
ENUM_1334 = 1334
|
|
642
|
+
|
|
643
|
+
ENUM_1335 = 1335
|
|
644
|
+
|
|
645
|
+
ENUM_1336 = 1336
|
|
646
|
+
|
|
647
|
+
ENUM_1337 = 1337
|
|
648
|
+
|
|
649
|
+
ENUM_1338 = 1338
|
|
650
|
+
|
|
651
|
+
ENUM_1339 = 1339
|
|
652
|
+
|
|
653
|
+
ENUM_1340 = 1340
|
|
654
|
+
|
|
655
|
+
ENUM_1341 = 1341
|
|
656
|
+
|
|
657
|
+
ENUM_1342 = 1342
|
|
658
|
+
|
|
659
|
+
ENUM_1343 = 1343
|
|
660
|
+
|
|
661
|
+
ENUM_1344 = 1344
|
|
662
|
+
|
|
663
|
+
ENUM_1345 = 1345
|
|
664
|
+
|
|
665
|
+
ENUM_1346 = 1346
|
|
666
|
+
|
|
667
|
+
ENUM_1347 = 1347
|
|
668
|
+
|
|
669
|
+
ENUM_1348 = 1348
|
|
670
|
+
|
|
671
|
+
ENUM_1349 = 1349
|
|
672
|
+
|
|
673
|
+
ENUM_1350 = 1350
|
|
674
|
+
|
|
675
|
+
ENUM_1351 = 1351
|
|
676
|
+
|
|
677
|
+
ENUM_1352 = 1352
|
|
678
|
+
|
|
679
|
+
ENUM_1353 = 1353
|
|
680
|
+
|
|
681
|
+
ENUM_1354 = 1354
|
|
682
|
+
|
|
683
|
+
ENUM_1355 = 1355
|
|
684
|
+
|
|
685
|
+
ENUM_1356 = 1356
|
|
686
|
+
|
|
687
|
+
ENUM_1357 = 1357
|
|
688
|
+
|
|
689
|
+
ENUM_1358 = 1358
|
|
690
|
+
|
|
691
|
+
ENUM_1359 = 1359
|
|
692
|
+
|
|
693
|
+
ENUM_1360 = 1360
|
|
694
|
+
|
|
695
|
+
ENUM_1361 = 1361
|
|
696
|
+
|
|
697
|
+
ENUM_1362 = 1362
|
|
698
|
+
|
|
699
|
+
ENUM_1363 = 1363
|
|
700
|
+
|
|
701
|
+
ENUM_1364 = 1364
|
|
702
|
+
|
|
703
|
+
ENUM_1365 = 1365
|
|
704
|
+
|
|
705
|
+
ENUM_1366 = 1366
|
|
706
|
+
|
|
707
|
+
ENUM_1367 = 1367
|
|
708
|
+
|
|
709
|
+
ENUM_1368 = 1368
|
|
710
|
+
|
|
711
|
+
ENUM_1369 = 1369
|
|
712
|
+
|
|
713
|
+
ENUM_1370 = 1370
|
|
714
|
+
|
|
715
|
+
ENUM_1371 = 1371
|
|
716
|
+
|
|
717
|
+
ENUM_1372 = 1372
|
|
718
|
+
|
|
719
|
+
ENUM_1373 = 1373
|
|
720
|
+
|
|
721
|
+
ENUM_1374 = 1374
|
|
722
|
+
|
|
723
|
+
ENUM_1375 = 1375
|
|
724
|
+
|
|
725
|
+
ENUM_1376 = 1376
|
|
726
|
+
|
|
727
|
+
ENUM_1377 = 1377
|
|
728
|
+
|
|
729
|
+
ENUM_1378 = 1378
|
|
730
|
+
|
|
731
|
+
ENUM_1379 = 1379
|
|
732
|
+
|
|
733
|
+
ENUM_1380 = 1380
|
|
734
|
+
|
|
735
|
+
ENUM_1381 = 1381
|
|
736
|
+
|
|
737
|
+
ENUM_1382 = 1382
|
|
738
|
+
|
|
739
|
+
ENUM_1383 = 1383
|
|
740
|
+
|
|
741
|
+
ENUM_1384 = 1384
|
|
742
|
+
|
|
743
|
+
ENUM_1385 = 1385
|
|
744
|
+
|
|
745
|
+
ENUM_1386 = 1386
|
|
746
|
+
|
|
747
|
+
ENUM_1387 = 1387
|
|
748
|
+
|
|
749
|
+
ENUM_1388 = 1388
|
|
750
|
+
|
|
751
|
+
ENUM_1389 = 1389
|
|
752
|
+
|
|
753
|
+
ENUM_1390 = 1390
|
|
754
|
+
|
|
755
|
+
ENUM_1391 = 1391
|
|
756
|
+
|
|
757
|
+
ENUM_1392 = 1392
|
|
758
|
+
|
|
759
|
+
ENUM_1393 = 1393
|
|
760
|
+
|
|
761
|
+
ENUM_1394 = 1394
|
|
762
|
+
|
|
763
|
+
ENUM_1395 = 1395
|
|
764
|
+
|
|
765
|
+
ENUM_1396 = 1396
|
|
766
|
+
|
|
767
|
+
ENUM_1397 = 1397
|
|
768
|
+
|
|
769
|
+
ENUM_1398 = 1398
|
|
770
|
+
|
|
771
|
+
ENUM_1399 = 1399
|
|
772
|
+
|
|
773
|
+
ENUM_1500 = 1500
|
|
774
|
+
|
|
775
|
+
ENUM_1510 = 1510
|
|
776
|
+
|
|
777
|
+
ENUM_1518 = 1518
|
|
778
|
+
|
|
779
|
+
ENUM_1520 = 1520
|
|
780
|
+
|
|
781
|
+
ENUM_1530 = 1530
|
|
782
|
+
|
|
783
|
+
ENUM_1531 = 1531
|
|
784
|
+
|
|
785
|
+
ENUM_1540 = 1540
|
|
786
|
+
|
|
787
|
+
ENUM_1541 = 1541
|
|
788
|
+
|
|
789
|
+
ENUM_1588 = 1588
|
|
790
|
+
|
|
791
|
+
ENUM_1599 = 1599
|
|
792
|
+
|
|
793
|
+
ENUM_1601 = 1601
|
|
794
|
+
|
|
795
|
+
ENUM_1602 = 1602
|
|
796
|
+
|
|
797
|
+
ENUM_1603 = 1603
|
|
798
|
+
|
|
799
|
+
ENUM_1604 = 1604
|
|
800
|
+
|
|
801
|
+
ENUM_1605 = 1605
|
|
802
|
+
|
|
803
|
+
ENUM_1606 = 1606
|
|
804
|
+
|
|
805
|
+
ENUM_1607 = 1607
|
|
806
|
+
|
|
807
|
+
ENUM_1608 = 1608
|
|
808
|
+
|
|
809
|
+
ENUM_1609 = 1609
|
|
810
|
+
|
|
811
|
+
ENUM_1610 = 1610
|
|
812
|
+
|
|
813
|
+
ENUM_1611 = 1611
|
|
814
|
+
|
|
815
|
+
ENUM_1612 = 1612
|
|
816
|
+
|
|
817
|
+
ENUM_1613 = 1613
|
|
818
|
+
|
|
819
|
+
ENUM_1614 = 1614
|
|
820
|
+
|
|
821
|
+
ENUM_1615 = 1615
|
|
822
|
+
|
|
823
|
+
ENUM_1616 = 1616
|
|
824
|
+
|
|
825
|
+
ENUM_1617 = 1617
|
|
826
|
+
|
|
827
|
+
ENUM_1618 = 1618
|
|
828
|
+
|
|
829
|
+
ENUM_1619 = 1619
|
|
830
|
+
|
|
831
|
+
ENUM_1620 = 1620
|
|
832
|
+
|
|
833
|
+
ENUM_1621 = 1621
|
|
834
|
+
|
|
835
|
+
ENUM_1622 = 1622
|
|
836
|
+
|
|
837
|
+
ENUM_1623 = 1623
|
|
838
|
+
|
|
839
|
+
ENUM_1624 = 1624
|
|
840
|
+
|
|
841
|
+
ENUM_1625 = 1625
|
|
842
|
+
|
|
843
|
+
ENUM_1626 = 1626
|
|
844
|
+
|
|
845
|
+
ENUM_1627 = 1627
|
|
846
|
+
|
|
847
|
+
ENUM_1628 = 1628
|
|
848
|
+
|
|
849
|
+
ENUM_1629 = 1629
|
|
850
|
+
|
|
851
|
+
ENUM_1630 = 1630
|
|
852
|
+
|
|
853
|
+
ENUM_1631 = 1631
|
|
854
|
+
|
|
855
|
+
ENUM_1632 = 1632
|
|
856
|
+
|
|
857
|
+
ENUM_1640 = 1640
|
|
858
|
+
|
|
859
|
+
ENUM_1641 = 1641
|
|
860
|
+
|
|
861
|
+
ENUM_1650 = 1650
|
|
862
|
+
|
|
863
|
+
ENUM_1651 = 1651
|
|
864
|
+
|
|
865
|
+
ENUM_1652 = 1652
|
|
866
|
+
|
|
867
|
+
ENUM_1653 = 1653
|
|
868
|
+
|
|
869
|
+
ENUM_1654 = 1654
|
|
870
|
+
|
|
871
|
+
ENUM_1655 = 1655
|
|
872
|
+
|
|
873
|
+
ENUM_1656 = 1656
|
|
874
|
+
|
|
875
|
+
ENUM_1657 = 1657
|
|
876
|
+
|
|
877
|
+
ENUM_1658 = 1658
|
|
878
|
+
|
|
879
|
+
ENUM_1659 = 1659
|
|
880
|
+
|
|
881
|
+
ENUM_1660 = 1660
|
|
882
|
+
|
|
883
|
+
ENUM_1661 = 1661
|
|
884
|
+
|
|
885
|
+
ENUM_1662 = 1662
|
|
886
|
+
|
|
887
|
+
ENUM_1663 = 1663
|
|
888
|
+
|
|
889
|
+
ENUM_1664 = 1664
|
|
890
|
+
|
|
891
|
+
ENUM_1665 = 1665
|
|
892
|
+
|
|
893
|
+
ENUM_1666 = 1666
|
|
894
|
+
|
|
895
|
+
ENUM_1667 = 1667
|
|
896
|
+
|
|
897
|
+
ENUM_1668 = 1668
|
|
898
|
+
|
|
899
|
+
ENUM_1701 = 1701
|
|
900
|
+
|
|
901
|
+
ENUM_1800 = 1800
|
|
902
|
+
|
|
903
|
+
ENUM_1801 = 1801
|
|
904
|
+
|
|
905
|
+
ENUM_1802 = 1802
|
|
906
|
+
|
|
907
|
+
ENUM_1803 = 1803
|
|
908
|
+
|
|
909
|
+
ENUM_1804 = 1804
|
|
910
|
+
|
|
911
|
+
ENUM_1805 = 1805
|
|
912
|
+
|
|
913
|
+
@classmethod
|
|
914
|
+
def from_value(cls, value, default=None):
|
|
915
|
+
"""Return the matching enum value for the given input."""
|
|
916
|
+
if value is None:
|
|
917
|
+
return default
|
|
918
|
+
|
|
919
|
+
# If numeric and matches directly
|
|
920
|
+
if isinstance(value, int):
|
|
921
|
+
for name, val in cls.__dict__.items():
|
|
922
|
+
if not name.startswith("_") and val == value:
|
|
923
|
+
return val
|
|
924
|
+
|
|
925
|
+
# If string, perform case-insensitive match
|
|
926
|
+
if isinstance(value, str):
|
|
927
|
+
value_lower = value.lower()
|
|
928
|
+
for name, val in cls.__dict__.items():
|
|
929
|
+
if not name.startswith("_") and (
|
|
930
|
+
name.lower() == value_lower or str(val).lower() == value_lower
|
|
931
|
+
):
|
|
932
|
+
return val
|
|
933
|
+
|
|
934
|
+
# Fallback to default
|
|
935
|
+
return default
|