postfinancecheckout 6.2.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.
Files changed (672) hide show
  1. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/PKG-INFO +1 -1
  2. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/README.md +57 -33
  3. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/__init__.py +18 -1
  4. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/api_client.py +1 -1
  5. postfinancecheckout-6.4.0/postfinancecheckout/api_exception_error_codes.py +69 -0
  6. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/configuration.py +1 -1
  7. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/__init__.py +13 -0
  8. postfinancecheckout-6.4.0/postfinancecheckout/models/bogus_express_checkout_approval_request.py +102 -0
  9. postfinancecheckout-6.4.0/postfinancecheckout/models/bogus_express_checkout_payment_data.py +104 -0
  10. postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_approval_response.py +107 -0
  11. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_create_response.py +4 -2
  12. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_session.py +20 -1
  13. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_session_create.py +6 -2
  14. postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_shipping_address_change_request.py +107 -0
  15. postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_shipping_address_change_response.py +112 -0
  16. postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_shipping_method_change_request.py +100 -0
  17. postfinancecheckout-6.4.0/postfinancecheckout/models/express_checkout_shipping_method_change_response.py +112 -0
  18. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_shipping_option.py +1 -1
  19. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_address.py +3 -3
  20. postfinancecheckout-6.4.0/postfinancecheckout/models/payment_terminal_dcc_transaction_sum.py +128 -0
  21. postfinancecheckout-6.4.0/postfinancecheckout/models/payment_terminal_transaction_sum.py +140 -0
  22. postfinancecheckout-6.4.0/postfinancecheckout/models/payment_terminal_transaction_summary.py +161 -0
  23. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund.py +5 -1
  24. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_create.py +4 -2
  25. postfinancecheckout-6.4.0/postfinancecheckout/models/rendered_terminal_transaction_summary.py +104 -0
  26. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/scope.py +3 -3
  27. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_update_request.py +18 -5
  28. postfinancecheckout-6.4.0/postfinancecheckout/models/terminal_transaction_summary_list_response.py +116 -0
  29. postfinancecheckout-6.4.0/postfinancecheckout/models/terminal_transaction_summary_search_response.py +120 -0
  30. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion.py +5 -1
  31. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion_details.py +7 -3
  32. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_user_interface_type.py +1 -0
  33. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/postfinancecheckout_sdk_exception.py +14 -8
  34. postfinancecheckout-6.4.0/postfinancecheckout/sdk_exception_error_codes.py +66 -0
  35. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/__init__.py +2 -0
  36. postfinancecheckout-6.2.0/postfinancecheckout/service/express_checkout_service.py → postfinancecheckout-6.4.0/postfinancecheckout/service/bogus_express_checkout_service.py +52 -35
  37. postfinancecheckout-6.4.0/postfinancecheckout/service/express_checkout_service.py +895 -0
  38. postfinancecheckout-6.4.0/postfinancecheckout/service/payment_terminal_transaction_summaries_service.py +1263 -0
  39. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/webhook_encryption_keys_service.py +3 -3
  40. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/utils/encryption_util.py +6 -6
  41. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/PKG-INFO +1 -1
  42. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/SOURCES.txt +17 -1
  43. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/pyproject.toml +1 -1
  44. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/setup.py +1 -1
  45. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/tests/test_querying.py +9 -0
  46. postfinancecheckout-6.2.0/postfinancecheckout/error_code.py +0 -67
  47. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/api_response.py +0 -0
  48. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/exceptions.py +0 -0
  49. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_account_update.py +0 -0
  50. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_application_user_update.py +0 -0
  51. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_customer_active.py +0 -0
  52. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_customer_address_active.py +0 -0
  53. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_customer_comment_active.py +0 -0
  54. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_human_user_update.py +0 -0
  55. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_connector_configuration_update.py +0 -0
  56. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_link_update.py +0 -0
  57. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_method_configuration_update.py +0 -0
  58. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_processor_configuration_active.py +0 -0
  59. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_payment_terminal_update.py +0 -0
  60. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_refund_comment_active.py +0 -0
  61. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_role_update.py +0 -0
  62. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_single_sign_on_user_update.py +0 -0
  63. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_space_update.py +0 -0
  64. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_subscriber_update.py +0 -0
  65. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_subscription_affiliate_update.py +0 -0
  66. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_subscription_metric_update.py +0 -0
  67. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_subscription_product_active.py +0 -0
  68. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_token_update.py +0 -0
  69. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_transaction_comment_active.py +0 -0
  70. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_transaction_invoice_comment_active.py +0 -0
  71. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_transaction_pending.py +0 -0
  72. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_webhook_listener_update.py +0 -0
  73. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/abstract_webhook_url_update.py +0 -0
  74. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account.py +0 -0
  75. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_create.py +0 -0
  76. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_list_response.py +0 -0
  77. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_search_response.py +0 -0
  78. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_state.py +0 -0
  79. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_type.py +0 -0
  80. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/account_update.py +0 -0
  81. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/address.py +0 -0
  82. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/address_create.py +0 -0
  83. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/analytics_query_execution_request.py +0 -0
  84. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/analytics_query_execution_response.py +0 -0
  85. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_key_state.py +0 -0
  86. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user.py +0 -0
  87. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_create.py +0 -0
  88. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_create_with_mac_key.py +0 -0
  89. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_list_response.py +0 -0
  90. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_search_response.py +0 -0
  91. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/application_user_update.py +0 -0
  92. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/authenticated_card_data.py +0 -0
  93. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/authenticated_card_data_create.py +0 -0
  94. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/authenticated_card_request.py +0 -0
  95. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account.py +0 -0
  96. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_environment.py +0 -0
  97. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_list_response.py +0 -0
  98. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_search_response.py +0 -0
  99. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_state.py +0 -0
  100. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_account_type.py +0 -0
  101. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction.py +0 -0
  102. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_flow_direction.py +0 -0
  103. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_list_response.py +0 -0
  104. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_search_response.py +0 -0
  105. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_source.py +0 -0
  106. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_state.py +0 -0
  107. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/bank_transaction_type.py +0 -0
  108. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/billing_cycle_model.py +0 -0
  109. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/billing_cycle_type.py +0 -0
  110. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/billing_day_customization.py +0 -0
  111. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/card_authentication_response.py +0 -0
  112. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/card_authentication_version.py +0 -0
  113. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/card_cryptogram.py +0 -0
  114. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/card_cryptogram_create.py +0 -0
  115. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/cardholder_authentication.py +0 -0
  116. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/cardholder_authentication_create.py +0 -0
  117. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge.py +0 -0
  118. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt.py +0 -0
  119. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt_environment.py +0 -0
  120. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt_list_response.py +0 -0
  121. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt_search_response.py +0 -0
  122. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_attempt_state.py +0 -0
  123. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_bank_transaction.py +0 -0
  124. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_bank_transaction_list_response.py +0 -0
  125. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_bank_transaction_search_response.py +0 -0
  126. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow.py +0 -0
  127. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level.py +0 -0
  128. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_configuration.py +0 -0
  129. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_configuration_type.py +0 -0
  130. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_list_response.py +0 -0
  131. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_payment_link.py +0 -0
  132. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_payment_link_list_response.py +0 -0
  133. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_payment_link_search_response.py +0 -0
  134. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_search_response.py +0 -0
  135. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_level_state.py +0 -0
  136. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_list_response.py +0 -0
  137. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_flow_search_response.py +0 -0
  138. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_state.py +0 -0
  139. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/charge_type.py +0 -0
  140. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/client_platform_information_list_response.py +0 -0
  141. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/client_platform_information_search_response.py +0 -0
  142. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/completion_line_item.py +0 -0
  143. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/completion_line_item_create.py +0 -0
  144. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/completion_list_response.py +0 -0
  145. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/completion_search_response.py +0 -0
  146. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/condition.py +0 -0
  147. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/condition_type.py +0 -0
  148. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/condition_type_list_response.py +0 -0
  149. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/condition_type_search_response.py +0 -0
  150. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/connector_invocation.py +0 -0
  151. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/connector_invocation_stage.py +0 -0
  152. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/country_list_response.py +0 -0
  153. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/country_search_response.py +0 -0
  154. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/creation_entity_state.py +0 -0
  155. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_bank_account.py +0 -0
  156. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_bank_account_list_response.py +0 -0
  157. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_bank_account_search_response.py +0 -0
  158. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_list_response.py +0 -0
  159. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/currency_search_response.py +0 -0
  160. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer.py +0 -0
  161. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_active.py +0 -0
  162. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address.py +0 -0
  163. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_active.py +0 -0
  164. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_create.py +0 -0
  165. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_list_response.py +0 -0
  166. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_search_response.py +0 -0
  167. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_address_type.py +0 -0
  168. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment.py +0 -0
  169. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment_active.py +0 -0
  170. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment_create.py +0 -0
  171. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment_list_response.py +0 -0
  172. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_comment_search_response.py +0 -0
  173. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_create.py +0 -0
  174. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_email_address_list_response.py +0 -0
  175. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_list_response.py +0 -0
  176. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_postal_address.py +0 -0
  177. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_postal_address_create.py +0 -0
  178. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customer_search_response.py +0 -0
  179. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/customers_presence.py +0 -0
  180. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/data_collection_type.py +0 -0
  181. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication.py +0 -0
  182. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication_decision_reason.py +0 -0
  183. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication_list_response.py +0 -0
  184. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication_search_response.py +0 -0
  185. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/delivery_indication_state.py +0 -0
  186. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/displayable_day_of_week.py +0 -0
  187. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/displayable_month.py +0 -0
  188. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template.py +0 -0
  189. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_list_response.py +0 -0
  190. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_search_response.py +0 -0
  191. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_type.py +0 -0
  192. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_type_group.py +0 -0
  193. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_type_list_response.py +0 -0
  194. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/document_template_type_search_response.py +0 -0
  195. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_case.py +0 -0
  196. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_case_list_response.py +0 -0
  197. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_case_search_response.py +0 -0
  198. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_case_state.py +0 -0
  199. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_condition.py +0 -0
  200. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_condition_type.py +0 -0
  201. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow.py +0 -0
  202. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_level.py +0 -0
  203. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_level_list_response.py +0 -0
  204. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_level_processor.py +0 -0
  205. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_level_search_response.py +0 -0
  206. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_list_response.py +0 -0
  207. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_search_response.py +0 -0
  208. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/dunning_flow_type.py +0 -0
  209. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/environment.py +0 -0
  210. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_session_state.py +0 -0
  211. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/express_checkout_wallet_type.py +0 -0
  212. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/external_transfer_bank_transaction.py +0 -0
  213. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/external_transfer_bank_transaction_list_response.py +0 -0
  214. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/external_transfer_bank_transaction_search_response.py +0 -0
  215. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/facade_user_friendly_query_status_model.py +0 -0
  216. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/failure_category.py +0 -0
  217. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/failure_reason.py +0 -0
  218. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/feature.py +0 -0
  219. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/feature_category.py +0 -0
  220. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/gender.py +0 -0
  221. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user.py +0 -0
  222. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user_create.py +0 -0
  223. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user_list_response.py +0 -0
  224. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user_search_response.py +0 -0
  225. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/human_user_update.py +0 -0
  226. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/internal_transfer_bank_transaction.py +0 -0
  227. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/internal_transfer_bank_transaction_list_response.py +0 -0
  228. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/internal_transfer_bank_transaction_search_response.py +0 -0
  229. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/invoice_comment_list_response.py +0 -0
  230. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/invoice_comment_search_response.py +0 -0
  231. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/invoice_list_response.py +0 -0
  232. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/invoice_search_response.py +0 -0
  233. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label.py +0 -0
  234. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor.py +0 -0
  235. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_category.py +0 -0
  236. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_group.py +0 -0
  237. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_group_list_response.py +0 -0
  238. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_group_search_response.py +0 -0
  239. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_list_response.py +0 -0
  240. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_search_response.py +0 -0
  241. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/label_descriptor_type.py +0 -0
  242. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/language_list_response.py +0 -0
  243. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/language_search_response.py +0 -0
  244. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/legal_organization_form.py +0 -0
  245. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/legal_organization_form_list_response.py +0 -0
  246. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/legal_organization_form_search_response.py +0 -0
  247. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item.py +0 -0
  248. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_attribute.py +0 -0
  249. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_attribute_create.py +0 -0
  250. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_create.py +0 -0
  251. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_reduction.py +0 -0
  252. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_reduction_create.py +0 -0
  253. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_type.py +0 -0
  254. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_version_list_response.py +0 -0
  255. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/line_item_version_search_response.py +0 -0
  256. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/localized_string.py +0 -0
  257. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task.py +0 -0
  258. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_action.py +0 -0
  259. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_action_style.py +0 -0
  260. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_list_response.py +0 -0
  261. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_search_response.py +0 -0
  262. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_state.py +0 -0
  263. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/manual_task_type.py +0 -0
  264. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/metric_list_response.py +0 -0
  265. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/metric_search_response.py +0 -0
  266. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/metric_usage_report_list_response.py +0 -0
  267. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/metric_usage_report_search_response.py +0 -0
  268. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/one_click_payment_mode.py +0 -0
  269. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/pan_type.py +0 -0
  270. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_adjustment.py +0 -0
  271. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_adjustment_type.py +0 -0
  272. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector.py +0 -0
  273. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration.py +0 -0
  274. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration_create.py +0 -0
  275. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration_list_response.py +0 -0
  276. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration_search_response.py +0 -0
  277. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_configuration_update.py +0 -0
  278. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_feature.py +0 -0
  279. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_list_response.py +0 -0
  280. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_connector_search_response.py +0 -0
  281. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_contract.py +0 -0
  282. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_contract_state.py +0 -0
  283. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_contract_type.py +0 -0
  284. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_information_hash.py +0 -0
  285. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_information_hash_type.py +0 -0
  286. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link.py +0 -0
  287. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_active.py +0 -0
  288. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_address_handling_mode.py +0 -0
  289. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_create.py +0 -0
  290. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_list_response.py +0 -0
  291. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_protection_mode.py +0 -0
  292. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_search_response.py +0 -0
  293. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_link_update.py +0 -0
  294. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method.py +0 -0
  295. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_brand.py +0 -0
  296. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_brand_list_response.py +0 -0
  297. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_brand_search_response.py +0 -0
  298. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration.py +0 -0
  299. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_active.py +0 -0
  300. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_create.py +0 -0
  301. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_list_response.py +0 -0
  302. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_search_response.py +0 -0
  303. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_configuration_update.py +0 -0
  304. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_list_response.py +0 -0
  305. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_method_search_response.py +0 -0
  306. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_primary_risk_taker.py +0 -0
  307. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor.py +0 -0
  308. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration.py +0 -0
  309. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration_active.py +0 -0
  310. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration_create.py +0 -0
  311. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration_list_response.py +0 -0
  312. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_configuration_search_response.py +0 -0
  313. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_list_response.py +0 -0
  314. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_processor_search_response.py +0 -0
  315. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal.py +0 -0
  316. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_configuration.py +0 -0
  317. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_configuration_state.py +0 -0
  318. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_configuration_version.py +0 -0
  319. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_configuration_version_state.py +0 -0
  320. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_create.py +0 -0
  321. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_location.py +0 -0
  322. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_location_state.py +0 -0
  323. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_location_version.py +0 -0
  324. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_location_version_state.py +0 -0
  325. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_preparing.py +0 -0
  326. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_receipt_type.py +0 -0
  327. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_state.py +0 -0
  328. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_transaction_summary_reference.py +0 -0
  329. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_type.py +0 -0
  330. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/payment_terminal_update.py +0 -0
  331. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/permission.py +0 -0
  332. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/permission_list_response.py +0 -0
  333. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/permission_search_response.py +0 -0
  334. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/persistable_currency_amount.py +0 -0
  335. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/persistable_currency_amount_update.py +0 -0
  336. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_component_group_list_response.py +0 -0
  337. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_component_group_search_response.py +0 -0
  338. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_component_list_response.py +0 -0
  339. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_component_search_response.py +0 -0
  340. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_fee_type.py +0 -0
  341. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_list_response.py +0 -0
  342. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee.py +0 -0
  343. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_list_response.py +0 -0
  344. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_search_response.py +0 -0
  345. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_tier_list_response.py +0 -0
  346. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_tier_search_response.py +0 -0
  347. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_fee_update.py +0 -0
  348. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_tier_fee.py +0 -0
  349. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_tier_fee_update.py +0 -0
  350. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_metered_tier_pricing.py +0 -0
  351. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_period_fee.py +0 -0
  352. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_period_fee_list_response.py +0 -0
  353. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_period_fee_search_response.py +0 -0
  354. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_period_fee_update.py +0 -0
  355. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_retirement_list_response.py +0 -0
  356. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_retirement_search_response.py +0 -0
  357. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_search_response.py +0 -0
  358. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_setup_fee.py +0 -0
  359. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_setup_fee_list_response.py +0 -0
  360. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_setup_fee_search_response.py +0 -0
  361. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_setup_fee_update.py +0 -0
  362. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_version_list_response.py +0 -0
  363. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_version_retirement_list_response.py +0 -0
  364. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_version_retirement_search_response.py +0 -0
  365. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/product_version_search_response.py +0 -0
  366. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/recurring_indicator.py +0 -0
  367. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_bank_transaction.py +0 -0
  368. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_bank_transaction_list_response.py +0 -0
  369. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_bank_transaction_search_response.py +0 -0
  370. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment.py +0 -0
  371. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment_active.py +0 -0
  372. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment_create.py +0 -0
  373. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment_list_response.py +0 -0
  374. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_comment_search_response.py +0 -0
  375. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_list_response.py +0 -0
  376. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_recovery_bank_transaction.py +0 -0
  377. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_recovery_bank_transaction_list_response.py +0 -0
  378. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_recovery_bank_transaction_search_response.py +0 -0
  379. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_search_response.py +0 -0
  380. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_state.py +0 -0
  381. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/refund_type.py +0 -0
  382. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rendered_document.py +0 -0
  383. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rendered_terminal_receipt.py +0 -0
  384. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rendered_terminal_receipt_list_response.py +0 -0
  385. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_address_format.py +0 -0
  386. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_address_format_field.py +0 -0
  387. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_api_bulk_operation_result.py +0 -0
  388. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_api_error_response.py +0 -0
  389. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_application_user_mac_key.py +0 -0
  390. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_application_user_mac_key_created.py +0 -0
  391. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_country.py +0 -0
  392. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_country_state.py +0 -0
  393. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_currency.py +0 -0
  394. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_customer_email_address.py +0 -0
  395. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/rest_language.py +0 -0
  396. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/result_portion_model.py +0 -0
  397. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role.py +0 -0
  398. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_create.py +0 -0
  399. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_list_response.py +0 -0
  400. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_search_response.py +0 -0
  401. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_state.py +0 -0
  402. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/role_update.py +0 -0
  403. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/sales_channel.py +0 -0
  404. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/sales_channel_list_response.py +0 -0
  405. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/sales_channel_search_response.py +0 -0
  406. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/scope_single_sign_on_provider.py +0 -0
  407. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user.py +0 -0
  408. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user_create.py +0 -0
  409. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user_list_response.py +0 -0
  410. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user_search_response.py +0 -0
  411. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/single_sign_on_user_update.py +0 -0
  412. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/sorting_order.py +0 -0
  413. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space.py +0 -0
  414. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_address.py +0 -0
  415. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_address_create.py +0 -0
  416. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_create.py +0 -0
  417. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_list_response.py +0 -0
  418. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_search_response.py +0 -0
  419. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_update.py +0 -0
  420. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/space_view.py +0 -0
  421. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/static_value.py +0 -0
  422. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/static_value_list_response.py +0 -0
  423. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/static_value_search_response.py +0 -0
  424. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/submitted_analytics_query_execution.py +0 -0
  425. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber.py +0 -0
  426. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_active.py +0 -0
  427. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_create.py +0 -0
  428. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_list_response.py +0 -0
  429. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_search_response.py +0 -0
  430. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscriber_update.py +0 -0
  431. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription.py +0 -0
  432. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate.py +0 -0
  433. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_create.py +0 -0
  434. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_deleted.py +0 -0
  435. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_deleting.py +0 -0
  436. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_inactive.py +0 -0
  437. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_list_response.py +0 -0
  438. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_search_response.py +0 -0
  439. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_affiliate_update.py +0 -0
  440. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge.py +0 -0
  441. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_create.py +0 -0
  442. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_list_response.py +0 -0
  443. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_processing_type.py +0 -0
  444. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_search_response.py +0 -0
  445. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_state.py +0 -0
  446. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_charge_type.py +0 -0
  447. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_component_configuration.py +0 -0
  448. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_component_reference_configuration.py +0 -0
  449. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_create_request.py +0 -0
  450. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_initialize_subscriber_present_request.py +0 -0
  451. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry.py +0 -0
  452. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry_create.py +0 -0
  453. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry_list_response.py +0 -0
  454. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry_search_response.py +0 -0
  455. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_ledger_entry_state.py +0 -0
  456. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_list_response.py +0 -0
  457. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric.py +0 -0
  458. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_active.py +0 -0
  459. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_create.py +0 -0
  460. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_type.py +0 -0
  461. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_update.py +0 -0
  462. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_usage_report.py +0 -0
  463. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_metric_usage_report_create.py +0 -0
  464. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_pending.py +0 -0
  465. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_period_bill.py +0 -0
  466. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_period_bill_list_response.py +0 -0
  467. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_period_bill_search_response.py +0 -0
  468. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_period_bill_state.py +0 -0
  469. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product.py +0 -0
  470. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_active.py +0 -0
  471. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component.py +0 -0
  472. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_group.py +0 -0
  473. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_group_update.py +0 -0
  474. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_reference.py +0 -0
  475. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_reference_state.py +0 -0
  476. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_component_update.py +0 -0
  477. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_create.py +0 -0
  478. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_retirement.py +0 -0
  479. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_retirement_request.py +0 -0
  480. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_state.py +0 -0
  481. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version.py +0 -0
  482. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version_pending.py +0 -0
  483. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version_retirement.py +0 -0
  484. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version_retirement_request.py +0 -0
  485. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_product_version_state.py +0 -0
  486. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_search_response.py +0 -0
  487. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_state.py +0 -0
  488. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_suspension.py +0 -0
  489. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_suspension_action.py +0 -0
  490. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_suspension_reason.py +0 -0
  491. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_suspension_state.py +0 -0
  492. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_update.py +0 -0
  493. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_version.py +0 -0
  494. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_version_list_response.py +0 -0
  495. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_version_search_response.py +0 -0
  496. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/subscription_version_state.py +0 -0
  497. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/suspension_creation_request.py +0 -0
  498. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/suspension_list_response.py +0 -0
  499. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/suspension_search_response.py +0 -0
  500. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tax.py +0 -0
  501. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tax_calculation.py +0 -0
  502. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tax_class.py +0 -0
  503. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tax_create.py +0 -0
  504. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tenant_database.py +0 -0
  505. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/terminal_list_response.py +0 -0
  506. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/terminal_receipt_format.py +0 -0
  507. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/terminal_search_response.py +0 -0
  508. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token.py +0 -0
  509. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_create.py +0 -0
  510. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_list_response.py +0 -0
  511. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_search_response.py +0 -0
  512. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_update.py +0 -0
  513. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version.py +0 -0
  514. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_list_response.py +0 -0
  515. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_retry_strategy.py +0 -0
  516. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_search_response.py +0 -0
  517. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_state.py +0 -0
  518. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/token_version_type.py +0 -0
  519. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tokenization_mode.py +0 -0
  520. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tokenized_card_data.py +0 -0
  521. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tokenized_card_data_create.py +0 -0
  522. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/tokenized_card_request.py +0 -0
  523. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction.py +0 -0
  524. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_client_platform_information.py +0 -0
  525. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment.py +0 -0
  526. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment_active.py +0 -0
  527. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment_create.py +0 -0
  528. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment_list_response.py +0 -0
  529. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_comment_search_response.py +0 -0
  530. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion_behavior.py +0 -0
  531. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion_mode.py +0 -0
  532. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_completion_state.py +0 -0
  533. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_create.py +0 -0
  534. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_environment_selection_strategy.py +0 -0
  535. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_group.py +0 -0
  536. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_group_state.py +0 -0
  537. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice.py +0 -0
  538. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_comment.py +0 -0
  539. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_comment_active.py +0 -0
  540. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_comment_create.py +0 -0
  541. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_replacement.py +0 -0
  542. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_invoice_state.py +0 -0
  543. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_line_item_version.py +0 -0
  544. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_line_item_version_create.py +0 -0
  545. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_line_item_version_state.py +0 -0
  546. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_list_response.py +0 -0
  547. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_pending.py +0 -0
  548. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_search_response.py +0 -0
  549. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_state.py +0 -0
  550. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void.py +0 -0
  551. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void_list_response.py +0 -0
  552. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void_mode.py +0 -0
  553. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void_search_response.py +0 -0
  554. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/transaction_void_state.py +0 -0
  555. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/two_factor_authentication_type.py +0 -0
  556. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user.py +0 -0
  557. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_account_role.py +0 -0
  558. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_account_role_list_response.py +0 -0
  559. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_space_role.py +0 -0
  560. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_space_role_list_response.py +0 -0
  561. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/user_type.py +0 -0
  562. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/wallet_type.py +0 -0
  563. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/web_app_confirmation_response.py +0 -0
  564. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_identity.py +0 -0
  565. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener.py +0 -0
  566. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_create.py +0 -0
  567. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_entity.py +0 -0
  568. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_list_response.py +0 -0
  569. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_search_response.py +0 -0
  570. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_listener_update.py +0 -0
  571. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url.py +0 -0
  572. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url_create.py +0 -0
  573. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url_list_response.py +0 -0
  574. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url_search_response.py +0 -0
  575. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/models/webhook_url_update.py +0 -0
  576. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/py.typed +0 -0
  577. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/rest.py +0 -0
  578. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/accounts_service.py +0 -0
  579. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/analytics_queries_service.py +0 -0
  580. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/application_users_roles_service.py +0 -0
  581. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/application_users_service.py +0 -0
  582. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/bank_accounts_service.py +0 -0
  583. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/bank_transactions_service.py +0 -0
  584. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_attempts_service.py +0 -0
  585. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_bank_transactions_service.py +0 -0
  586. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_flow_levels_service.py +0 -0
  587. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_flows_level_payment_links_service.py +0 -0
  588. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/charge_flows_service.py +0 -0
  589. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/condition_types_service.py +0 -0
  590. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/countries_service.py +0 -0
  591. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/currencies_service.py +0 -0
  592. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/currency_bank_accounts_service.py +0 -0
  593. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/customer_addresses_service.py +0 -0
  594. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/customer_comments_service.py +0 -0
  595. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/customers_service.py +0 -0
  596. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/delivery_indications_service.py +0 -0
  597. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/document_template_types_service.py +0 -0
  598. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/document_templates_service.py +0 -0
  599. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/dunning_cases_service.py +0 -0
  600. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/dunning_flow_levels_service.py +0 -0
  601. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/dunning_flows_service.py +0 -0
  602. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/external_transfer_bank_transactions_service.py +0 -0
  603. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/human_users_roles_service.py +0 -0
  604. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/human_users_service.py +0 -0
  605. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/internal_transfer_bank_transactions_service.py +0 -0
  606. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/label_descriptors_service.py +0 -0
  607. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/languages_service.py +0 -0
  608. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/legal_organization_forms_service.py +0 -0
  609. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/manual_tasks_service.py +0 -0
  610. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_connector_configurations_service.py +0 -0
  611. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_connectors_service.py +0 -0
  612. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_links_service.py +0 -0
  613. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_method_brands_service.py +0 -0
  614. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_method_configurations_service.py +0 -0
  615. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_methods_service.py +0 -0
  616. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_processor_configurations_service.py +0 -0
  617. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_processors_service.py +0 -0
  618. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_sales_channels_service.py +0 -0
  619. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/payment_terminals_service.py +0 -0
  620. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/permissions_service.py +0 -0
  621. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/refund_bank_transactions_service.py +0 -0
  622. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/refund_comments_service.py +0 -0
  623. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/refund_recovery_bank_transactions_service.py +0 -0
  624. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/refunds_service.py +0 -0
  625. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/roles_service.py +0 -0
  626. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/single_sign_on_users_roles_service.py +0 -0
  627. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/single_sign_on_users_service.py +0 -0
  628. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/spaces_service.py +0 -0
  629. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/static_values_service.py +0 -0
  630. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscribers_service.py +0 -0
  631. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_affiliates_service.py +0 -0
  632. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_charges_service.py +0 -0
  633. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_ledger_entries_service.py +0 -0
  634. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_metric_usage_reports_service.py +0 -0
  635. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_metrics_service.py +0 -0
  636. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_period_bills_service.py +0 -0
  637. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_component_groups_service.py +0 -0
  638. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_components_service.py +0 -0
  639. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_metered_fee_tiers_service.py +0 -0
  640. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_metered_fees_service.py +0 -0
  641. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_period_fees_service.py +0 -0
  642. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_retirements_service.py +0 -0
  643. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_setup_fees_service.py +0 -0
  644. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_version_retirements_service.py +0 -0
  645. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_product_versions_service.py +0 -0
  646. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_products_service.py +0 -0
  647. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_suspensions_service.py +0 -0
  648. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscription_versions_service.py +0 -0
  649. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/subscriptions_service.py +0 -0
  650. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/token_versions_service.py +0 -0
  651. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/tokens_service.py +0 -0
  652. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_client_platforms_service.py +0 -0
  653. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_comments_service.py +0 -0
  654. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_completions_service.py +0 -0
  655. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_invoice_comments_service.py +0 -0
  656. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_invoices_service.py +0 -0
  657. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_line_item_versions_service.py +0 -0
  658. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transaction_voids_service.py +0 -0
  659. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/transactions_service.py +0 -0
  660. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/web_apps_service.py +0 -0
  661. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/webhook_listeners_service.py +0 -0
  662. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/service/webhook_urls_service.py +0 -0
  663. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout/utils/__init__.py +0 -0
  664. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/dependency_links.txt +0 -0
  665. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/requires.txt +0 -0
  666. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/postfinancecheckout.egg-info/top_level.txt +0 -0
  667. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/setup.cfg +0 -0
  668. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/tests/test_encryption_util.py +0 -0
  669. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/tests/test_refunds_service.py +0 -0
  670. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/tests/test_transaction_completions_service.py +0 -0
  671. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/tests/test_transactions_service.py +0 -0
  672. {postfinancecheckout-6.2.0 → postfinancecheckout-6.4.0}/tests/test_webhook_listeners_api.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: postfinancecheckout
3
- Version: 6.2.0
3
+ Version: 6.4.0
4
4
  Summary: PostFinance Checkout API
5
5
  Home-page:
6
6
  Author: postfinancecheckout
@@ -263,6 +263,11 @@ Web Api client: [*link*](https://checkout.postfinance.ch//api/client)<br>
263
263
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/bank-transactions/search
264
264
  &nbsp;&nbsp;&nbsp;&nbsp;Search bank transactions
265
265
  <br><br>
266
+ - <strong>BogusExpressCheckoutService</strong><br>
267
+ &nbsp;&nbsp;* <code>post_bogus_express_checkout_on_approve</code>
268
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /bogus-express-checkout/on-approve
269
+ &nbsp;&nbsp;&nbsp;&nbsp;Approve express checkout wallet payment
270
+ <br><br>
266
271
  - <strong>ChargeAttemptsService</strong><br>
267
272
  &nbsp;&nbsp;* <code>get_payment_charge_attempts</code>
268
273
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/charge-attempts
@@ -658,6 +663,16 @@ Web Api client: [*link*](https://checkout.postfinance.ch//api/client)<br>
658
663
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-flows/search
659
664
  &nbsp;&nbsp;&nbsp;&nbsp;Search dunning flows
660
665
  <br><br>
666
+ - <strong>ExpressCheckoutService</strong><br>
667
+ &nbsp;&nbsp;* <code>patch_express_checkout_shipping_address_change</code>
668
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /express-checkout/shipping/address-change
669
+ &nbsp;&nbsp;&nbsp;&nbsp;Change shipping address
670
+ <br><br>
671
+ - <strong>ExpressCheckoutService</strong><br>
672
+ &nbsp;&nbsp;* <code>patch_express_checkout_shipping_method_change</code>
673
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /express-checkout/shipping/method-change
674
+ &nbsp;&nbsp;&nbsp;&nbsp;Change shipping method
675
+ <br><br>
661
676
  - <strong>ExpressCheckoutService</strong><br>
662
677
  &nbsp;&nbsp;* <code>post_express_checkout_create_session</code>
663
678
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /express-checkout/create-session
@@ -1038,6 +1053,26 @@ Web Api client: [*link*](https://checkout.postfinance.ch//api/client)<br>
1038
1053
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/sales-channels/search
1039
1054
  &nbsp;&nbsp;&nbsp;&nbsp;Search payment sales channels.
1040
1055
  <br><br>
1056
+ - <strong>PaymentTerminalTransactionSummariesService</strong><br>
1057
+ &nbsp;&nbsp;* <code>get_payment_terminals_transaction_summaries</code>
1058
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/terminals/transaction-summaries
1059
+ &nbsp;&nbsp;&nbsp;&nbsp;List all summaries
1060
+ <br><br>
1061
+ - <strong>PaymentTerminalTransactionSummariesService</strong><br>
1062
+ &nbsp;&nbsp;* <code>get_payment_terminals_transaction_summaries_id</code>
1063
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/terminals/transaction-summaries/{id}
1064
+ &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a summary
1065
+ <br><br>
1066
+ - <strong>PaymentTerminalTransactionSummariesService</strong><br>
1067
+ &nbsp;&nbsp;* <code>get_payment_terminals_transaction_summaries_id_receipt</code>
1068
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/terminals/transaction-summaries/{id}/receipt
1069
+ &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a rendered summary receipt
1070
+ <br><br>
1071
+ - <strong>PaymentTerminalTransactionSummariesService</strong><br>
1072
+ &nbsp;&nbsp;* <code>get_payment_terminals_transaction_summaries_search</code>
1073
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/terminals/transaction-summaries/search
1074
+ &nbsp;&nbsp;&nbsp;&nbsp;Search summaries
1075
+ <br><br>
1041
1076
  - <strong>PaymentTerminalsService</strong><br>
1042
1077
  &nbsp;&nbsp;* <code>delete_payment_terminals_id</code>
1043
1078
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /payment/terminals/{id}
@@ -2510,6 +2545,8 @@ Additional Api models documentation: [*link*](https://checkout.postfinance.ch/en
2510
2545
  * <strong>BillingCycleModel</strong>
2511
2546
  * <strong>BillingCycleType</strong>
2512
2547
  * <strong>BillingDayCustomization</strong>
2548
+ * <strong>BogusExpressCheckoutApprovalRequest</strong>
2549
+ * <strong>BogusExpressCheckoutPaymentData</strong>
2513
2550
  * <strong>CardAuthenticationResponse</strong>
2514
2551
  * <strong>CardAuthenticationVersion</strong>
2515
2552
  * <strong>CardCryptogram</strong>
@@ -2609,10 +2646,15 @@ Additional Api models documentation: [*link*](https://checkout.postfinance.ch/en
2609
2646
  * <strong>DunningFlowSearchResponse</strong>
2610
2647
  * <strong>DunningFlowType</strong>
2611
2648
  * <strong>Environment</strong>
2649
+ * <strong>ExpressCheckoutApprovalResponse</strong>
2612
2650
  * <strong>ExpressCheckoutCreateResponse</strong>
2613
2651
  * <strong>ExpressCheckoutSession</strong>
2614
2652
  * <strong>ExpressCheckoutSessionCreate</strong>
2615
2653
  * <strong>ExpressCheckoutSessionState</strong>
2654
+ * <strong>ExpressCheckoutShippingAddressChangeRequest</strong>
2655
+ * <strong>ExpressCheckoutShippingAddressChangeResponse</strong>
2656
+ * <strong>ExpressCheckoutShippingMethodChangeRequest</strong>
2657
+ * <strong>ExpressCheckoutShippingMethodChangeResponse</strong>
2616
2658
  * <strong>ExpressCheckoutShippingOption</strong>
2617
2659
  * <strong>ExpressCheckoutWalletType</strong>
2618
2660
  * <strong>ExternalTransferBankTransaction</strong>
@@ -2725,6 +2767,7 @@ Additional Api models documentation: [*link*](https://checkout.postfinance.ch/en
2725
2767
  * <strong>PaymentTerminalConfigurationVersion</strong>
2726
2768
  * <strong>PaymentTerminalConfigurationVersionState</strong>
2727
2769
  * <strong>PaymentTerminalCreate</strong>
2770
+ * <strong>PaymentTerminalDccTransactionSum</strong>
2728
2771
  * <strong>PaymentTerminalLocation</strong>
2729
2772
  * <strong>PaymentTerminalLocationState</strong>
2730
2773
  * <strong>PaymentTerminalLocationVersion</strong>
@@ -2732,6 +2775,8 @@ Additional Api models documentation: [*link*](https://checkout.postfinance.ch/en
2732
2775
  * <strong>PaymentTerminalPreparing</strong>
2733
2776
  * <strong>PaymentTerminalReceiptType</strong>
2734
2777
  * <strong>PaymentTerminalState</strong>
2778
+ * <strong>PaymentTerminalTransactionSum</strong>
2779
+ * <strong>PaymentTerminalTransactionSummary</strong>
2735
2780
  * <strong>PaymentTerminalTransactionSummaryReference</strong>
2736
2781
  * <strong>PaymentTerminalType</strong>
2737
2782
  * <strong>PaymentTerminalUpdate</strong>
@@ -2791,6 +2836,7 @@ Additional Api models documentation: [*link*](https://checkout.postfinance.ch/en
2791
2836
  * <strong>RenderedDocument</strong>
2792
2837
  * <strong>RenderedTerminalReceipt</strong>
2793
2838
  * <strong>RenderedTerminalReceiptListResponse</strong>
2839
+ * <strong>RenderedTerminalTransactionSummary</strong>
2794
2840
  * <strong>RestAddressFormat</strong>
2795
2841
  * <strong>RestAddressFormatField</strong>
2796
2842
  * <strong>RestApiBulkOperationResult</strong>
@@ -2916,6 +2962,8 @@ Additional Api models documentation: [*link*](https://checkout.postfinance.ch/en
2916
2962
  * <strong>TerminalListResponse</strong>
2917
2963
  * <strong>TerminalReceiptFormat</strong>
2918
2964
  * <strong>TerminalSearchResponse</strong>
2965
+ * <strong>TerminalTransactionSummaryListResponse</strong>
2966
+ * <strong>TerminalTransactionSummarySearchResponse</strong>
2919
2967
  * <strong>Token</strong>
2920
2968
  * <strong>TokenCreate</strong>
2921
2969
  * <strong>TokenListResponse</strong>
@@ -2996,44 +3044,20 @@ When working with webhooks, the `PostFinanceCheckoutSdkException` may throw erro
2996
3044
 
2997
3045
  ### Error Code Categories
2998
3046
 
2999
- | **Range** | **Category** | **Description** |
3000
- |-----------|--------------|-----------------|
3001
- | **404** | Not Found | Indicates that the requested resource could not be found or the endpoint returned an empty response |
3002
- | **1000–1999** | Client-Side Errors | Errors typically caused by invalid input |
3003
- | **2000–2999** | Server-Side Errors | Errors typically caused by incorrect data provided by the server |
3004
-
3005
- ### Error Code Reference
3006
-
3007
- | **Code** | **Error Name** | **Description** | **Category** |
3008
- |----------|----------------|-----------------|--------------|
3009
- | 404 | `UNKNOWN_WEBHOOK_ENCRYPTION_PUBLIC_KEY` | Unknown webhook signature public key | Not Found |
3010
- | 1000 | `WEBHOOK_ENCRYPTION_GENERAL_ERROR` | General webhook encryption error | Client-Side |
3011
- | 1001 | `INVALID_WEBHOOK_ENCRYPTION_PUBLIC_KEY` | Invalid webhook signature public key | Client-Side |
3012
- | 1002 | `INVALID_WEBHOOK_ENCRYPTION_HEADER_FORMAT` | Invalid webhook signature header | Client-Side |
3013
- | 1003 | `UNSUPPORTED_WEBHOOK_ENCRYPTION_ALGORYTHM` | Unsupported webhook signature algorithm | Client-Side |
3014
- | 1004 | `UNKNOWN_WEBHOOK_ENCRYPTION_PROVIDER` | Unknown webhook encryption provider | Client-Side |
3015
- | 1005 | `WEBHOOK_ENCRYPTION_VERIFIER_INIT_ERROR` | Encryption verifier initialization error | Client-Side |
3016
- | 1006 | `WEBHOOK_ENCRYPTION_VERIFIER_CONTENT_UPDATE_ERROR` | Error during content update in encryption verifier | Client-Side |
3017
- | 1007 | `WEBHOOK_ENCRYPTION_SIGNATURE_VERIFICATION_FAILED` | Encryption signature verification failed | Client-Side |
3018
- | 1008 | `INVALID_WEBHOOK_ENCRYPTION_CONTENT_SIGNATURE` | Invalid webhook content signature | Client-Side |
3019
- | 2000 | `MISSING_WEBHOOK_ENCRYPTION_ALGORYTHM` | Missing webhook signature algorithm value | Server-Side |
3047
+ | **Exception** | **Description** |
3048
+ |----------------------------|---------------------------------------------------------------------------------------|
3049
+ | **ApiExceptionErrorCodes** | Lists the possible HTTP error codes an `ApiException` can generate |
3050
+ | **SdkExceptionErrorCodes** | Lists the possible error codes a `PostFinanceCheckoutSdkException` can generate |
3020
3051
 
3021
3052
  ### Usage Example
3022
3053
  ```python
3023
- from postfinancecheckout.postfinancecheckout_sdk_exception import PostFinanceCheckoutSdkException
3024
-
3025
3054
  try:
3026
- # Webhook SDK operation
3027
- except PostFinanceCheckoutSdkException as e:
3028
- if e.code == 1001: # INVALID_WEBHOOK_ENCRYPTION_PUBLIC_KEY
3029
- # Handle invalid public key
3030
- pass
3031
- elif e.code == 1007: # WEBHOOK_ENCRYPTION_SIGNATURE_VERIFICATION_FAILED
3032
- # Handle signature verification failure
3033
- pass
3055
+ # SDK operation
3056
+ except ApiException as ex:
3057
+ if ApiExceptionErrorCodes.CONFLICT.matches(ex):
3058
+ # Handle Conflict
3034
3059
  else:
3035
- # Handle other errors
3036
- pass
3060
+ # Other handling
3037
3061
  ```
3038
3062
 
3039
3063
  ## Author
@@ -25,7 +25,7 @@ limitations under the License.
25
25
  """
26
26
 
27
27
 
28
- __version__ = "6.2.0"
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
@@ -70,6 +71,7 @@ from postfinancecheckout.service.payment_methods_service import PaymentMethodsSe
70
71
  from postfinancecheckout.service.payment_processor_configurations_service import PaymentProcessorConfigurationsService
71
72
  from postfinancecheckout.service.payment_processors_service import PaymentProcessorsService
72
73
  from postfinancecheckout.service.payment_sales_channels_service import PaymentSalesChannelsService
74
+ from postfinancecheckout.service.payment_terminal_transaction_summaries_service import PaymentTerminalTransactionSummariesService
73
75
  from postfinancecheckout.service.payment_terminals_service import PaymentTerminalsService
74
76
  from postfinancecheckout.service.permissions_service import PermissionsService
75
77
  from postfinancecheckout.service.refund_bank_transactions_service import RefundBankTransactionsService
@@ -126,6 +128,8 @@ from postfinancecheckout.exceptions import ApiValueError
126
128
  from postfinancecheckout.exceptions import ApiKeyError
127
129
  from postfinancecheckout.exceptions import ApiAttributeError
128
130
  from postfinancecheckout.exceptions import ApiException
131
+ from postfinancecheckout.api_exception_error_codes import ApiExceptionErrorCodes
132
+ from postfinancecheckout.sdk_exception_error_codes import SdkExceptionErrorCodes
129
133
  from postfinancecheckout.postfinancecheckout_sdk_exception import PostFinanceCheckoutSdkException
130
134
 
131
135
  # import utils into sdk package
@@ -194,6 +198,8 @@ from postfinancecheckout.models.bank_transaction_type import BankTransactionType
194
198
  from postfinancecheckout.models.billing_cycle_model import BillingCycleModel
195
199
  from postfinancecheckout.models.billing_cycle_type import BillingCycleType
196
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
197
203
  from postfinancecheckout.models.card_authentication_response import CardAuthenticationResponse
198
204
  from postfinancecheckout.models.card_authentication_version import CardAuthenticationVersion
199
205
  from postfinancecheckout.models.card_cryptogram import CardCryptogram
@@ -293,10 +299,15 @@ from postfinancecheckout.models.dunning_flow_list_response import DunningFlowLis
293
299
  from postfinancecheckout.models.dunning_flow_search_response import DunningFlowSearchResponse
294
300
  from postfinancecheckout.models.dunning_flow_type import DunningFlowType
295
301
  from postfinancecheckout.models.environment import Environment
302
+ from postfinancecheckout.models.express_checkout_approval_response import ExpressCheckoutApprovalResponse
296
303
  from postfinancecheckout.models.express_checkout_create_response import ExpressCheckoutCreateResponse
297
304
  from postfinancecheckout.models.express_checkout_session import ExpressCheckoutSession
298
305
  from postfinancecheckout.models.express_checkout_session_create import ExpressCheckoutSessionCreate
299
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
300
311
  from postfinancecheckout.models.express_checkout_shipping_option import ExpressCheckoutShippingOption
301
312
  from postfinancecheckout.models.express_checkout_wallet_type import ExpressCheckoutWalletType
302
313
  from postfinancecheckout.models.external_transfer_bank_transaction import ExternalTransferBankTransaction
@@ -409,6 +420,7 @@ from postfinancecheckout.models.payment_terminal_configuration_state import Paym
409
420
  from postfinancecheckout.models.payment_terminal_configuration_version import PaymentTerminalConfigurationVersion
410
421
  from postfinancecheckout.models.payment_terminal_configuration_version_state import PaymentTerminalConfigurationVersionState
411
422
  from postfinancecheckout.models.payment_terminal_create import PaymentTerminalCreate
423
+ from postfinancecheckout.models.payment_terminal_dcc_transaction_sum import PaymentTerminalDccTransactionSum
412
424
  from postfinancecheckout.models.payment_terminal_location import PaymentTerminalLocation
413
425
  from postfinancecheckout.models.payment_terminal_location_state import PaymentTerminalLocationState
414
426
  from postfinancecheckout.models.payment_terminal_location_version import PaymentTerminalLocationVersion
@@ -416,6 +428,8 @@ from postfinancecheckout.models.payment_terminal_location_version_state import P
416
428
  from postfinancecheckout.models.payment_terminal_preparing import PaymentTerminalPreparing
417
429
  from postfinancecheckout.models.payment_terminal_receipt_type import PaymentTerminalReceiptType
418
430
  from postfinancecheckout.models.payment_terminal_state import PaymentTerminalState
431
+ from postfinancecheckout.models.payment_terminal_transaction_sum import PaymentTerminalTransactionSum
432
+ from postfinancecheckout.models.payment_terminal_transaction_summary import PaymentTerminalTransactionSummary
419
433
  from postfinancecheckout.models.payment_terminal_transaction_summary_reference import PaymentTerminalTransactionSummaryReference
420
434
  from postfinancecheckout.models.payment_terminal_type import PaymentTerminalType
421
435
  from postfinancecheckout.models.payment_terminal_update import PaymentTerminalUpdate
@@ -475,6 +489,7 @@ from postfinancecheckout.models.refund_type import RefundType
475
489
  from postfinancecheckout.models.rendered_document import RenderedDocument
476
490
  from postfinancecheckout.models.rendered_terminal_receipt import RenderedTerminalReceipt
477
491
  from postfinancecheckout.models.rendered_terminal_receipt_list_response import RenderedTerminalReceiptListResponse
492
+ from postfinancecheckout.models.rendered_terminal_transaction_summary import RenderedTerminalTransactionSummary
478
493
  from postfinancecheckout.models.rest_address_format import RestAddressFormat
479
494
  from postfinancecheckout.models.rest_address_format_field import RestAddressFormatField
480
495
  from postfinancecheckout.models.rest_api_bulk_operation_result import RestApiBulkOperationResult
@@ -600,6 +615,8 @@ from postfinancecheckout.models.tenant_database import TenantDatabase
600
615
  from postfinancecheckout.models.terminal_list_response import TerminalListResponse
601
616
  from postfinancecheckout.models.terminal_receipt_format import TerminalReceiptFormat
602
617
  from postfinancecheckout.models.terminal_search_response import TerminalSearchResponse
618
+ from postfinancecheckout.models.terminal_transaction_summary_list_response import TerminalTransactionSummaryListResponse
619
+ from postfinancecheckout.models.terminal_transaction_summary_search_response import TerminalTransactionSummarySearchResponse
603
620
  from postfinancecheckout.models.token import Token
604
621
  from postfinancecheckout.models.token_create import TokenCreate
605
622
  from postfinancecheckout.models.token_list_response import TokenListResponse
@@ -181,7 +181,7 @@ class ApiClient:
181
181
 
182
182
  # predefined default headers
183
183
  default_headers = {
184
- 'x-meta-sdk-version': '6.2.0',
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()
@@ -0,0 +1,69 @@
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 enum import Enum
27
+
28
+ class ApiExceptionErrorCodes(Enum):
29
+ """
30
+ This class represents possible HTTP error codes which can be sent by the API.
31
+ This list corresponds to https://checkout.postfinance.ch/en-us/doc/api/web-service#_errors
32
+ """
33
+ # The request was not accepted often due to missing or invalid parameters
34
+ BAD_REQUEST = 400
35
+ # The necessary authentication credentials are missing or incorrect
36
+ UNAUTHORIZED = 401
37
+ # The application user is missing the required permissions
38
+ FORBIDDEN = 403
39
+ # The requested resource was not found
40
+ NOT_FOUND = 404
41
+ # The requested response format is not supported
42
+ NOT_ACCEPTABLE = 406
43
+ # The request conflicts with another request often because of to optimistic locking
44
+ CONFLICT = 409
45
+ # Too many operations in a bulk request
46
+ PAYLOAD_TOO_LARGE = 413
47
+ # The request provides unsupported or invalid data
48
+ UNSUPPORTED_MEDIA_TYPE = 415
49
+ # The pagination offset exceeds the limit
50
+ RANGE_NOT_SATISFIABLE = 416
51
+ # The request is well-formed but contains semantic errors
52
+ UNPROCESSABLE_ENTITY = 422
53
+ # Too many requests hit the API too quickly
54
+ TOO_MANY_REQUESTS = 429
55
+ # An internal error occurred on the server
56
+ INTERNAL_SERVER_ERROR = 500
57
+
58
+ def __init__(self, http_code):
59
+ self._http_code = http_code
60
+
61
+ @property
62
+ def http_code(self):
63
+ return self._http_code
64
+
65
+ def matches(self, api_exception):
66
+ """
67
+ Checks if the given exception matches this error code.
68
+ """
69
+ return api_exception.status == self.http_code
@@ -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.2.0".\
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]:
@@ -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
@@ -302,6 +309,7 @@ from postfinancecheckout.models.payment_terminal_configuration_state import Paym
302
309
  from postfinancecheckout.models.payment_terminal_configuration_version import PaymentTerminalConfigurationVersion
303
310
  from postfinancecheckout.models.payment_terminal_configuration_version_state import PaymentTerminalConfigurationVersionState
304
311
  from postfinancecheckout.models.payment_terminal_create import PaymentTerminalCreate
312
+ from postfinancecheckout.models.payment_terminal_dcc_transaction_sum import PaymentTerminalDccTransactionSum
305
313
  from postfinancecheckout.models.payment_terminal_location import PaymentTerminalLocation
306
314
  from postfinancecheckout.models.payment_terminal_location_state import PaymentTerminalLocationState
307
315
  from postfinancecheckout.models.payment_terminal_location_version import PaymentTerminalLocationVersion
@@ -309,6 +317,8 @@ from postfinancecheckout.models.payment_terminal_location_version_state import P
309
317
  from postfinancecheckout.models.payment_terminal_preparing import PaymentTerminalPreparing
310
318
  from postfinancecheckout.models.payment_terminal_receipt_type import PaymentTerminalReceiptType
311
319
  from postfinancecheckout.models.payment_terminal_state import PaymentTerminalState
320
+ from postfinancecheckout.models.payment_terminal_transaction_sum import PaymentTerminalTransactionSum
321
+ from postfinancecheckout.models.payment_terminal_transaction_summary import PaymentTerminalTransactionSummary
312
322
  from postfinancecheckout.models.payment_terminal_transaction_summary_reference import PaymentTerminalTransactionSummaryReference
313
323
  from postfinancecheckout.models.payment_terminal_type import PaymentTerminalType
314
324
  from postfinancecheckout.models.payment_terminal_update import PaymentTerminalUpdate
@@ -368,6 +378,7 @@ from postfinancecheckout.models.refund_type import RefundType
368
378
  from postfinancecheckout.models.rendered_document import RenderedDocument
369
379
  from postfinancecheckout.models.rendered_terminal_receipt import RenderedTerminalReceipt
370
380
  from postfinancecheckout.models.rendered_terminal_receipt_list_response import RenderedTerminalReceiptListResponse
381
+ from postfinancecheckout.models.rendered_terminal_transaction_summary import RenderedTerminalTransactionSummary
371
382
  from postfinancecheckout.models.rest_address_format import RestAddressFormat
372
383
  from postfinancecheckout.models.rest_address_format_field import RestAddressFormatField
373
384
  from postfinancecheckout.models.rest_api_bulk_operation_result import RestApiBulkOperationResult
@@ -493,6 +504,8 @@ from postfinancecheckout.models.tenant_database import TenantDatabase
493
504
  from postfinancecheckout.models.terminal_list_response import TerminalListResponse
494
505
  from postfinancecheckout.models.terminal_receipt_format import TerminalReceiptFormat
495
506
  from postfinancecheckout.models.terminal_search_response import TerminalSearchResponse
507
+ from postfinancecheckout.models.terminal_transaction_summary_list_response import TerminalTransactionSummaryListResponse
508
+ from postfinancecheckout.models.terminal_transaction_summary_search_response import TerminalTransactionSummarySearchResponse
496
509
  from postfinancecheckout.models.token import Token
497
510
  from postfinancecheckout.models.token_create import TokenCreate
498
511
  from postfinancecheckout.models.token_list_response import TokenListResponse
@@ -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
+