postfinancecheckout 6.3.0__tar.gz → 6.4.0__tar.gz
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.
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/PKG-INFO +1 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/README.md +22 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/__init__.py +9 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/api_client.py +1 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/configuration.py +1 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/__init__.py +7 -0
- postfinancecheckout-6.4.0/postfinancecheckout/models/bogus_express_checkout_approval_request.py +102 -0
- postfinancecheckout-6.4.0/postfinancecheckout/models/bogus_express_checkout_payment_data.py +104 -0
- postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_approval_response.py +107 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_create_response.py +4 -2
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_session.py +20 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_session_create.py +6 -2
- postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_shipping_address_change_request.py +107 -0
- postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_shipping_address_change_response.py +112 -0
- postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_shipping_method_change_request.py +100 -0
- postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_shipping_method_change_response.py +112 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_shipping_option.py +1 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund.py +5 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_create.py +4 -2
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/scope.py +3 -3
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_update_request.py +18 -5
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion.py +5 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion_details.py +7 -3
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_user_interface_type.py +1 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/__init__.py +1 -0
- postfinancecheckout-6.3.0/postfinancecheckout/service/express_checkout_service.py → postfinancecheckout-6.4.0/postfinancecheckout/service/bogus_express_checkout_service.py +52 -35
- postfinancecheckout-6.4.0/postfinancecheckout/service/express_checkout_service.py +895 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/PKG-INFO +1 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/SOURCES.txt +8 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/pyproject.toml +1 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/setup.py +1 -1
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/tests/test_querying.py +9 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/api_exception_error_codes.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/api_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/exceptions.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_account_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_application_user_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_customer_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_customer_address_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_customer_comment_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_human_user_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_connector_configuration_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_link_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_method_configuration_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_processor_configuration_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_terminal_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_refund_comment_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_role_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_single_sign_on_user_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_space_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_subscriber_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_subscription_affiliate_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_subscription_metric_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_subscription_product_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_token_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_transaction_comment_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_transaction_invoice_comment_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_transaction_pending.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_webhook_listener_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_webhook_url_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/address.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/address_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/analytics_query_execution_request.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/analytics_query_execution_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_key_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_create_with_mac_key.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/authenticated_card_data.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/authenticated_card_data_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/authenticated_card_request.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_environment.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_flow_direction.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_source.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/billing_cycle_model.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/billing_cycle_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/billing_day_customization.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/card_authentication_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/card_authentication_version.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/card_cryptogram.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/card_cryptogram_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/cardholder_authentication.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/cardholder_authentication_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt_environment.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_bank_transaction.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_bank_transaction_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_bank_transaction_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_configuration.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_configuration_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_payment_link.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_payment_link_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_payment_link_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/client_platform_information_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/client_platform_information_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/completion_line_item.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/completion_line_item_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/completion_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/completion_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/condition.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/condition_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/condition_type_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/condition_type_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/connector_invocation.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/connector_invocation_stage.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/country_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/country_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/creation_entity_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_bank_account.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_bank_account_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_bank_account_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_email_address_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_postal_address.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_postal_address_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customers_presence.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/data_collection_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication_decision_reason.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/displayable_day_of_week.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/displayable_month.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_type_group.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_type_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_type_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_case.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_case_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_case_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_case_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_condition.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_condition_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_level.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_level_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_level_processor.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_level_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/environment.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_session_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_wallet_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/external_transfer_bank_transaction.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/external_transfer_bank_transaction_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/external_transfer_bank_transaction_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/facade_user_friendly_query_status_model.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/failure_category.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/failure_reason.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/feature.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/feature_category.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/gender.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/internal_transfer_bank_transaction.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/internal_transfer_bank_transaction_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/internal_transfer_bank_transaction_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/invoice_comment_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/invoice_comment_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/invoice_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/invoice_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_category.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_group.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_group_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_group_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/language_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/language_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/legal_organization_form.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/legal_organization_form_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/legal_organization_form_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_attribute.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_attribute_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_reduction.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_reduction_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_version_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_version_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/localized_string.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_action.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_action_style.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/metric_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/metric_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/metric_usage_report_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/metric_usage_report_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/one_click_payment_mode.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/pan_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_adjustment.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_adjustment_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_feature.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_contract.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_contract_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_contract_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_information_hash.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_information_hash_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_address_handling_mode.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_protection_mode.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_brand.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_brand_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_brand_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_primary_risk_taker.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_address.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_configuration.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_configuration_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_configuration_version.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_configuration_version_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_dcc_transaction_sum.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_location.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_location_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_location_version.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_location_version_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_preparing.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_receipt_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_transaction_sum.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_transaction_summary.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_transaction_summary_reference.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/permission.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/permission_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/permission_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/persistable_currency_amount.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/persistable_currency_amount_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_component_group_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_component_group_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_component_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_component_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_fee_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_tier_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_tier_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_tier_fee.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_tier_fee_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_tier_pricing.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_period_fee.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_period_fee_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_period_fee_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_period_fee_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_retirement_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_retirement_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_setup_fee.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_setup_fee_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_setup_fee_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_setup_fee_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_version_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_version_retirement_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_version_retirement_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_version_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/recurring_indicator.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_bank_transaction.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_bank_transaction_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_bank_transaction_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_recovery_bank_transaction.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_recovery_bank_transaction_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_recovery_bank_transaction_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rendered_document.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rendered_terminal_receipt.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rendered_terminal_receipt_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rendered_terminal_transaction_summary.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_address_format.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_address_format_field.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_api_bulk_operation_result.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_api_error_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_application_user_mac_key.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_application_user_mac_key_created.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_country.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_country_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_currency.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_customer_email_address.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_language.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/result_portion_model.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/sales_channel.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/sales_channel_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/sales_channel_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/scope_single_sign_on_provider.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/sorting_order.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_address.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_address_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_view.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/static_value.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/static_value_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/static_value_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/submitted_analytics_query_execution.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_deleted.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_deleting.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_inactive.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_processing_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_component_configuration.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_component_reference_configuration.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_create_request.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_initialize_subscriber_present_request.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_usage_report.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_usage_report_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_pending.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_period_bill.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_period_bill_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_period_bill_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_period_bill_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_group.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_group_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_reference.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_reference_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_retirement.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_retirement_request.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version_pending.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version_retirement.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version_retirement_request.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_suspension.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_suspension_action.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_suspension_reason.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_suspension_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_version.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_version_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_version_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_version_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/suspension_creation_request.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/suspension_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/suspension_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tax.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tax_calculation.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tax_class.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tax_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tenant_database.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/terminal_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/terminal_receipt_format.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/terminal_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/terminal_transaction_summary_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/terminal_transaction_summary_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_retry_strategy.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tokenization_mode.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tokenized_card_data.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tokenized_card_data_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tokenized_card_request.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_client_platform_information.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion_behavior.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion_mode.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_environment_selection_strategy.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_group.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_group_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_comment.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_comment_active.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_comment_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_replacement.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_line_item_version.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_line_item_version_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_line_item_version_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_pending.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void_mode.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void_state.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/two_factor_authentication_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_account_role.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_account_role_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_space_role.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_space_role_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/wallet_type.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/web_app_confirmation_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_identity.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_entity.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url_create.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url_list_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url_search_response.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url_update.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/postfinancecheckout_sdk_exception.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/py.typed +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/rest.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/sdk_exception_error_codes.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/accounts_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/analytics_queries_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/application_users_roles_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/application_users_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/bank_accounts_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/bank_transactions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_attempts_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_bank_transactions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_flow_levels_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_flows_level_payment_links_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_flows_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/condition_types_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/countries_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/currencies_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/currency_bank_accounts_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/customer_addresses_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/customer_comments_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/customers_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/delivery_indications_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/document_template_types_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/document_templates_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/dunning_cases_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/dunning_flow_levels_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/dunning_flows_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/external_transfer_bank_transactions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/human_users_roles_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/human_users_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/internal_transfer_bank_transactions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/label_descriptors_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/languages_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/legal_organization_forms_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/manual_tasks_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_connector_configurations_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_connectors_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_links_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_method_brands_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_method_configurations_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_methods_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_processor_configurations_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_processors_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_sales_channels_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_terminal_transaction_summaries_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_terminals_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/permissions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/refund_bank_transactions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/refund_comments_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/refund_recovery_bank_transactions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/refunds_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/roles_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/single_sign_on_users_roles_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/single_sign_on_users_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/spaces_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/static_values_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscribers_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_affiliates_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_charges_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_ledger_entries_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_metric_usage_reports_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_metrics_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_period_bills_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_component_groups_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_components_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_metered_fee_tiers_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_metered_fees_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_period_fees_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_retirements_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_setup_fees_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_version_retirements_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_versions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_products_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_suspensions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_versions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscriptions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/token_versions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/tokens_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_client_platforms_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_comments_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_completions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_invoice_comments_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_invoices_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_line_item_versions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_voids_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transactions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/web_apps_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/webhook_encryption_keys_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/webhook_listeners_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/webhook_urls_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/utils/__init__.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/utils/encryption_util.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/dependency_links.txt +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/requires.txt +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/top_level.txt +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/setup.cfg +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/tests/test_encryption_util.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/tests/test_refunds_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/tests/test_transaction_completions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/tests/test_transactions_service.py +0 -0
- {postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/tests/test_webhook_listeners_api.py +0 -0
|
@@ -263,6 +263,11 @@ Web Api client: [*link*](https://checkout.postfinance.ch//api/client)<br>
|
|
|
263
263
|
<strong>GET</strong> /payment/bank-transactions/search
|
|
264
264
|
Search bank transactions
|
|
265
265
|
<br><br>
|
|
266
|
+
- <strong>BogusExpressCheckoutService</strong><br>
|
|
267
|
+
* <code>post_bogus_express_checkout_on_approve</code>
|
|
268
|
+
<strong>POST</strong> /bogus-express-checkout/on-approve
|
|
269
|
+
Approve express checkout wallet payment
|
|
270
|
+
<br><br>
|
|
266
271
|
- <strong>ChargeAttemptsService</strong><br>
|
|
267
272
|
* <code>get_payment_charge_attempts</code>
|
|
268
273
|
<strong>GET</strong> /payment/charge-attempts
|
|
@@ -658,6 +663,16 @@ Web Api client: [*link*](https://checkout.postfinance.ch//api/client)<br>
|
|
|
658
663
|
<strong>GET</strong> /payment/dunning-flows/search
|
|
659
664
|
Search dunning flows
|
|
660
665
|
<br><br>
|
|
666
|
+
- <strong>ExpressCheckoutService</strong><br>
|
|
667
|
+
* <code>patch_express_checkout_shipping_address_change</code>
|
|
668
|
+
<strong>PATCH</strong> /express-checkout/shipping/address-change
|
|
669
|
+
Change shipping address
|
|
670
|
+
<br><br>
|
|
671
|
+
- <strong>ExpressCheckoutService</strong><br>
|
|
672
|
+
* <code>patch_express_checkout_shipping_method_change</code>
|
|
673
|
+
<strong>PATCH</strong> /express-checkout/shipping/method-change
|
|
674
|
+
Change shipping method
|
|
675
|
+
<br><br>
|
|
661
676
|
- <strong>ExpressCheckoutService</strong><br>
|
|
662
677
|
* <code>post_express_checkout_create_session</code>
|
|
663
678
|
<strong>POST</strong> /express-checkout/create-session
|
|
@@ -2530,6 +2545,8 @@ Additional Api models documentation: [*link*](https://checkout.postfinance.ch/en
|
|
|
2530
2545
|
* <strong>BillingCycleModel</strong>
|
|
2531
2546
|
* <strong>BillingCycleType</strong>
|
|
2532
2547
|
* <strong>BillingDayCustomization</strong>
|
|
2548
|
+
* <strong>BogusExpressCheckoutApprovalRequest</strong>
|
|
2549
|
+
* <strong>BogusExpressCheckoutPaymentData</strong>
|
|
2533
2550
|
* <strong>CardAuthenticationResponse</strong>
|
|
2534
2551
|
* <strong>CardAuthenticationVersion</strong>
|
|
2535
2552
|
* <strong>CardCryptogram</strong>
|
|
@@ -2629,10 +2646,15 @@ Additional Api models documentation: [*link*](https://checkout.postfinance.ch/en
|
|
|
2629
2646
|
* <strong>DunningFlowSearchResponse</strong>
|
|
2630
2647
|
* <strong>DunningFlowType</strong>
|
|
2631
2648
|
* <strong>Environment</strong>
|
|
2649
|
+
* <strong>ExpressCheckoutApprovalResponse</strong>
|
|
2632
2650
|
* <strong>ExpressCheckoutCreateResponse</strong>
|
|
2633
2651
|
* <strong>ExpressCheckoutSession</strong>
|
|
2634
2652
|
* <strong>ExpressCheckoutSessionCreate</strong>
|
|
2635
2653
|
* <strong>ExpressCheckoutSessionState</strong>
|
|
2654
|
+
* <strong>ExpressCheckoutShippingAddressChangeRequest</strong>
|
|
2655
|
+
* <strong>ExpressCheckoutShippingAddressChangeResponse</strong>
|
|
2656
|
+
* <strong>ExpressCheckoutShippingMethodChangeRequest</strong>
|
|
2657
|
+
* <strong>ExpressCheckoutShippingMethodChangeResponse</strong>
|
|
2636
2658
|
* <strong>ExpressCheckoutShippingOption</strong>
|
|
2637
2659
|
* <strong>ExpressCheckoutWalletType</strong>
|
|
2638
2660
|
* <strong>ExternalTransferBankTransaction</strong>
|
|
@@ -25,7 +25,7 @@ limitations under the License.
|
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
__version__ = "6.
|
|
28
|
+
__version__ = "6.4.0"
|
|
29
29
|
|
|
30
30
|
# import apis into sdk package
|
|
31
31
|
from postfinancecheckout.service.accounts_service import AccountsService
|
|
@@ -34,6 +34,7 @@ from postfinancecheckout.service.application_users_service import ApplicationUse
|
|
|
34
34
|
from postfinancecheckout.service.application_users_roles_service import ApplicationUsersRolesService
|
|
35
35
|
from postfinancecheckout.service.bank_accounts_service import BankAccountsService
|
|
36
36
|
from postfinancecheckout.service.bank_transactions_service import BankTransactionsService
|
|
37
|
+
from postfinancecheckout.service.bogus_express_checkout_service import BogusExpressCheckoutService
|
|
37
38
|
from postfinancecheckout.service.charge_attempts_service import ChargeAttemptsService
|
|
38
39
|
from postfinancecheckout.service.charge_bank_transactions_service import ChargeBankTransactionsService
|
|
39
40
|
from postfinancecheckout.service.charge_flow_levels_service import ChargeFlowLevelsService
|
|
@@ -197,6 +198,8 @@ from postfinancecheckout.models.bank_transaction_type import BankTransactionType
|
|
|
197
198
|
from postfinancecheckout.models.billing_cycle_model import BillingCycleModel
|
|
198
199
|
from postfinancecheckout.models.billing_cycle_type import BillingCycleType
|
|
199
200
|
from postfinancecheckout.models.billing_day_customization import BillingDayCustomization
|
|
201
|
+
from postfinancecheckout.models.bogus_express_checkout_approval_request import BogusExpressCheckoutApprovalRequest
|
|
202
|
+
from postfinancecheckout.models.bogus_express_checkout_payment_data import BogusExpressCheckoutPaymentData
|
|
200
203
|
from postfinancecheckout.models.card_authentication_response import CardAuthenticationResponse
|
|
201
204
|
from postfinancecheckout.models.card_authentication_version import CardAuthenticationVersion
|
|
202
205
|
from postfinancecheckout.models.card_cryptogram import CardCryptogram
|
|
@@ -296,10 +299,15 @@ from postfinancecheckout.models.dunning_flow_list_response import DunningFlowLis
|
|
|
296
299
|
from postfinancecheckout.models.dunning_flow_search_response import DunningFlowSearchResponse
|
|
297
300
|
from postfinancecheckout.models.dunning_flow_type import DunningFlowType
|
|
298
301
|
from postfinancecheckout.models.environment import Environment
|
|
302
|
+
from postfinancecheckout.models.express_checkout_approval_response import ExpressCheckoutApprovalResponse
|
|
299
303
|
from postfinancecheckout.models.express_checkout_create_response import ExpressCheckoutCreateResponse
|
|
300
304
|
from postfinancecheckout.models.express_checkout_session import ExpressCheckoutSession
|
|
301
305
|
from postfinancecheckout.models.express_checkout_session_create import ExpressCheckoutSessionCreate
|
|
302
306
|
from postfinancecheckout.models.express_checkout_session_state import ExpressCheckoutSessionState
|
|
307
|
+
from postfinancecheckout.models.express_checkout_shipping_address_change_request import ExpressCheckoutShippingAddressChangeRequest
|
|
308
|
+
from postfinancecheckout.models.express_checkout_shipping_address_change_response import ExpressCheckoutShippingAddressChangeResponse
|
|
309
|
+
from postfinancecheckout.models.express_checkout_shipping_method_change_request import ExpressCheckoutShippingMethodChangeRequest
|
|
310
|
+
from postfinancecheckout.models.express_checkout_shipping_method_change_response import ExpressCheckoutShippingMethodChangeResponse
|
|
303
311
|
from postfinancecheckout.models.express_checkout_shipping_option import ExpressCheckoutShippingOption
|
|
304
312
|
from postfinancecheckout.models.express_checkout_wallet_type import ExpressCheckoutWalletType
|
|
305
313
|
from postfinancecheckout.models.external_transfer_bank_transaction import ExternalTransferBankTransaction
|
|
@@ -181,7 +181,7 @@ class ApiClient:
|
|
|
181
181
|
|
|
182
182
|
# predefined default headers
|
|
183
183
|
default_headers = {
|
|
184
|
-
'x-meta-sdk-version': '6.
|
|
184
|
+
'x-meta-sdk-version': '6.4.0',
|
|
185
185
|
'x-meta-sdk-language': 'python',
|
|
186
186
|
'x-meta-sdk-provider': 'postfinancecheckout',
|
|
187
187
|
'x-meta-sdk-language-version': platform.python_version()
|
{postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/configuration.py
RENAMED
|
@@ -347,7 +347,7 @@ class Configuration:
|
|
|
347
347
|
"OS: {env}\n"\
|
|
348
348
|
"Python Version: {pyversion}\n"\
|
|
349
349
|
"Version of the API: 2.0\n"\
|
|
350
|
-
"SDK Package Version: 6.
|
|
350
|
+
"SDK Package Version: 6.4.0".\
|
|
351
351
|
format(env=sys.platform, pyversion=sys.version)
|
|
352
352
|
|
|
353
353
|
def get_host_settings(self) -> List[HostSetting]:
|
{postfinancecheckout-6.3.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/__init__.py
RENAMED
|
@@ -87,6 +87,8 @@ from postfinancecheckout.models.bank_transaction_type import BankTransactionType
|
|
|
87
87
|
from postfinancecheckout.models.billing_cycle_model import BillingCycleModel
|
|
88
88
|
from postfinancecheckout.models.billing_cycle_type import BillingCycleType
|
|
89
89
|
from postfinancecheckout.models.billing_day_customization import BillingDayCustomization
|
|
90
|
+
from postfinancecheckout.models.bogus_express_checkout_approval_request import BogusExpressCheckoutApprovalRequest
|
|
91
|
+
from postfinancecheckout.models.bogus_express_checkout_payment_data import BogusExpressCheckoutPaymentData
|
|
90
92
|
from postfinancecheckout.models.card_authentication_response import CardAuthenticationResponse
|
|
91
93
|
from postfinancecheckout.models.card_authentication_version import CardAuthenticationVersion
|
|
92
94
|
from postfinancecheckout.models.card_cryptogram import CardCryptogram
|
|
@@ -186,10 +188,15 @@ from postfinancecheckout.models.dunning_flow_list_response import DunningFlowLis
|
|
|
186
188
|
from postfinancecheckout.models.dunning_flow_search_response import DunningFlowSearchResponse
|
|
187
189
|
from postfinancecheckout.models.dunning_flow_type import DunningFlowType
|
|
188
190
|
from postfinancecheckout.models.environment import Environment
|
|
191
|
+
from postfinancecheckout.models.express_checkout_approval_response import ExpressCheckoutApprovalResponse
|
|
189
192
|
from postfinancecheckout.models.express_checkout_create_response import ExpressCheckoutCreateResponse
|
|
190
193
|
from postfinancecheckout.models.express_checkout_session import ExpressCheckoutSession
|
|
191
194
|
from postfinancecheckout.models.express_checkout_session_create import ExpressCheckoutSessionCreate
|
|
192
195
|
from postfinancecheckout.models.express_checkout_session_state import ExpressCheckoutSessionState
|
|
196
|
+
from postfinancecheckout.models.express_checkout_shipping_address_change_request import ExpressCheckoutShippingAddressChangeRequest
|
|
197
|
+
from postfinancecheckout.models.express_checkout_shipping_address_change_response import ExpressCheckoutShippingAddressChangeResponse
|
|
198
|
+
from postfinancecheckout.models.express_checkout_shipping_method_change_request import ExpressCheckoutShippingMethodChangeRequest
|
|
199
|
+
from postfinancecheckout.models.express_checkout_shipping_method_change_response import ExpressCheckoutShippingMethodChangeResponse
|
|
193
200
|
from postfinancecheckout.models.express_checkout_shipping_option import ExpressCheckoutShippingOption
|
|
194
201
|
from postfinancecheckout.models.express_checkout_wallet_type import ExpressCheckoutWalletType
|
|
195
202
|
from postfinancecheckout.models.external_transfer_bank_transaction import ExternalTransferBankTransaction
|
postfinancecheckout-6.4.0/postfinancecheckout/models/bogus_express_checkout_approval_request.py
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
PostFinance Python SDK
|
|
5
|
+
|
|
6
|
+
This library allows to interact with the PostFinance payment service.
|
|
7
|
+
|
|
8
|
+
Copyright owner: Wallee AG
|
|
9
|
+
Website: https://www.postfinance.ch/en/private.html
|
|
10
|
+
Developer email: ecosystem-team@wallee.com
|
|
11
|
+
|
|
12
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
13
|
+
you may not use this file except in compliance with the License.
|
|
14
|
+
You may obtain a copy of the License at
|
|
15
|
+
|
|
16
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
17
|
+
|
|
18
|
+
Unless required by applicable law or agreed to in writing, software
|
|
19
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
20
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
21
|
+
See the License for the specific language governing permissions and
|
|
22
|
+
limitations under the License.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
from __future__ import annotations
|
|
27
|
+
import pprint
|
|
28
|
+
import re # noqa: F401
|
|
29
|
+
import json
|
|
30
|
+
|
|
31
|
+
from pydantic import BaseModel, ConfigDict, Field
|
|
32
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
33
|
+
from postfinancecheckout.models.bogus_express_checkout_payment_data import BogusExpressCheckoutPaymentData
|
|
34
|
+
from typing import Optional, Set
|
|
35
|
+
from typing_extensions import Self
|
|
36
|
+
|
|
37
|
+
class BogusExpressCheckoutApprovalRequest(BaseModel):
|
|
38
|
+
"""
|
|
39
|
+
BogusExpressCheckoutApprovalRequest
|
|
40
|
+
""" # noqa: E501
|
|
41
|
+
payment_data: Optional[BogusExpressCheckoutPaymentData] = Field(default=None, alias="paymentData")
|
|
42
|
+
__properties: ClassVar[List[str]] = ["paymentData"]
|
|
43
|
+
|
|
44
|
+
model_config = ConfigDict(
|
|
45
|
+
populate_by_name=True,
|
|
46
|
+
validate_assignment=True,
|
|
47
|
+
protected_namespaces=(),
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def to_str(self) -> str:
|
|
52
|
+
"""Returns the string representation of the model using alias"""
|
|
53
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
54
|
+
|
|
55
|
+
def to_json(self) -> str:
|
|
56
|
+
"""Returns the JSON representation of the model using alias"""
|
|
57
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
58
|
+
return json.dumps(self.to_dict())
|
|
59
|
+
|
|
60
|
+
@classmethod
|
|
61
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
62
|
+
"""Create an instance of BogusExpressCheckoutApprovalRequest from a JSON string"""
|
|
63
|
+
return cls.from_dict(json.loads(json_str))
|
|
64
|
+
|
|
65
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
66
|
+
"""Return the dictionary representation of the model using alias.
|
|
67
|
+
|
|
68
|
+
This has the following differences from calling pydantic's
|
|
69
|
+
`self.model_dump(by_alias=True)`:
|
|
70
|
+
|
|
71
|
+
* `None` is only added to the output dict for nullable fields that
|
|
72
|
+
were set at model initialization. Other fields with value `None`
|
|
73
|
+
are ignored.
|
|
74
|
+
"""
|
|
75
|
+
excluded_fields: Set[str] = set([
|
|
76
|
+
])
|
|
77
|
+
|
|
78
|
+
_dict = self.model_dump(
|
|
79
|
+
by_alias=True,
|
|
80
|
+
exclude=excluded_fields,
|
|
81
|
+
exclude_none=True,
|
|
82
|
+
)
|
|
83
|
+
# override the default output from pydantic by calling `to_dict()` of payment_data
|
|
84
|
+
if self.payment_data:
|
|
85
|
+
_dict['paymentData'] = self.payment_data.to_dict()
|
|
86
|
+
return _dict
|
|
87
|
+
|
|
88
|
+
@classmethod
|
|
89
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
90
|
+
"""Create an instance of BogusExpressCheckoutApprovalRequest from a dict"""
|
|
91
|
+
if obj is None:
|
|
92
|
+
return None
|
|
93
|
+
|
|
94
|
+
if not isinstance(obj, dict):
|
|
95
|
+
return cls.model_validate(obj)
|
|
96
|
+
|
|
97
|
+
_obj = cls.model_validate({
|
|
98
|
+
"paymentData": BogusExpressCheckoutPaymentData.from_dict(obj["paymentData"]) if obj.get("paymentData") is not None else None
|
|
99
|
+
})
|
|
100
|
+
return _obj
|
|
101
|
+
|
|
102
|
+
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
PostFinance Python SDK
|
|
5
|
+
|
|
6
|
+
This library allows to interact with the PostFinance payment service.
|
|
7
|
+
|
|
8
|
+
Copyright owner: Wallee AG
|
|
9
|
+
Website: https://www.postfinance.ch/en/private.html
|
|
10
|
+
Developer email: ecosystem-team@wallee.com
|
|
11
|
+
|
|
12
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
13
|
+
you may not use this file except in compliance with the License.
|
|
14
|
+
You may obtain a copy of the License at
|
|
15
|
+
|
|
16
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
17
|
+
|
|
18
|
+
Unless required by applicable law or agreed to in writing, software
|
|
19
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
20
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
21
|
+
See the License for the specific language governing permissions and
|
|
22
|
+
limitations under the License.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
from __future__ import annotations
|
|
27
|
+
import pprint
|
|
28
|
+
import re # noqa: F401
|
|
29
|
+
import json
|
|
30
|
+
|
|
31
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
32
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
33
|
+
from typing import Optional, Set
|
|
34
|
+
from typing_extensions import Self
|
|
35
|
+
|
|
36
|
+
class BogusExpressCheckoutPaymentData(BaseModel):
|
|
37
|
+
"""
|
|
38
|
+
BogusExpressCheckoutPaymentData
|
|
39
|
+
""" # noqa: E501
|
|
40
|
+
payment_token: Optional[StrictStr] = Field(default=None, description="Wallet-generated payment token collected during approval.", alias="paymentToken")
|
|
41
|
+
cryptogram: Optional[StrictStr] = Field(default=None, description="Wallet-generated cryptogram collected during approval.")
|
|
42
|
+
__properties: ClassVar[List[str]] = ["paymentToken", "cryptogram"]
|
|
43
|
+
|
|
44
|
+
model_config = ConfigDict(
|
|
45
|
+
populate_by_name=True,
|
|
46
|
+
validate_assignment=True,
|
|
47
|
+
protected_namespaces=(),
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def to_str(self) -> str:
|
|
52
|
+
"""Returns the string representation of the model using alias"""
|
|
53
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
54
|
+
|
|
55
|
+
def to_json(self) -> str:
|
|
56
|
+
"""Returns the JSON representation of the model using alias"""
|
|
57
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
58
|
+
return json.dumps(self.to_dict())
|
|
59
|
+
|
|
60
|
+
@classmethod
|
|
61
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
62
|
+
"""Create an instance of BogusExpressCheckoutPaymentData from a JSON string"""
|
|
63
|
+
return cls.from_dict(json.loads(json_str))
|
|
64
|
+
|
|
65
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
66
|
+
"""Return the dictionary representation of the model using alias.
|
|
67
|
+
|
|
68
|
+
This has the following differences from calling pydantic's
|
|
69
|
+
`self.model_dump(by_alias=True)`:
|
|
70
|
+
|
|
71
|
+
* `None` is only added to the output dict for nullable fields that
|
|
72
|
+
were set at model initialization. Other fields with value `None`
|
|
73
|
+
are ignored.
|
|
74
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
75
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
76
|
+
"""
|
|
77
|
+
excluded_fields: Set[str] = set([
|
|
78
|
+
"payment_token",
|
|
79
|
+
"cryptogram",
|
|
80
|
+
])
|
|
81
|
+
|
|
82
|
+
_dict = self.model_dump(
|
|
83
|
+
by_alias=True,
|
|
84
|
+
exclude=excluded_fields,
|
|
85
|
+
exclude_none=True,
|
|
86
|
+
)
|
|
87
|
+
return _dict
|
|
88
|
+
|
|
89
|
+
@classmethod
|
|
90
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
91
|
+
"""Create an instance of BogusExpressCheckoutPaymentData from a dict"""
|
|
92
|
+
if obj is None:
|
|
93
|
+
return None
|
|
94
|
+
|
|
95
|
+
if not isinstance(obj, dict):
|
|
96
|
+
return cls.model_validate(obj)
|
|
97
|
+
|
|
98
|
+
_obj = cls.model_validate({
|
|
99
|
+
"paymentToken": obj.get("paymentToken"),
|
|
100
|
+
"cryptogram": obj.get("cryptogram")
|
|
101
|
+
})
|
|
102
|
+
return _obj
|
|
103
|
+
|
|
104
|
+
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
PostFinance Python SDK
|
|
5
|
+
|
|
6
|
+
This library allows to interact with the PostFinance payment service.
|
|
7
|
+
|
|
8
|
+
Copyright owner: Wallee AG
|
|
9
|
+
Website: https://www.postfinance.ch/en/private.html
|
|
10
|
+
Developer email: ecosystem-team@wallee.com
|
|
11
|
+
|
|
12
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
13
|
+
you may not use this file except in compliance with the License.
|
|
14
|
+
You may obtain a copy of the License at
|
|
15
|
+
|
|
16
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
17
|
+
|
|
18
|
+
Unless required by applicable law or agreed to in writing, software
|
|
19
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
20
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
21
|
+
See the License for the specific language governing permissions and
|
|
22
|
+
limitations under the License.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
from __future__ import annotations
|
|
27
|
+
import pprint
|
|
28
|
+
import re # noqa: F401
|
|
29
|
+
import json
|
|
30
|
+
|
|
31
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
|
32
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
33
|
+
from postfinancecheckout.models.express_checkout_session_state import ExpressCheckoutSessionState
|
|
34
|
+
from typing import Optional, Set
|
|
35
|
+
from typing_extensions import Self
|
|
36
|
+
|
|
37
|
+
class ExpressCheckoutApprovalResponse(BaseModel):
|
|
38
|
+
"""
|
|
39
|
+
ExpressCheckoutApprovalResponse
|
|
40
|
+
""" # noqa: E501
|
|
41
|
+
merchant_redirect_url: Optional[StrictStr] = Field(default=None, alias="merchantRedirectUrl")
|
|
42
|
+
session_id: Optional[StrictInt] = Field(default=None, alias="sessionId")
|
|
43
|
+
state: Optional[ExpressCheckoutSessionState] = None
|
|
44
|
+
__properties: ClassVar[List[str]] = ["merchantRedirectUrl", "sessionId", "state"]
|
|
45
|
+
|
|
46
|
+
model_config = ConfigDict(
|
|
47
|
+
populate_by_name=True,
|
|
48
|
+
validate_assignment=True,
|
|
49
|
+
protected_namespaces=(),
|
|
50
|
+
)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def to_str(self) -> str:
|
|
54
|
+
"""Returns the string representation of the model using alias"""
|
|
55
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
56
|
+
|
|
57
|
+
def to_json(self) -> str:
|
|
58
|
+
"""Returns the JSON representation of the model using alias"""
|
|
59
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
60
|
+
return json.dumps(self.to_dict())
|
|
61
|
+
|
|
62
|
+
@classmethod
|
|
63
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
64
|
+
"""Create an instance of ExpressCheckoutApprovalResponse from a JSON string"""
|
|
65
|
+
return cls.from_dict(json.loads(json_str))
|
|
66
|
+
|
|
67
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
68
|
+
"""Return the dictionary representation of the model using alias.
|
|
69
|
+
|
|
70
|
+
This has the following differences from calling pydantic's
|
|
71
|
+
`self.model_dump(by_alias=True)`:
|
|
72
|
+
|
|
73
|
+
* `None` is only added to the output dict for nullable fields that
|
|
74
|
+
were set at model initialization. Other fields with value `None`
|
|
75
|
+
are ignored.
|
|
76
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
77
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
78
|
+
"""
|
|
79
|
+
excluded_fields: Set[str] = set([
|
|
80
|
+
"merchant_redirect_url",
|
|
81
|
+
"session_id",
|
|
82
|
+
])
|
|
83
|
+
|
|
84
|
+
_dict = self.model_dump(
|
|
85
|
+
by_alias=True,
|
|
86
|
+
exclude=excluded_fields,
|
|
87
|
+
exclude_none=True,
|
|
88
|
+
)
|
|
89
|
+
return _dict
|
|
90
|
+
|
|
91
|
+
@classmethod
|
|
92
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
93
|
+
"""Create an instance of ExpressCheckoutApprovalResponse from a dict"""
|
|
94
|
+
if obj is None:
|
|
95
|
+
return None
|
|
96
|
+
|
|
97
|
+
if not isinstance(obj, dict):
|
|
98
|
+
return cls.model_validate(obj)
|
|
99
|
+
|
|
100
|
+
_obj = cls.model_validate({
|
|
101
|
+
"merchantRedirectUrl": obj.get("merchantRedirectUrl"),
|
|
102
|
+
"sessionId": obj.get("sessionId"),
|
|
103
|
+
"state": obj.get("state")
|
|
104
|
+
})
|
|
105
|
+
return _obj
|
|
106
|
+
|
|
107
|
+
|
|
@@ -39,7 +39,8 @@ class ExpressCheckoutCreateResponse(BaseModel):
|
|
|
39
39
|
""" # noqa: E501
|
|
40
40
|
iframe_src: Optional[StrictStr] = Field(default=None, alias="iframeSrc")
|
|
41
41
|
session: Optional[StrictInt] = None
|
|
42
|
-
|
|
42
|
+
session_token: Optional[StrictStr] = Field(default=None, alias="sessionToken")
|
|
43
|
+
__properties: ClassVar[List[str]] = ["iframeSrc", "session", "sessionToken"]
|
|
43
44
|
|
|
44
45
|
model_config = ConfigDict(
|
|
45
46
|
populate_by_name=True,
|
|
@@ -93,7 +94,8 @@ class ExpressCheckoutCreateResponse(BaseModel):
|
|
|
93
94
|
|
|
94
95
|
_obj = cls.model_validate({
|
|
95
96
|
"iframeSrc": obj.get("iframeSrc"),
|
|
96
|
-
"session": obj.get("session")
|
|
97
|
+
"session": obj.get("session"),
|
|
98
|
+
"sessionToken": obj.get("sessionToken")
|
|
97
99
|
})
|
|
98
100
|
return _obj
|
|
99
101
|
|
|
@@ -30,6 +30,7 @@ import json
|
|
|
30
30
|
|
|
31
31
|
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
|
32
32
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
33
|
+
from postfinancecheckout.models.address import Address
|
|
33
34
|
from postfinancecheckout.models.express_checkout_session_state import ExpressCheckoutSessionState
|
|
34
35
|
from postfinancecheckout.models.express_checkout_shipping_option import ExpressCheckoutShippingOption
|
|
35
36
|
from postfinancecheckout.models.express_checkout_wallet_type import ExpressCheckoutWalletType
|
|
@@ -42,13 +43,17 @@ class ExpressCheckoutSession(BaseModel):
|
|
|
42
43
|
ExpressCheckoutSession
|
|
43
44
|
""" # noqa: E501
|
|
44
45
|
line_items: Optional[List[LineItem]] = Field(default=None, alias="lineItems")
|
|
46
|
+
merchant_shipping_callback_url: Optional[StrictStr] = Field(default=None, description="The URL to fetch the shipping options from.", alias="merchantShippingCallbackUrl")
|
|
45
47
|
linked_space_id: Optional[StrictInt] = Field(default=None, description="The spaceId linked to the entity.", alias="linkedSpaceId")
|
|
46
48
|
meta_data: Optional[Dict[str, StrictStr]] = Field(default=None, alias="metaData")
|
|
47
49
|
wallet_type: Optional[ExpressCheckoutWalletType] = Field(default=None, alias="walletType")
|
|
50
|
+
shipping_address: Optional[Address] = Field(default=None, alias="shippingAddress")
|
|
51
|
+
currency: Optional[StrictStr] = Field(default=None, description="The currency of the session.")
|
|
52
|
+
billing_address: Optional[Address] = Field(default=None, alias="billingAddress")
|
|
48
53
|
id: Optional[StrictInt] = Field(default=None, description="Id of the entity.")
|
|
49
54
|
state: Optional[ExpressCheckoutSessionState] = None
|
|
50
55
|
shipping_options: Optional[List[ExpressCheckoutShippingOption]] = Field(default=None, alias="shippingOptions")
|
|
51
|
-
__properties: ClassVar[List[str]] = ["lineItems", "linkedSpaceId", "metaData", "walletType", "id", "state", "shippingOptions"]
|
|
56
|
+
__properties: ClassVar[List[str]] = ["lineItems", "merchantShippingCallbackUrl", "linkedSpaceId", "metaData", "walletType", "shippingAddress", "currency", "billingAddress", "id", "state", "shippingOptions"]
|
|
52
57
|
|
|
53
58
|
model_config = ConfigDict(
|
|
54
59
|
populate_by_name=True,
|
|
@@ -85,11 +90,15 @@ class ExpressCheckoutSession(BaseModel):
|
|
|
85
90
|
* OpenAPI `readOnly` fields are excluded.
|
|
86
91
|
* OpenAPI `readOnly` fields are excluded.
|
|
87
92
|
* OpenAPI `readOnly` fields are excluded.
|
|
93
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
94
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
88
95
|
"""
|
|
89
96
|
excluded_fields: Set[str] = set([
|
|
90
97
|
"line_items",
|
|
98
|
+
"merchant_shipping_callback_url",
|
|
91
99
|
"linked_space_id",
|
|
92
100
|
"meta_data",
|
|
101
|
+
"currency",
|
|
93
102
|
"id",
|
|
94
103
|
"shipping_options",
|
|
95
104
|
])
|
|
@@ -109,6 +118,12 @@ class ExpressCheckoutSession(BaseModel):
|
|
|
109
118
|
# override the default output from pydantic by calling `to_dict()` of wallet_type
|
|
110
119
|
if self.wallet_type:
|
|
111
120
|
_dict['walletType'] = self.wallet_type.to_dict()
|
|
121
|
+
# override the default output from pydantic by calling `to_dict()` of shipping_address
|
|
122
|
+
if self.shipping_address:
|
|
123
|
+
_dict['shippingAddress'] = self.shipping_address.to_dict()
|
|
124
|
+
# override the default output from pydantic by calling `to_dict()` of billing_address
|
|
125
|
+
if self.billing_address:
|
|
126
|
+
_dict['billingAddress'] = self.billing_address.to_dict()
|
|
112
127
|
# override the default output from pydantic by calling `to_dict()` of each item in shipping_options (list)
|
|
113
128
|
_items = []
|
|
114
129
|
if self.shipping_options:
|
|
@@ -129,9 +144,13 @@ class ExpressCheckoutSession(BaseModel):
|
|
|
129
144
|
|
|
130
145
|
_obj = cls.model_validate({
|
|
131
146
|
"lineItems": [LineItem.from_dict(_item) for _item in obj["lineItems"]] if obj.get("lineItems") is not None else None,
|
|
147
|
+
"merchantShippingCallbackUrl": obj.get("merchantShippingCallbackUrl"),
|
|
132
148
|
"linkedSpaceId": obj.get("linkedSpaceId"),
|
|
133
149
|
"metaData": obj.get("metaData"),
|
|
134
150
|
"walletType": ExpressCheckoutWalletType.from_dict(obj["walletType"]) if obj.get("walletType") is not None else None,
|
|
151
|
+
"shippingAddress": Address.from_dict(obj["shippingAddress"]) if obj.get("shippingAddress") is not None else None,
|
|
152
|
+
"currency": obj.get("currency"),
|
|
153
|
+
"billingAddress": Address.from_dict(obj["billingAddress"]) if obj.get("billingAddress") is not None else None,
|
|
135
154
|
"id": obj.get("id"),
|
|
136
155
|
"state": obj.get("state"),
|
|
137
156
|
"shippingOptions": [ExpressCheckoutShippingOption.from_dict(_item) for _item in obj["shippingOptions"]] if obj.get("shippingOptions") is not None else None
|
|
@@ -28,7 +28,7 @@ import pprint
|
|
|
28
28
|
import re # noqa: F401
|
|
29
29
|
import json
|
|
30
30
|
|
|
31
|
-
from pydantic import BaseModel, ConfigDict, Field
|
|
31
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
32
32
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
33
33
|
from postfinancecheckout.models.express_checkout_shipping_option import ExpressCheckoutShippingOption
|
|
34
34
|
from postfinancecheckout.models.line_item import LineItem
|
|
@@ -40,8 +40,10 @@ class ExpressCheckoutSessionCreate(BaseModel):
|
|
|
40
40
|
ExpressCheckoutSessionCreate
|
|
41
41
|
""" # noqa: E501
|
|
42
42
|
line_items: Optional[List[LineItem]] = Field(default=None, alias="lineItems")
|
|
43
|
+
merchant_shipping_callback_url: Optional[StrictStr] = Field(default=None, description="The URL to fetch the shipping options from.", alias="merchantShippingCallbackUrl")
|
|
44
|
+
currency: Optional[StrictStr] = Field(default=None, description="The currency of the session.")
|
|
43
45
|
shipping_options: Optional[List[ExpressCheckoutShippingOption]] = Field(default=None, alias="shippingOptions")
|
|
44
|
-
__properties: ClassVar[List[str]] = ["lineItems", "shippingOptions"]
|
|
46
|
+
__properties: ClassVar[List[str]] = ["lineItems", "merchantShippingCallbackUrl", "currency", "shippingOptions"]
|
|
45
47
|
|
|
46
48
|
model_config = ConfigDict(
|
|
47
49
|
populate_by_name=True,
|
|
@@ -109,6 +111,8 @@ class ExpressCheckoutSessionCreate(BaseModel):
|
|
|
109
111
|
|
|
110
112
|
_obj = cls.model_validate({
|
|
111
113
|
"lineItems": [LineItem.from_dict(_item) for _item in obj["lineItems"]] if obj.get("lineItems") is not None else None,
|
|
114
|
+
"merchantShippingCallbackUrl": obj.get("merchantShippingCallbackUrl"),
|
|
115
|
+
"currency": obj.get("currency"),
|
|
112
116
|
"shippingOptions": [ExpressCheckoutShippingOption.from_dict(_item) for _item in obj["shippingOptions"]] if obj.get("shippingOptions") is not None else None
|
|
113
117
|
})
|
|
114
118
|
return _obj
|