wallee 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 (723) hide show
  1. {wallee-6.2.0 → wallee-6.4.0}/PKG-INFO +1 -1
  2. {wallee-6.2.0 → wallee-6.4.0}/README.md +57 -33
  3. {wallee-6.2.0 → wallee-6.4.0}/pyproject.toml +1 -1
  4. {wallee-6.2.0 → wallee-6.4.0}/setup.py +1 -1
  5. {wallee-6.2.0 → wallee-6.4.0}/tests/test_querying.py +9 -0
  6. {wallee-6.2.0 → wallee-6.4.0}/wallee/__init__.py +18 -1
  7. {wallee-6.2.0 → wallee-6.4.0}/wallee/api_client.py +1 -1
  8. wallee-6.4.0/wallee/api_exception_error_codes.py +69 -0
  9. {wallee-6.2.0 → wallee-6.4.0}/wallee/configuration.py +1 -1
  10. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/__init__.py +13 -0
  11. wallee-6.4.0/wallee/models/bogus_express_checkout_approval_request.py +102 -0
  12. wallee-6.4.0/wallee/models/bogus_express_checkout_payment_data.py +104 -0
  13. wallee-6.4.0/wallee/models/express_checkout_approval_response.py +107 -0
  14. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/express_checkout_create_response.py +4 -2
  15. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/express_checkout_session.py +20 -1
  16. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/express_checkout_session_create.py +6 -2
  17. wallee-6.4.0/wallee/models/express_checkout_shipping_address_change_request.py +107 -0
  18. wallee-6.4.0/wallee/models/express_checkout_shipping_address_change_response.py +112 -0
  19. wallee-6.4.0/wallee/models/express_checkout_shipping_method_change_request.py +100 -0
  20. wallee-6.4.0/wallee/models/express_checkout_shipping_method_change_response.py +112 -0
  21. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/express_checkout_shipping_option.py +1 -1
  22. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_address.py +3 -3
  23. wallee-6.4.0/wallee/models/payment_terminal_dcc_transaction_sum.py +128 -0
  24. wallee-6.4.0/wallee/models/payment_terminal_transaction_sum.py +140 -0
  25. wallee-6.4.0/wallee/models/payment_terminal_transaction_summary.py +161 -0
  26. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund.py +5 -1
  27. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_create.py +4 -2
  28. wallee-6.4.0/wallee/models/rendered_terminal_transaction_summary.py +104 -0
  29. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/scope.py +3 -3
  30. wallee-6.4.0/wallee/models/terminal_transaction_summary_list_response.py +116 -0
  31. wallee-6.4.0/wallee/models/terminal_transaction_summary_search_response.py +120 -0
  32. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_completion.py +5 -1
  33. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_completion_details.py +7 -3
  34. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_user_interface_type.py +1 -0
  35. wallee-6.4.0/wallee/sdk_exception_error_codes.py +66 -0
  36. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/__init__.py +2 -0
  37. wallee-6.2.0/wallee/service/express_checkout_service.py → wallee-6.4.0/wallee/service/bogus_express_checkout_service.py +52 -35
  38. wallee-6.4.0/wallee/service/express_checkout_service.py +895 -0
  39. wallee-6.4.0/wallee/service/payment_terminal_transaction_summaries_service.py +1263 -0
  40. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/webhook_encryption_keys_service.py +3 -3
  41. {wallee-6.2.0 → wallee-6.4.0}/wallee/utils/encryption_util.py +6 -6
  42. {wallee-6.2.0 → wallee-6.4.0}/wallee/wallee_sdk_exception.py +14 -8
  43. {wallee-6.2.0 → wallee-6.4.0}/wallee.egg-info/PKG-INFO +1 -1
  44. {wallee-6.2.0 → wallee-6.4.0}/wallee.egg-info/SOURCES.txt +17 -1
  45. wallee-6.2.0/wallee/error_code.py +0 -67
  46. {wallee-6.2.0 → wallee-6.4.0}/setup.cfg +0 -0
  47. {wallee-6.2.0 → wallee-6.4.0}/tests/test_encryption_util.py +0 -0
  48. {wallee-6.2.0 → wallee-6.4.0}/tests/test_refunds_service.py +0 -0
  49. {wallee-6.2.0 → wallee-6.4.0}/tests/test_transaction_completions_service.py +0 -0
  50. {wallee-6.2.0 → wallee-6.4.0}/tests/test_transactions_service.py +0 -0
  51. {wallee-6.2.0 → wallee-6.4.0}/tests/test_webhook_listeners_api.py +0 -0
  52. {wallee-6.2.0 → wallee-6.4.0}/wallee/api_response.py +0 -0
  53. {wallee-6.2.0 → wallee-6.4.0}/wallee/exceptions.py +0 -0
  54. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_account_update.py +0 -0
  55. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_application_user_update.py +0 -0
  56. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_customer_active.py +0 -0
  57. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_customer_address_active.py +0 -0
  58. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_customer_comment_active.py +0 -0
  59. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_debt_collection_case_update.py +0 -0
  60. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_debt_collector_configuration_update.py +0 -0
  61. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_human_user_update.py +0 -0
  62. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_payment_connector_configuration_update.py +0 -0
  63. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_payment_link_update.py +0 -0
  64. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_payment_method_configuration_update.py +0 -0
  65. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_payment_processor_configuration_active.py +0 -0
  66. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_payment_terminal_update.py +0 -0
  67. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_refund_comment_active.py +0 -0
  68. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_role_update.py +0 -0
  69. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_single_sign_on_user_update.py +0 -0
  70. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_space_update.py +0 -0
  71. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_subscriber_update.py +0 -0
  72. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_subscription_affiliate_update.py +0 -0
  73. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_subscription_metric_update.py +0 -0
  74. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_subscription_product_active.py +0 -0
  75. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_token_update.py +0 -0
  76. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_transaction_comment_active.py +0 -0
  77. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_transaction_invoice_comment_active.py +0 -0
  78. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_transaction_pending.py +0 -0
  79. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_webhook_listener_update.py +0 -0
  80. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/abstract_webhook_url_update.py +0 -0
  81. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/account.py +0 -0
  82. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/account_create.py +0 -0
  83. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/account_list_response.py +0 -0
  84. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/account_search_response.py +0 -0
  85. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/account_state.py +0 -0
  86. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/account_type.py +0 -0
  87. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/account_update.py +0 -0
  88. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/address.py +0 -0
  89. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/address_create.py +0 -0
  90. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/analytics_query_execution_request.py +0 -0
  91. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/analytics_query_execution_response.py +0 -0
  92. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/application_key_state.py +0 -0
  93. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/application_user.py +0 -0
  94. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/application_user_create.py +0 -0
  95. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/application_user_create_with_mac_key.py +0 -0
  96. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/application_user_list_response.py +0 -0
  97. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/application_user_search_response.py +0 -0
  98. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/application_user_update.py +0 -0
  99. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/authenticated_card_data.py +0 -0
  100. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/authenticated_card_data_create.py +0 -0
  101. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/authenticated_card_request.py +0 -0
  102. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_account.py +0 -0
  103. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_account_environment.py +0 -0
  104. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_account_list_response.py +0 -0
  105. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_account_search_response.py +0 -0
  106. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_account_state.py +0 -0
  107. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_account_type.py +0 -0
  108. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_transaction.py +0 -0
  109. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_transaction_flow_direction.py +0 -0
  110. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_transaction_list_response.py +0 -0
  111. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_transaction_search_response.py +0 -0
  112. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_transaction_source.py +0 -0
  113. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_transaction_state.py +0 -0
  114. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/bank_transaction_type.py +0 -0
  115. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/billing_cycle_model.py +0 -0
  116. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/billing_cycle_type.py +0 -0
  117. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/billing_day_customization.py +0 -0
  118. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/card_authentication_response.py +0 -0
  119. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/card_authentication_version.py +0 -0
  120. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/card_cryptogram.py +0 -0
  121. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/card_cryptogram_create.py +0 -0
  122. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/cardholder_authentication.py +0 -0
  123. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/cardholder_authentication_create.py +0 -0
  124. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge.py +0 -0
  125. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_attempt.py +0 -0
  126. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_attempt_environment.py +0 -0
  127. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_attempt_list_response.py +0 -0
  128. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_attempt_search_response.py +0 -0
  129. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_attempt_state.py +0 -0
  130. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_bank_transaction.py +0 -0
  131. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_bank_transaction_list_response.py +0 -0
  132. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_bank_transaction_search_response.py +0 -0
  133. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow.py +0 -0
  134. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_level.py +0 -0
  135. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_level_configuration.py +0 -0
  136. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_level_configuration_type.py +0 -0
  137. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_level_list_response.py +0 -0
  138. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_level_payment_link.py +0 -0
  139. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_level_payment_link_list_response.py +0 -0
  140. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_level_payment_link_search_response.py +0 -0
  141. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_level_search_response.py +0 -0
  142. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_level_state.py +0 -0
  143. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_list_response.py +0 -0
  144. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_flow_search_response.py +0 -0
  145. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_state.py +0 -0
  146. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/charge_type.py +0 -0
  147. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/client_platform_information_list_response.py +0 -0
  148. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/client_platform_information_search_response.py +0 -0
  149. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/completion_line_item.py +0 -0
  150. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/completion_line_item_create.py +0 -0
  151. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/completion_list_response.py +0 -0
  152. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/completion_search_response.py +0 -0
  153. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/condition.py +0 -0
  154. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/condition_type.py +0 -0
  155. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/condition_type_list_response.py +0 -0
  156. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/condition_type_search_response.py +0 -0
  157. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/connector_invocation.py +0 -0
  158. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/connector_invocation_stage.py +0 -0
  159. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/country_list_response.py +0 -0
  160. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/country_search_response.py +0 -0
  161. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/creation_entity_state.py +0 -0
  162. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/currency_bank_account.py +0 -0
  163. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/currency_bank_account_list_response.py +0 -0
  164. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/currency_bank_account_search_response.py +0 -0
  165. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/currency_list_response.py +0 -0
  166. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/currency_search_response.py +0 -0
  167. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer.py +0 -0
  168. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_active.py +0 -0
  169. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_address.py +0 -0
  170. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_address_active.py +0 -0
  171. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_address_create.py +0 -0
  172. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_address_list_response.py +0 -0
  173. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_address_search_response.py +0 -0
  174. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_address_type.py +0 -0
  175. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_comment.py +0 -0
  176. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_comment_active.py +0 -0
  177. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_comment_create.py +0 -0
  178. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_comment_list_response.py +0 -0
  179. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_comment_search_response.py +0 -0
  180. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_create.py +0 -0
  181. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_email_address_list_response.py +0 -0
  182. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_list_response.py +0 -0
  183. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_postal_address.py +0 -0
  184. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_postal_address_create.py +0 -0
  185. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customer_search_response.py +0 -0
  186. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/customers_presence.py +0 -0
  187. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/data_collection_type.py +0 -0
  188. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_case.py +0 -0
  189. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_case_create.py +0 -0
  190. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_case_document.py +0 -0
  191. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_case_document_list_response.py +0 -0
  192. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_case_list_response.py +0 -0
  193. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_case_search_response.py +0 -0
  194. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_case_source.py +0 -0
  195. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_case_state.py +0 -0
  196. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_case_update.py +0 -0
  197. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_environment.py +0 -0
  198. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_receipt.py +0 -0
  199. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collection_receipt_source.py +0 -0
  200. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector.py +0 -0
  201. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector_condition.py +0 -0
  202. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector_condition_type.py +0 -0
  203. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector_configuration.py +0 -0
  204. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector_configuration_create.py +0 -0
  205. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector_configuration_list_response.py +0 -0
  206. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector_configuration_search_response.py +0 -0
  207. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector_configuration_update.py +0 -0
  208. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector_list_response.py +0 -0
  209. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/debt_collector_search_response.py +0 -0
  210. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/delivery_indication.py +0 -0
  211. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/delivery_indication_decision_reason.py +0 -0
  212. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/delivery_indication_list_response.py +0 -0
  213. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/delivery_indication_search_response.py +0 -0
  214. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/delivery_indication_state.py +0 -0
  215. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/displayable_day_of_week.py +0 -0
  216. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/displayable_month.py +0 -0
  217. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/document_template.py +0 -0
  218. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/document_template_list_response.py +0 -0
  219. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/document_template_search_response.py +0 -0
  220. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/document_template_type.py +0 -0
  221. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/document_template_type_group.py +0 -0
  222. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/document_template_type_list_response.py +0 -0
  223. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/document_template_type_search_response.py +0 -0
  224. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_case.py +0 -0
  225. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_case_list_response.py +0 -0
  226. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_case_search_response.py +0 -0
  227. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_case_state.py +0 -0
  228. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_condition.py +0 -0
  229. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_condition_type.py +0 -0
  230. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_flow.py +0 -0
  231. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_flow_level.py +0 -0
  232. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_flow_level_list_response.py +0 -0
  233. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_flow_level_processor.py +0 -0
  234. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_flow_level_search_response.py +0 -0
  235. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_flow_list_response.py +0 -0
  236. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_flow_search_response.py +0 -0
  237. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/dunning_flow_type.py +0 -0
  238. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/environment.py +0 -0
  239. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/express_checkout_session_state.py +0 -0
  240. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/express_checkout_wallet_type.py +0 -0
  241. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/external_transfer_bank_transaction.py +0 -0
  242. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/external_transfer_bank_transaction_list_response.py +0 -0
  243. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/external_transfer_bank_transaction_search_response.py +0 -0
  244. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/facade_user_friendly_query_status_model.py +0 -0
  245. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/failure_category.py +0 -0
  246. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/failure_reason.py +0 -0
  247. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/feature.py +0 -0
  248. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/feature_category.py +0 -0
  249. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/gender.py +0 -0
  250. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/human_user.py +0 -0
  251. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/human_user_create.py +0 -0
  252. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/human_user_list_response.py +0 -0
  253. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/human_user_search_response.py +0 -0
  254. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/human_user_update.py +0 -0
  255. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/internal_transfer_bank_transaction.py +0 -0
  256. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/internal_transfer_bank_transaction_list_response.py +0 -0
  257. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/internal_transfer_bank_transaction_search_response.py +0 -0
  258. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/invoice_comment_list_response.py +0 -0
  259. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/invoice_comment_search_response.py +0 -0
  260. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/invoice_list_response.py +0 -0
  261. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/invoice_search_response.py +0 -0
  262. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/label.py +0 -0
  263. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/label_descriptor.py +0 -0
  264. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/label_descriptor_category.py +0 -0
  265. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/label_descriptor_group.py +0 -0
  266. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/label_descriptor_group_list_response.py +0 -0
  267. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/label_descriptor_group_search_response.py +0 -0
  268. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/label_descriptor_list_response.py +0 -0
  269. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/label_descriptor_search_response.py +0 -0
  270. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/label_descriptor_type.py +0 -0
  271. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/language_list_response.py +0 -0
  272. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/language_search_response.py +0 -0
  273. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/legal_organization_form.py +0 -0
  274. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/legal_organization_form_list_response.py +0 -0
  275. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/legal_organization_form_search_response.py +0 -0
  276. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/line_item.py +0 -0
  277. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/line_item_attribute.py +0 -0
  278. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/line_item_attribute_create.py +0 -0
  279. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/line_item_create.py +0 -0
  280. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/line_item_reduction.py +0 -0
  281. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/line_item_reduction_create.py +0 -0
  282. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/line_item_type.py +0 -0
  283. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/line_item_version_list_response.py +0 -0
  284. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/line_item_version_search_response.py +0 -0
  285. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/localized_string.py +0 -0
  286. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/manual_task.py +0 -0
  287. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/manual_task_action.py +0 -0
  288. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/manual_task_action_style.py +0 -0
  289. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/manual_task_list_response.py +0 -0
  290. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/manual_task_search_response.py +0 -0
  291. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/manual_task_state.py +0 -0
  292. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/manual_task_type.py +0 -0
  293. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/metric_list_response.py +0 -0
  294. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/metric_search_response.py +0 -0
  295. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/metric_usage.py +0 -0
  296. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/metric_usage_list_response.py +0 -0
  297. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/metric_usage_report_list_response.py +0 -0
  298. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/metric_usage_report_search_response.py +0 -0
  299. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/one_click_payment_mode.py +0 -0
  300. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/pan_type.py +0 -0
  301. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_adjustment.py +0 -0
  302. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_adjustment_type.py +0 -0
  303. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_charge_attempt_target_state.py +0 -0
  304. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_charge_attempt_update.py +0 -0
  305. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_completion_configuration.py +0 -0
  306. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_completion_configuration_create.py +0 -0
  307. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_completion_target_state.py +0 -0
  308. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_completion_update.py +0 -0
  309. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_connector.py +0 -0
  310. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_connector_details.py +0 -0
  311. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_connector_details_create.py +0 -0
  312. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_connector_state.py +0 -0
  313. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_processor.py +0 -0
  314. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_processor_details.py +0 -0
  315. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_processor_details_create.py +0 -0
  316. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_processor_state.py +0 -0
  317. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_refund_configuration.py +0 -0
  318. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_refund_configuration_create.py +0 -0
  319. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_refund_target_state.py +0 -0
  320. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_refund_update.py +0 -0
  321. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_void_target_state.py +0 -0
  322. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_app_void_update.py +0 -0
  323. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_connector.py +0 -0
  324. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_connector_configuration.py +0 -0
  325. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_connector_configuration_create.py +0 -0
  326. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_connector_configuration_list_response.py +0 -0
  327. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_connector_configuration_search_response.py +0 -0
  328. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_connector_configuration_update.py +0 -0
  329. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_connector_feature.py +0 -0
  330. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_connector_list_response.py +0 -0
  331. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_connector_search_response.py +0 -0
  332. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_contract.py +0 -0
  333. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_contract_state.py +0 -0
  334. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_contract_type.py +0 -0
  335. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_information_hash.py +0 -0
  336. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_information_hash_type.py +0 -0
  337. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_link.py +0 -0
  338. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_link_active.py +0 -0
  339. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_link_address_handling_mode.py +0 -0
  340. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_link_create.py +0 -0
  341. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_link_list_response.py +0 -0
  342. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_link_protection_mode.py +0 -0
  343. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_link_search_response.py +0 -0
  344. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_link_update.py +0 -0
  345. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method.py +0 -0
  346. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_brand.py +0 -0
  347. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_brand_list_response.py +0 -0
  348. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_brand_search_response.py +0 -0
  349. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_configuration.py +0 -0
  350. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_configuration_active.py +0 -0
  351. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_configuration_create.py +0 -0
  352. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_configuration_list_response.py +0 -0
  353. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_configuration_search_response.py +0 -0
  354. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_configuration_update.py +0 -0
  355. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_list_response.py +0 -0
  356. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_method_search_response.py +0 -0
  357. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_primary_risk_taker.py +0 -0
  358. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_processor.py +0 -0
  359. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_processor_configuration.py +0 -0
  360. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_processor_configuration_active.py +0 -0
  361. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_processor_configuration_create.py +0 -0
  362. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_processor_configuration_list_response.py +0 -0
  363. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_processor_configuration_search_response.py +0 -0
  364. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_processor_list_response.py +0 -0
  365. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_processor_search_response.py +0 -0
  366. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal.py +0 -0
  367. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_configuration.py +0 -0
  368. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_configuration_state.py +0 -0
  369. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_configuration_version.py +0 -0
  370. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_configuration_version_state.py +0 -0
  371. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_create.py +0 -0
  372. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_location.py +0 -0
  373. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_location_state.py +0 -0
  374. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_location_version.py +0 -0
  375. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_location_version_state.py +0 -0
  376. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_preparing.py +0 -0
  377. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_receipt_type.py +0 -0
  378. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_state.py +0 -0
  379. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_transaction_summary_reference.py +0 -0
  380. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_type.py +0 -0
  381. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/payment_terminal_update.py +0 -0
  382. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/permission.py +0 -0
  383. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/permission_list_response.py +0 -0
  384. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/permission_search_response.py +0 -0
  385. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/persistable_currency_amount.py +0 -0
  386. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/persistable_currency_amount_update.py +0 -0
  387. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_component_group_list_response.py +0 -0
  388. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_component_group_search_response.py +0 -0
  389. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_component_list_response.py +0 -0
  390. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_component_search_response.py +0 -0
  391. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_fee_type.py +0 -0
  392. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_list_response.py +0 -0
  393. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_metered_fee.py +0 -0
  394. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_metered_fee_list_response.py +0 -0
  395. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_metered_fee_search_response.py +0 -0
  396. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_metered_fee_tier_list_response.py +0 -0
  397. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_metered_fee_tier_search_response.py +0 -0
  398. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_metered_fee_update.py +0 -0
  399. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_metered_tier_fee.py +0 -0
  400. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_metered_tier_fee_update.py +0 -0
  401. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_metered_tier_pricing.py +0 -0
  402. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_period_fee.py +0 -0
  403. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_period_fee_list_response.py +0 -0
  404. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_period_fee_search_response.py +0 -0
  405. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_period_fee_update.py +0 -0
  406. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_retirement_list_response.py +0 -0
  407. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_retirement_search_response.py +0 -0
  408. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_search_response.py +0 -0
  409. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_setup_fee.py +0 -0
  410. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_setup_fee_list_response.py +0 -0
  411. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_setup_fee_search_response.py +0 -0
  412. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_setup_fee_update.py +0 -0
  413. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_version_list_response.py +0 -0
  414. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_version_retirement_list_response.py +0 -0
  415. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_version_retirement_search_response.py +0 -0
  416. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/product_version_search_response.py +0 -0
  417. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/recurring_indicator.py +0 -0
  418. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_bank_transaction.py +0 -0
  419. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_bank_transaction_list_response.py +0 -0
  420. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_bank_transaction_search_response.py +0 -0
  421. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_comment.py +0 -0
  422. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_comment_active.py +0 -0
  423. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_comment_create.py +0 -0
  424. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_comment_list_response.py +0 -0
  425. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_comment_search_response.py +0 -0
  426. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_list_response.py +0 -0
  427. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_recovery_bank_transaction.py +0 -0
  428. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_recovery_bank_transaction_list_response.py +0 -0
  429. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_recovery_bank_transaction_search_response.py +0 -0
  430. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_search_response.py +0 -0
  431. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_state.py +0 -0
  432. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/refund_type.py +0 -0
  433. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rendered_document.py +0 -0
  434. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rendered_terminal_receipt.py +0 -0
  435. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rendered_terminal_receipt_list_response.py +0 -0
  436. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_address_format.py +0 -0
  437. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_address_format_field.py +0 -0
  438. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_api_bulk_operation_result.py +0 -0
  439. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_api_error_response.py +0 -0
  440. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_application_user_mac_key.py +0 -0
  441. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_application_user_mac_key_created.py +0 -0
  442. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_country.py +0 -0
  443. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_country_state.py +0 -0
  444. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_currency.py +0 -0
  445. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_customer_email_address.py +0 -0
  446. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/rest_language.py +0 -0
  447. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/result_portion_model.py +0 -0
  448. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/role.py +0 -0
  449. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/role_create.py +0 -0
  450. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/role_list_response.py +0 -0
  451. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/role_search_response.py +0 -0
  452. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/role_state.py +0 -0
  453. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/role_update.py +0 -0
  454. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/sales_channel.py +0 -0
  455. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/sales_channel_list_response.py +0 -0
  456. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/sales_channel_search_response.py +0 -0
  457. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/scope_single_sign_on_provider.py +0 -0
  458. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/single_sign_on_user.py +0 -0
  459. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/single_sign_on_user_create.py +0 -0
  460. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/single_sign_on_user_list_response.py +0 -0
  461. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/single_sign_on_user_search_response.py +0 -0
  462. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/single_sign_on_user_update.py +0 -0
  463. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/sorting_order.py +0 -0
  464. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/space.py +0 -0
  465. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/space_address.py +0 -0
  466. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/space_address_create.py +0 -0
  467. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/space_create.py +0 -0
  468. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/space_list_response.py +0 -0
  469. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/space_search_response.py +0 -0
  470. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/space_update.py +0 -0
  471. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/space_view.py +0 -0
  472. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/static_value.py +0 -0
  473. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/static_value_list_response.py +0 -0
  474. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/static_value_search_response.py +0 -0
  475. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/submitted_analytics_query_execution.py +0 -0
  476. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscriber.py +0 -0
  477. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscriber_active.py +0 -0
  478. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscriber_create.py +0 -0
  479. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscriber_list_response.py +0 -0
  480. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscriber_search_response.py +0 -0
  481. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscriber_update.py +0 -0
  482. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription.py +0 -0
  483. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_affiliate.py +0 -0
  484. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_affiliate_create.py +0 -0
  485. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_affiliate_deleted.py +0 -0
  486. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_affiliate_deleting.py +0 -0
  487. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_affiliate_inactive.py +0 -0
  488. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_affiliate_list_response.py +0 -0
  489. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_affiliate_search_response.py +0 -0
  490. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_affiliate_update.py +0 -0
  491. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_charge.py +0 -0
  492. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_charge_create.py +0 -0
  493. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_charge_list_response.py +0 -0
  494. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_charge_processing_type.py +0 -0
  495. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_charge_search_response.py +0 -0
  496. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_charge_state.py +0 -0
  497. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_charge_type.py +0 -0
  498. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_component_configuration.py +0 -0
  499. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_component_reference_configuration.py +0 -0
  500. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_create_request.py +0 -0
  501. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_initialize_subscriber_present_request.py +0 -0
  502. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_ledger_entry.py +0 -0
  503. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_ledger_entry_create.py +0 -0
  504. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_ledger_entry_list_response.py +0 -0
  505. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_ledger_entry_search_response.py +0 -0
  506. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_ledger_entry_state.py +0 -0
  507. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_list_response.py +0 -0
  508. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_metric.py +0 -0
  509. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_metric_active.py +0 -0
  510. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_metric_create.py +0 -0
  511. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_metric_type.py +0 -0
  512. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_metric_update.py +0 -0
  513. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_metric_usage_report.py +0 -0
  514. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_metric_usage_report_create.py +0 -0
  515. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_pending.py +0 -0
  516. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_period_bill.py +0 -0
  517. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_period_bill_list_response.py +0 -0
  518. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_period_bill_search_response.py +0 -0
  519. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_period_bill_state.py +0 -0
  520. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product.py +0 -0
  521. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_active.py +0 -0
  522. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_component.py +0 -0
  523. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_component_group.py +0 -0
  524. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_component_group_update.py +0 -0
  525. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_component_reference.py +0 -0
  526. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_component_reference_state.py +0 -0
  527. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_component_update.py +0 -0
  528. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_create.py +0 -0
  529. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_retirement.py +0 -0
  530. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_retirement_request.py +0 -0
  531. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_state.py +0 -0
  532. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_version.py +0 -0
  533. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_version_pending.py +0 -0
  534. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_version_retirement.py +0 -0
  535. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_version_retirement_request.py +0 -0
  536. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_product_version_state.py +0 -0
  537. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_search_response.py +0 -0
  538. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_state.py +0 -0
  539. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_suspension.py +0 -0
  540. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_suspension_action.py +0 -0
  541. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_suspension_reason.py +0 -0
  542. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_suspension_state.py +0 -0
  543. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_update.py +0 -0
  544. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_update_request.py +0 -0
  545. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_version.py +0 -0
  546. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_version_list_response.py +0 -0
  547. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_version_search_response.py +0 -0
  548. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/subscription_version_state.py +0 -0
  549. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/suspension_creation_request.py +0 -0
  550. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/suspension_list_response.py +0 -0
  551. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/suspension_search_response.py +0 -0
  552. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/tax.py +0 -0
  553. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/tax_calculation.py +0 -0
  554. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/tax_class.py +0 -0
  555. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/tax_create.py +0 -0
  556. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/tenant_database.py +0 -0
  557. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/terminal_list_response.py +0 -0
  558. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/terminal_receipt_format.py +0 -0
  559. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/terminal_search_response.py +0 -0
  560. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token.py +0 -0
  561. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_create.py +0 -0
  562. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_list_response.py +0 -0
  563. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_search_response.py +0 -0
  564. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_update.py +0 -0
  565. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_version.py +0 -0
  566. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_version_list_response.py +0 -0
  567. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_version_retry_strategy.py +0 -0
  568. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_version_search_response.py +0 -0
  569. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_version_state.py +0 -0
  570. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/token_version_type.py +0 -0
  571. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/tokenization_mode.py +0 -0
  572. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/tokenized_card_data.py +0 -0
  573. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/tokenized_card_data_create.py +0 -0
  574. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/tokenized_card_request.py +0 -0
  575. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction.py +0 -0
  576. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_client_platform_information.py +0 -0
  577. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_comment.py +0 -0
  578. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_comment_active.py +0 -0
  579. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_comment_create.py +0 -0
  580. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_comment_list_response.py +0 -0
  581. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_comment_search_response.py +0 -0
  582. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_completion_behavior.py +0 -0
  583. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_completion_mode.py +0 -0
  584. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_completion_state.py +0 -0
  585. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_create.py +0 -0
  586. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_environment_selection_strategy.py +0 -0
  587. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_group.py +0 -0
  588. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_group_state.py +0 -0
  589. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_invoice.py +0 -0
  590. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_invoice_comment.py +0 -0
  591. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_invoice_comment_active.py +0 -0
  592. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_invoice_comment_create.py +0 -0
  593. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_invoice_replacement.py +0 -0
  594. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_invoice_state.py +0 -0
  595. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_line_item_version.py +0 -0
  596. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_line_item_version_create.py +0 -0
  597. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_line_item_version_state.py +0 -0
  598. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_list_response.py +0 -0
  599. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_pending.py +0 -0
  600. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_search_response.py +0 -0
  601. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_state.py +0 -0
  602. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_void.py +0 -0
  603. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_void_list_response.py +0 -0
  604. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_void_mode.py +0 -0
  605. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_void_search_response.py +0 -0
  606. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/transaction_void_state.py +0 -0
  607. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/two_factor_authentication_type.py +0 -0
  608. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/user.py +0 -0
  609. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/user_account_role.py +0 -0
  610. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/user_account_role_list_response.py +0 -0
  611. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/user_space_role.py +0 -0
  612. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/user_space_role_list_response.py +0 -0
  613. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/user_type.py +0 -0
  614. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/wallet_type.py +0 -0
  615. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/web_app_confirmation_response.py +0 -0
  616. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_identity.py +0 -0
  617. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_listener.py +0 -0
  618. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_listener_create.py +0 -0
  619. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_listener_entity.py +0 -0
  620. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_listener_list_response.py +0 -0
  621. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_listener_search_response.py +0 -0
  622. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_listener_update.py +0 -0
  623. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_url.py +0 -0
  624. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_url_create.py +0 -0
  625. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_url_list_response.py +0 -0
  626. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_url_search_response.py +0 -0
  627. {wallee-6.2.0 → wallee-6.4.0}/wallee/models/webhook_url_update.py +0 -0
  628. {wallee-6.2.0 → wallee-6.4.0}/wallee/py.typed +0 -0
  629. {wallee-6.2.0 → wallee-6.4.0}/wallee/rest.py +0 -0
  630. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/accounts_service.py +0 -0
  631. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/analytics_queries_service.py +0 -0
  632. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/application_users_roles_service.py +0 -0
  633. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/application_users_service.py +0 -0
  634. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/bank_accounts_service.py +0 -0
  635. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/bank_transactions_service.py +0 -0
  636. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/charge_attempts_service.py +0 -0
  637. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/charge_bank_transactions_service.py +0 -0
  638. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/charge_flow_levels_service.py +0 -0
  639. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/charge_flows_level_payment_links_service.py +0 -0
  640. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/charge_flows_service.py +0 -0
  641. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/condition_types_service.py +0 -0
  642. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/consumed_resources_service.py +0 -0
  643. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/countries_service.py +0 -0
  644. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/currencies_service.py +0 -0
  645. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/currency_bank_accounts_service.py +0 -0
  646. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/customer_addresses_service.py +0 -0
  647. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/customer_comments_service.py +0 -0
  648. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/customers_service.py +0 -0
  649. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/debt_collection_cases_service.py +0 -0
  650. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/debt_collector_configurations_service.py +0 -0
  651. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/debt_collectors_service.py +0 -0
  652. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/delivery_indications_service.py +0 -0
  653. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/document_template_types_service.py +0 -0
  654. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/document_templates_service.py +0 -0
  655. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/dunning_cases_service.py +0 -0
  656. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/dunning_flow_levels_service.py +0 -0
  657. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/dunning_flows_service.py +0 -0
  658. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/external_transfer_bank_transactions_service.py +0 -0
  659. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/human_users_roles_service.py +0 -0
  660. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/human_users_service.py +0 -0
  661. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/internal_transfer_bank_transactions_service.py +0 -0
  662. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/label_descriptors_service.py +0 -0
  663. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/languages_service.py +0 -0
  664. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/legal_organization_forms_service.py +0 -0
  665. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/manual_tasks_service.py +0 -0
  666. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_connector_configurations_service.py +0 -0
  667. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_connectors_service.py +0 -0
  668. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_links_service.py +0 -0
  669. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_method_brands_service.py +0 -0
  670. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_method_configurations_service.py +0 -0
  671. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_methods_service.py +0 -0
  672. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_processor_configurations_service.py +0 -0
  673. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_processors_service.py +0 -0
  674. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_sales_channels_service.py +0 -0
  675. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_terminals_service.py +0 -0
  676. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/payment_web_apps_service.py +0 -0
  677. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/permissions_service.py +0 -0
  678. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/refund_bank_transactions_service.py +0 -0
  679. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/refund_comments_service.py +0 -0
  680. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/refund_recovery_bank_transactions_service.py +0 -0
  681. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/refunds_service.py +0 -0
  682. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/roles_service.py +0 -0
  683. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/single_sign_on_users_roles_service.py +0 -0
  684. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/single_sign_on_users_service.py +0 -0
  685. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/spaces_service.py +0 -0
  686. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/static_values_service.py +0 -0
  687. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscribers_service.py +0 -0
  688. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_affiliates_service.py +0 -0
  689. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_charges_service.py +0 -0
  690. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_ledger_entries_service.py +0 -0
  691. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_metric_usage_reports_service.py +0 -0
  692. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_metrics_service.py +0 -0
  693. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_period_bills_service.py +0 -0
  694. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_product_component_groups_service.py +0 -0
  695. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_product_components_service.py +0 -0
  696. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_product_metered_fee_tiers_service.py +0 -0
  697. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_product_metered_fees_service.py +0 -0
  698. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_product_period_fees_service.py +0 -0
  699. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_product_retirements_service.py +0 -0
  700. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_product_setup_fees_service.py +0 -0
  701. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_product_version_retirements_service.py +0 -0
  702. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_product_versions_service.py +0 -0
  703. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_products_service.py +0 -0
  704. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_suspensions_service.py +0 -0
  705. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscription_versions_service.py +0 -0
  706. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/subscriptions_service.py +0 -0
  707. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/token_versions_service.py +0 -0
  708. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/tokens_service.py +0 -0
  709. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/transaction_client_platforms_service.py +0 -0
  710. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/transaction_comments_service.py +0 -0
  711. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/transaction_completions_service.py +0 -0
  712. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/transaction_invoice_comments_service.py +0 -0
  713. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/transaction_invoices_service.py +0 -0
  714. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/transaction_line_item_versions_service.py +0 -0
  715. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/transaction_voids_service.py +0 -0
  716. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/transactions_service.py +0 -0
  717. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/web_apps_service.py +0 -0
  718. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/webhook_listeners_service.py +0 -0
  719. {wallee-6.2.0 → wallee-6.4.0}/wallee/service/webhook_urls_service.py +0 -0
  720. {wallee-6.2.0 → wallee-6.4.0}/wallee/utils/__init__.py +0 -0
  721. {wallee-6.2.0 → wallee-6.4.0}/wallee.egg-info/dependency_links.txt +0 -0
  722. {wallee-6.2.0 → wallee-6.4.0}/wallee.egg-info/requires.txt +0 -0
  723. {wallee-6.2.0 → wallee-6.4.0}/wallee.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wallee
3
- Version: 6.2.0
3
+ Version: 6.4.0
4
4
  Summary: Wallee Group AG API
5
5
  Home-page:
6
6
  Author: wallee
@@ -263,6 +263,11 @@ Web Api client: [*link*](https://app-wallee.com//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
@@ -768,6 +773,16 @@ Web Api client: [*link*](https://app-wallee.com//api/client)<br>
768
773
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/dunning-flows/search
769
774
  &nbsp;&nbsp;&nbsp;&nbsp;Search dunning flows
770
775
  <br><br>
776
+ - <strong>ExpressCheckoutService</strong><br>
777
+ &nbsp;&nbsp;* <code>patch_express_checkout_shipping_address_change</code>
778
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /express-checkout/shipping/address-change
779
+ &nbsp;&nbsp;&nbsp;&nbsp;Change shipping address
780
+ <br><br>
781
+ - <strong>ExpressCheckoutService</strong><br>
782
+ &nbsp;&nbsp;* <code>patch_express_checkout_shipping_method_change</code>
783
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>PATCH</strong> /express-checkout/shipping/method-change
784
+ &nbsp;&nbsp;&nbsp;&nbsp;Change shipping method
785
+ <br><br>
771
786
  - <strong>ExpressCheckoutService</strong><br>
772
787
  &nbsp;&nbsp;* <code>post_express_checkout_create_session</code>
773
788
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>POST</strong> /express-checkout/create-session
@@ -1148,6 +1163,26 @@ Web Api client: [*link*](https://app-wallee.com//api/client)<br>
1148
1163
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/sales-channels/search
1149
1164
  &nbsp;&nbsp;&nbsp;&nbsp;Search payment sales channels.
1150
1165
  <br><br>
1166
+ - <strong>PaymentTerminalTransactionSummariesService</strong><br>
1167
+ &nbsp;&nbsp;* <code>get_payment_terminals_transaction_summaries</code>
1168
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/terminals/transaction-summaries
1169
+ &nbsp;&nbsp;&nbsp;&nbsp;List all summaries
1170
+ <br><br>
1171
+ - <strong>PaymentTerminalTransactionSummariesService</strong><br>
1172
+ &nbsp;&nbsp;* <code>get_payment_terminals_transaction_summaries_id</code>
1173
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/terminals/transaction-summaries/{id}
1174
+ &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a summary
1175
+ <br><br>
1176
+ - <strong>PaymentTerminalTransactionSummariesService</strong><br>
1177
+ &nbsp;&nbsp;* <code>get_payment_terminals_transaction_summaries_id_receipt</code>
1178
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/terminals/transaction-summaries/{id}/receipt
1179
+ &nbsp;&nbsp;&nbsp;&nbsp;Retrieve a rendered summary receipt
1180
+ <br><br>
1181
+ - <strong>PaymentTerminalTransactionSummariesService</strong><br>
1182
+ &nbsp;&nbsp;* <code>get_payment_terminals_transaction_summaries_search</code>
1183
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>GET</strong> /payment/terminals/transaction-summaries/search
1184
+ &nbsp;&nbsp;&nbsp;&nbsp;Search summaries
1185
+ <br><br>
1151
1186
  - <strong>PaymentTerminalsService</strong><br>
1152
1187
  &nbsp;&nbsp;* <code>delete_payment_terminals_id</code>
1153
1188
  &nbsp;&nbsp;&nbsp;&nbsp;<strong>DELETE</strong> /payment/terminals/{id}
@@ -2677,6 +2712,8 @@ Additional Api models documentation: [*link*](https://app-wallee.com/en-us/doc/a
2677
2712
  * <strong>BillingCycleModel</strong>
2678
2713
  * <strong>BillingCycleType</strong>
2679
2714
  * <strong>BillingDayCustomization</strong>
2715
+ * <strong>BogusExpressCheckoutApprovalRequest</strong>
2716
+ * <strong>BogusExpressCheckoutPaymentData</strong>
2680
2717
  * <strong>CardAuthenticationResponse</strong>
2681
2718
  * <strong>CardAuthenticationVersion</strong>
2682
2719
  * <strong>CardCryptogram</strong>
@@ -2798,10 +2835,15 @@ Additional Api models documentation: [*link*](https://app-wallee.com/en-us/doc/a
2798
2835
  * <strong>DunningFlowSearchResponse</strong>
2799
2836
  * <strong>DunningFlowType</strong>
2800
2837
  * <strong>Environment</strong>
2838
+ * <strong>ExpressCheckoutApprovalResponse</strong>
2801
2839
  * <strong>ExpressCheckoutCreateResponse</strong>
2802
2840
  * <strong>ExpressCheckoutSession</strong>
2803
2841
  * <strong>ExpressCheckoutSessionCreate</strong>
2804
2842
  * <strong>ExpressCheckoutSessionState</strong>
2843
+ * <strong>ExpressCheckoutShippingAddressChangeRequest</strong>
2844
+ * <strong>ExpressCheckoutShippingAddressChangeResponse</strong>
2845
+ * <strong>ExpressCheckoutShippingMethodChangeRequest</strong>
2846
+ * <strong>ExpressCheckoutShippingMethodChangeResponse</strong>
2805
2847
  * <strong>ExpressCheckoutShippingOption</strong>
2806
2848
  * <strong>ExpressCheckoutWalletType</strong>
2807
2849
  * <strong>ExternalTransferBankTransaction</strong>
@@ -2936,6 +2978,7 @@ Additional Api models documentation: [*link*](https://app-wallee.com/en-us/doc/a
2936
2978
  * <strong>PaymentTerminalConfigurationVersion</strong>
2937
2979
  * <strong>PaymentTerminalConfigurationVersionState</strong>
2938
2980
  * <strong>PaymentTerminalCreate</strong>
2981
+ * <strong>PaymentTerminalDccTransactionSum</strong>
2939
2982
  * <strong>PaymentTerminalLocation</strong>
2940
2983
  * <strong>PaymentTerminalLocationState</strong>
2941
2984
  * <strong>PaymentTerminalLocationVersion</strong>
@@ -2943,6 +2986,8 @@ Additional Api models documentation: [*link*](https://app-wallee.com/en-us/doc/a
2943
2986
  * <strong>PaymentTerminalPreparing</strong>
2944
2987
  * <strong>PaymentTerminalReceiptType</strong>
2945
2988
  * <strong>PaymentTerminalState</strong>
2989
+ * <strong>PaymentTerminalTransactionSum</strong>
2990
+ * <strong>PaymentTerminalTransactionSummary</strong>
2946
2991
  * <strong>PaymentTerminalTransactionSummaryReference</strong>
2947
2992
  * <strong>PaymentTerminalType</strong>
2948
2993
  * <strong>PaymentTerminalUpdate</strong>
@@ -3002,6 +3047,7 @@ Additional Api models documentation: [*link*](https://app-wallee.com/en-us/doc/a
3002
3047
  * <strong>RenderedDocument</strong>
3003
3048
  * <strong>RenderedTerminalReceipt</strong>
3004
3049
  * <strong>RenderedTerminalReceiptListResponse</strong>
3050
+ * <strong>RenderedTerminalTransactionSummary</strong>
3005
3051
  * <strong>RestAddressFormat</strong>
3006
3052
  * <strong>RestAddressFormatField</strong>
3007
3053
  * <strong>RestApiBulkOperationResult</strong>
@@ -3127,6 +3173,8 @@ Additional Api models documentation: [*link*](https://app-wallee.com/en-us/doc/a
3127
3173
  * <strong>TerminalListResponse</strong>
3128
3174
  * <strong>TerminalReceiptFormat</strong>
3129
3175
  * <strong>TerminalSearchResponse</strong>
3176
+ * <strong>TerminalTransactionSummaryListResponse</strong>
3177
+ * <strong>TerminalTransactionSummarySearchResponse</strong>
3130
3178
  * <strong>Token</strong>
3131
3179
  * <strong>TokenCreate</strong>
3132
3180
  * <strong>TokenListResponse</strong>
@@ -3207,44 +3255,20 @@ When working with webhooks, the `WalleeSdkException` may throw error codes to he
3207
3255
 
3208
3256
  ### Error Code Categories
3209
3257
 
3210
- | **Range** | **Category** | **Description** |
3211
- |-----------|--------------|-----------------|
3212
- | **404** | Not Found | Indicates that the requested resource could not be found or the endpoint returned an empty response |
3213
- | **1000–1999** | Client-Side Errors | Errors typically caused by invalid input |
3214
- | **2000–2999** | Server-Side Errors | Errors typically caused by incorrect data provided by the server |
3215
-
3216
- ### Error Code Reference
3217
-
3218
- | **Code** | **Error Name** | **Description** | **Category** |
3219
- |----------|----------------|-----------------|--------------|
3220
- | 404 | `UNKNOWN_WEBHOOK_ENCRYPTION_PUBLIC_KEY` | Unknown webhook signature public key | Not Found |
3221
- | 1000 | `WEBHOOK_ENCRYPTION_GENERAL_ERROR` | General webhook encryption error | Client-Side |
3222
- | 1001 | `INVALID_WEBHOOK_ENCRYPTION_PUBLIC_KEY` | Invalid webhook signature public key | Client-Side |
3223
- | 1002 | `INVALID_WEBHOOK_ENCRYPTION_HEADER_FORMAT` | Invalid webhook signature header | Client-Side |
3224
- | 1003 | `UNSUPPORTED_WEBHOOK_ENCRYPTION_ALGORYTHM` | Unsupported webhook signature algorithm | Client-Side |
3225
- | 1004 | `UNKNOWN_WEBHOOK_ENCRYPTION_PROVIDER` | Unknown webhook encryption provider | Client-Side |
3226
- | 1005 | `WEBHOOK_ENCRYPTION_VERIFIER_INIT_ERROR` | Encryption verifier initialization error | Client-Side |
3227
- | 1006 | `WEBHOOK_ENCRYPTION_VERIFIER_CONTENT_UPDATE_ERROR` | Error during content update in encryption verifier | Client-Side |
3228
- | 1007 | `WEBHOOK_ENCRYPTION_SIGNATURE_VERIFICATION_FAILED` | Encryption signature verification failed | Client-Side |
3229
- | 1008 | `INVALID_WEBHOOK_ENCRYPTION_CONTENT_SIGNATURE` | Invalid webhook content signature | Client-Side |
3230
- | 2000 | `MISSING_WEBHOOK_ENCRYPTION_ALGORYTHM` | Missing webhook signature algorithm value | Server-Side |
3258
+ | **Exception** | **Description** |
3259
+ |----------------------------|---------------------------------------------------------------------------------------|
3260
+ | **ApiExceptionErrorCodes** | Lists the possible HTTP error codes an `ApiException` can generate |
3261
+ | **SdkExceptionErrorCodes** | Lists the possible error codes a `WalleeSdkException` can generate |
3231
3262
 
3232
3263
  ### Usage Example
3233
3264
  ```python
3234
- from wallee.wallee_sdk_exception import WalleeSdkException
3235
-
3236
3265
  try:
3237
- # Webhook SDK operation
3238
- except WalleeSdkException as e:
3239
- if e.code == 1001: # INVALID_WEBHOOK_ENCRYPTION_PUBLIC_KEY
3240
- # Handle invalid public key
3241
- pass
3242
- elif e.code == 1007: # WEBHOOK_ENCRYPTION_SIGNATURE_VERIFICATION_FAILED
3243
- # Handle signature verification failure
3244
- pass
3266
+ # SDK operation
3267
+ except ApiException as ex:
3268
+ if ApiExceptionErrorCodes.CONFLICT.matches(ex):
3269
+ # Handle Conflict
3245
3270
  else:
3246
- # Handle other errors
3247
- pass
3271
+ # Other handling
3248
3272
  ```
3249
3273
 
3250
3274
  ## Author
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "wallee"
3
- version = "6.2.0"
3
+ version = "6.4.0"
4
4
  description = "SDK that allows you to access Wallee Group AG API"
5
5
  authors = ["Wallee AG"]
6
6
  license = "Apache-2.0"
@@ -32,7 +32,7 @@ from setuptools import setup, find_packages # noqa: H301
32
32
  # prerequisite: setuptools
33
33
  # http://pypi.python.org/pypi/setuptools
34
34
  NAME = "wallee"
35
- VERSION = "6.2.0"
35
+ VERSION = "6.4.0"
36
36
  PYTHON_REQUIRES = ">=3.9"
37
37
  REQUIRES = [
38
38
  "pydantic >= 2.10.4",
@@ -338,3 +338,12 @@ class TestQuerying(unittest.TestCase):
338
338
  response.payment_connector_configuration.processor_configuration.linked_space_id,
339
339
  "Items in nested response should be present"
340
340
  )
341
+
342
+ def test_search_with_quote_sign_should_return_correct_amount_of_items(self):
343
+ """
344
+ Querying with single quote sign.
345
+ """
346
+ response = self.transactions_service.get_payment_transactions_search(SPACE_ID, [], 1, 0, "", "completedOn:<'2026-01-15'")
347
+
348
+ self.assertIsNotNone(response.data, "Response should not be None")
349
+ self.assertNotEqual(0, len(response.data), "Response list should not be empty")
@@ -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 wallee.service.accounts_service import AccountsService
@@ -34,6 +34,7 @@ from wallee.service.application_users_service import ApplicationUsersService
34
34
  from wallee.service.application_users_roles_service import ApplicationUsersRolesService
35
35
  from wallee.service.bank_accounts_service import BankAccountsService
36
36
  from wallee.service.bank_transactions_service import BankTransactionsService
37
+ from wallee.service.bogus_express_checkout_service import BogusExpressCheckoutService
37
38
  from wallee.service.charge_attempts_service import ChargeAttemptsService
38
39
  from wallee.service.charge_bank_transactions_service import ChargeBankTransactionsService
39
40
  from wallee.service.charge_flow_levels_service import ChargeFlowLevelsService
@@ -74,6 +75,7 @@ from wallee.service.payment_methods_service import PaymentMethodsService
74
75
  from wallee.service.payment_processor_configurations_service import PaymentProcessorConfigurationsService
75
76
  from wallee.service.payment_processors_service import PaymentProcessorsService
76
77
  from wallee.service.payment_sales_channels_service import PaymentSalesChannelsService
78
+ from wallee.service.payment_terminal_transaction_summaries_service import PaymentTerminalTransactionSummariesService
77
79
  from wallee.service.payment_terminals_service import PaymentTerminalsService
78
80
  from wallee.service.payment_web_apps_service import PaymentWebAppsService
79
81
  from wallee.service.permissions_service import PermissionsService
@@ -131,6 +133,8 @@ from wallee.exceptions import ApiValueError
131
133
  from wallee.exceptions import ApiKeyError
132
134
  from wallee.exceptions import ApiAttributeError
133
135
  from wallee.exceptions import ApiException
136
+ from wallee.api_exception_error_codes import ApiExceptionErrorCodes
137
+ from wallee.sdk_exception_error_codes import SdkExceptionErrorCodes
134
138
  from wallee.wallee_sdk_exception import WalleeSdkException
135
139
 
136
140
  # import utils into sdk package
@@ -201,6 +205,8 @@ from wallee.models.bank_transaction_type import BankTransactionType
201
205
  from wallee.models.billing_cycle_model import BillingCycleModel
202
206
  from wallee.models.billing_cycle_type import BillingCycleType
203
207
  from wallee.models.billing_day_customization import BillingDayCustomization
208
+ from wallee.models.bogus_express_checkout_approval_request import BogusExpressCheckoutApprovalRequest
209
+ from wallee.models.bogus_express_checkout_payment_data import BogusExpressCheckoutPaymentData
204
210
  from wallee.models.card_authentication_response import CardAuthenticationResponse
205
211
  from wallee.models.card_authentication_version import CardAuthenticationVersion
206
212
  from wallee.models.card_cryptogram import CardCryptogram
@@ -322,10 +328,15 @@ from wallee.models.dunning_flow_list_response import DunningFlowListResponse
322
328
  from wallee.models.dunning_flow_search_response import DunningFlowSearchResponse
323
329
  from wallee.models.dunning_flow_type import DunningFlowType
324
330
  from wallee.models.environment import Environment
331
+ from wallee.models.express_checkout_approval_response import ExpressCheckoutApprovalResponse
325
332
  from wallee.models.express_checkout_create_response import ExpressCheckoutCreateResponse
326
333
  from wallee.models.express_checkout_session import ExpressCheckoutSession
327
334
  from wallee.models.express_checkout_session_create import ExpressCheckoutSessionCreate
328
335
  from wallee.models.express_checkout_session_state import ExpressCheckoutSessionState
336
+ from wallee.models.express_checkout_shipping_address_change_request import ExpressCheckoutShippingAddressChangeRequest
337
+ from wallee.models.express_checkout_shipping_address_change_response import ExpressCheckoutShippingAddressChangeResponse
338
+ from wallee.models.express_checkout_shipping_method_change_request import ExpressCheckoutShippingMethodChangeRequest
339
+ from wallee.models.express_checkout_shipping_method_change_response import ExpressCheckoutShippingMethodChangeResponse
329
340
  from wallee.models.express_checkout_shipping_option import ExpressCheckoutShippingOption
330
341
  from wallee.models.express_checkout_wallet_type import ExpressCheckoutWalletType
331
342
  from wallee.models.external_transfer_bank_transaction import ExternalTransferBankTransaction
@@ -460,6 +471,7 @@ from wallee.models.payment_terminal_configuration_state import PaymentTerminalCo
460
471
  from wallee.models.payment_terminal_configuration_version import PaymentTerminalConfigurationVersion
461
472
  from wallee.models.payment_terminal_configuration_version_state import PaymentTerminalConfigurationVersionState
462
473
  from wallee.models.payment_terminal_create import PaymentTerminalCreate
474
+ from wallee.models.payment_terminal_dcc_transaction_sum import PaymentTerminalDccTransactionSum
463
475
  from wallee.models.payment_terminal_location import PaymentTerminalLocation
464
476
  from wallee.models.payment_terminal_location_state import PaymentTerminalLocationState
465
477
  from wallee.models.payment_terminal_location_version import PaymentTerminalLocationVersion
@@ -467,6 +479,8 @@ from wallee.models.payment_terminal_location_version_state import PaymentTermina
467
479
  from wallee.models.payment_terminal_preparing import PaymentTerminalPreparing
468
480
  from wallee.models.payment_terminal_receipt_type import PaymentTerminalReceiptType
469
481
  from wallee.models.payment_terminal_state import PaymentTerminalState
482
+ from wallee.models.payment_terminal_transaction_sum import PaymentTerminalTransactionSum
483
+ from wallee.models.payment_terminal_transaction_summary import PaymentTerminalTransactionSummary
470
484
  from wallee.models.payment_terminal_transaction_summary_reference import PaymentTerminalTransactionSummaryReference
471
485
  from wallee.models.payment_terminal_type import PaymentTerminalType
472
486
  from wallee.models.payment_terminal_update import PaymentTerminalUpdate
@@ -526,6 +540,7 @@ from wallee.models.refund_type import RefundType
526
540
  from wallee.models.rendered_document import RenderedDocument
527
541
  from wallee.models.rendered_terminal_receipt import RenderedTerminalReceipt
528
542
  from wallee.models.rendered_terminal_receipt_list_response import RenderedTerminalReceiptListResponse
543
+ from wallee.models.rendered_terminal_transaction_summary import RenderedTerminalTransactionSummary
529
544
  from wallee.models.rest_address_format import RestAddressFormat
530
545
  from wallee.models.rest_address_format_field import RestAddressFormatField
531
546
  from wallee.models.rest_api_bulk_operation_result import RestApiBulkOperationResult
@@ -651,6 +666,8 @@ from wallee.models.tenant_database import TenantDatabase
651
666
  from wallee.models.terminal_list_response import TerminalListResponse
652
667
  from wallee.models.terminal_receipt_format import TerminalReceiptFormat
653
668
  from wallee.models.terminal_search_response import TerminalSearchResponse
669
+ from wallee.models.terminal_transaction_summary_list_response import TerminalTransactionSummaryListResponse
670
+ from wallee.models.terminal_transaction_summary_search_response import TerminalTransactionSummarySearchResponse
654
671
  from wallee.models.token import Token
655
672
  from wallee.models.token_create import TokenCreate
656
673
  from wallee.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': 'wallee',
187
187
  'x-meta-sdk-language-version': platform.python_version()
@@ -0,0 +1,69 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wallee AG Python SDK
5
+
6
+ This library allows to interact with the Wallee AG payment service.
7
+
8
+ Copyright owner: Wallee AG
9
+ Website: https://en.wallee.com
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://app-wallee.com/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]:
@@ -89,6 +89,8 @@ from wallee.models.bank_transaction_type import BankTransactionType
89
89
  from wallee.models.billing_cycle_model import BillingCycleModel
90
90
  from wallee.models.billing_cycle_type import BillingCycleType
91
91
  from wallee.models.billing_day_customization import BillingDayCustomization
92
+ from wallee.models.bogus_express_checkout_approval_request import BogusExpressCheckoutApprovalRequest
93
+ from wallee.models.bogus_express_checkout_payment_data import BogusExpressCheckoutPaymentData
92
94
  from wallee.models.card_authentication_response import CardAuthenticationResponse
93
95
  from wallee.models.card_authentication_version import CardAuthenticationVersion
94
96
  from wallee.models.card_cryptogram import CardCryptogram
@@ -210,10 +212,15 @@ from wallee.models.dunning_flow_list_response import DunningFlowListResponse
210
212
  from wallee.models.dunning_flow_search_response import DunningFlowSearchResponse
211
213
  from wallee.models.dunning_flow_type import DunningFlowType
212
214
  from wallee.models.environment import Environment
215
+ from wallee.models.express_checkout_approval_response import ExpressCheckoutApprovalResponse
213
216
  from wallee.models.express_checkout_create_response import ExpressCheckoutCreateResponse
214
217
  from wallee.models.express_checkout_session import ExpressCheckoutSession
215
218
  from wallee.models.express_checkout_session_create import ExpressCheckoutSessionCreate
216
219
  from wallee.models.express_checkout_session_state import ExpressCheckoutSessionState
220
+ from wallee.models.express_checkout_shipping_address_change_request import ExpressCheckoutShippingAddressChangeRequest
221
+ from wallee.models.express_checkout_shipping_address_change_response import ExpressCheckoutShippingAddressChangeResponse
222
+ from wallee.models.express_checkout_shipping_method_change_request import ExpressCheckoutShippingMethodChangeRequest
223
+ from wallee.models.express_checkout_shipping_method_change_response import ExpressCheckoutShippingMethodChangeResponse
217
224
  from wallee.models.express_checkout_shipping_option import ExpressCheckoutShippingOption
218
225
  from wallee.models.express_checkout_wallet_type import ExpressCheckoutWalletType
219
226
  from wallee.models.external_transfer_bank_transaction import ExternalTransferBankTransaction
@@ -348,6 +355,7 @@ from wallee.models.payment_terminal_configuration_state import PaymentTerminalCo
348
355
  from wallee.models.payment_terminal_configuration_version import PaymentTerminalConfigurationVersion
349
356
  from wallee.models.payment_terminal_configuration_version_state import PaymentTerminalConfigurationVersionState
350
357
  from wallee.models.payment_terminal_create import PaymentTerminalCreate
358
+ from wallee.models.payment_terminal_dcc_transaction_sum import PaymentTerminalDccTransactionSum
351
359
  from wallee.models.payment_terminal_location import PaymentTerminalLocation
352
360
  from wallee.models.payment_terminal_location_state import PaymentTerminalLocationState
353
361
  from wallee.models.payment_terminal_location_version import PaymentTerminalLocationVersion
@@ -355,6 +363,8 @@ from wallee.models.payment_terminal_location_version_state import PaymentTermina
355
363
  from wallee.models.payment_terminal_preparing import PaymentTerminalPreparing
356
364
  from wallee.models.payment_terminal_receipt_type import PaymentTerminalReceiptType
357
365
  from wallee.models.payment_terminal_state import PaymentTerminalState
366
+ from wallee.models.payment_terminal_transaction_sum import PaymentTerminalTransactionSum
367
+ from wallee.models.payment_terminal_transaction_summary import PaymentTerminalTransactionSummary
358
368
  from wallee.models.payment_terminal_transaction_summary_reference import PaymentTerminalTransactionSummaryReference
359
369
  from wallee.models.payment_terminal_type import PaymentTerminalType
360
370
  from wallee.models.payment_terminal_update import PaymentTerminalUpdate
@@ -414,6 +424,7 @@ from wallee.models.refund_type import RefundType
414
424
  from wallee.models.rendered_document import RenderedDocument
415
425
  from wallee.models.rendered_terminal_receipt import RenderedTerminalReceipt
416
426
  from wallee.models.rendered_terminal_receipt_list_response import RenderedTerminalReceiptListResponse
427
+ from wallee.models.rendered_terminal_transaction_summary import RenderedTerminalTransactionSummary
417
428
  from wallee.models.rest_address_format import RestAddressFormat
418
429
  from wallee.models.rest_address_format_field import RestAddressFormatField
419
430
  from wallee.models.rest_api_bulk_operation_result import RestApiBulkOperationResult
@@ -539,6 +550,8 @@ from wallee.models.tenant_database import TenantDatabase
539
550
  from wallee.models.terminal_list_response import TerminalListResponse
540
551
  from wallee.models.terminal_receipt_format import TerminalReceiptFormat
541
552
  from wallee.models.terminal_search_response import TerminalSearchResponse
553
+ from wallee.models.terminal_transaction_summary_list_response import TerminalTransactionSummaryListResponse
554
+ from wallee.models.terminal_transaction_summary_search_response import TerminalTransactionSummarySearchResponse
542
555
  from wallee.models.token import Token
543
556
  from wallee.models.token_create import TokenCreate
544
557
  from wallee.models.token_list_response import TokenListResponse
@@ -0,0 +1,102 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wallee AG Python SDK
5
+
6
+ This library allows to interact with the Wallee AG payment service.
7
+
8
+ Copyright owner: Wallee AG
9
+ Website: https://en.wallee.com
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 wallee.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
+ Wallee AG Python SDK
5
+
6
+ This library allows to interact with the Wallee AG payment service.
7
+
8
+ Copyright owner: Wallee AG
9
+ Website: https://en.wallee.com
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
+