postfinancecheckout 5.1.0__tar.gz → 6.0.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 (1070) hide show
  1. postfinancecheckout-6.0.0/PKG-INFO +44 -0
  2. postfinancecheckout-6.0.0/README.md +3032 -0
  3. postfinancecheckout-6.0.0/postfinancecheckout/__init__.py +665 -0
  4. postfinancecheckout-6.0.0/postfinancecheckout/api_client.py +763 -0
  5. postfinancecheckout-6.0.0/postfinancecheckout/api_response.py +44 -0
  6. postfinancecheckout-6.0.0/postfinancecheckout/configuration.py +401 -0
  7. postfinancecheckout-6.0.0/postfinancecheckout/error_code.py +67 -0
  8. postfinancecheckout-6.0.0/postfinancecheckout/exceptions.py +211 -0
  9. postfinancecheckout-6.0.0/postfinancecheckout/models/__init__.py +564 -0
  10. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_account_update.py +101 -0
  11. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_application_user_update.py +104 -0
  12. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_customer_active.py +121 -0
  13. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_customer_address_active.py +105 -0
  14. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_customer_comment_active.py +99 -0
  15. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_human_user_update.py +114 -0
  16. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_connector_configuration_update.py +123 -0
  17. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_link_update.py +139 -0
  18. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_method_configuration_update.py +110 -0
  19. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_processor_configuration_active.py +102 -0
  20. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_terminal_update.py +99 -0
  21. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_refund_comment_active.py +99 -0
  22. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_role_update.py +110 -0
  23. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_single_sign_on_user_update.py +108 -0
  24. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_space_update.py +116 -0
  25. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_subscriber_update.py +132 -0
  26. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_subscription_affiliate_update.py +106 -0
  27. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_subscription_metric_update.py +100 -0
  28. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_subscription_product_active.py +110 -0
  29. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_token_update.py +119 -0
  30. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_transaction_comment_active.py +99 -0
  31. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_transaction_invoice_comment_active.py +99 -0
  32. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_transaction_pending.py +172 -0
  33. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_webhook_listener_update.py +106 -0
  34. postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_webhook_url_update.py +104 -0
  35. postfinancecheckout-6.0.0/postfinancecheckout/models/account.py +165 -0
  36. postfinancecheckout-6.0.0/postfinancecheckout/models/account_create.py +105 -0
  37. postfinancecheckout-6.0.0/postfinancecheckout/models/account_list_response.py +116 -0
  38. postfinancecheckout-6.0.0/postfinancecheckout/models/account_search_response.py +120 -0
  39. postfinancecheckout-6.0.0/postfinancecheckout/models/account_state.py +52 -0
  40. postfinancecheckout-6.0.0/postfinancecheckout/models/account_type.py +49 -0
  41. postfinancecheckout-6.0.0/postfinancecheckout/models/account_update.py +103 -0
  42. postfinancecheckout-6.0.0/postfinancecheckout/models/address.py +179 -0
  43. postfinancecheckout-6.0.0/postfinancecheckout/models/address_create.py +139 -0
  44. postfinancecheckout-6.0.0/postfinancecheckout/models/analytics_query_execution_request.py +103 -0
  45. postfinancecheckout-6.0.0/postfinancecheckout/models/analytics_query_execution_response.py +100 -0
  46. postfinancecheckout-6.0.0/postfinancecheckout/models/application_key_state.py +49 -0
  47. postfinancecheckout-6.0.0/postfinancecheckout/models/application_user.py +132 -0
  48. postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_create.py +106 -0
  49. postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_create_with_mac_key.py +136 -0
  50. postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_list_response.py +116 -0
  51. postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_search_response.py +120 -0
  52. postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_update.py +106 -0
  53. postfinancecheckout-6.0.0/postfinancecheckout/models/authenticated_card_data.py +119 -0
  54. postfinancecheckout-6.0.0/postfinancecheckout/models/authenticated_card_data_create.py +154 -0
  55. postfinancecheckout-6.0.0/postfinancecheckout/models/authenticated_card_request.py +104 -0
  56. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account.py +129 -0
  57. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_environment.py +48 -0
  58. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_list_response.py +116 -0
  59. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_search_response.py +120 -0
  60. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_state.py +50 -0
  61. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_type.py +112 -0
  62. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction.py +192 -0
  63. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_flow_direction.py +48 -0
  64. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_list_response.py +116 -0
  65. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_search_response.py +120 -0
  66. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_source.py +108 -0
  67. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_state.py +48 -0
  68. postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_type.py +108 -0
  69. postfinancecheckout-6.0.0/postfinancecheckout/models/billing_cycle_model.py +113 -0
  70. postfinancecheckout-6.0.0/postfinancecheckout/models/billing_cycle_type.py +50 -0
  71. postfinancecheckout-6.0.0/postfinancecheckout/models/billing_day_customization.py +48 -0
  72. postfinancecheckout-6.0.0/postfinancecheckout/models/card_authentication_response.py +51 -0
  73. postfinancecheckout-6.0.0/postfinancecheckout/models/card_authentication_version.py +48 -0
  74. postfinancecheckout-6.0.0/postfinancecheckout/models/card_cryptogram.py +104 -0
  75. postfinancecheckout-6.0.0/postfinancecheckout/models/card_cryptogram_create.py +100 -0
  76. postfinancecheckout-6.0.0/postfinancecheckout/models/cardholder_authentication.py +114 -0
  77. postfinancecheckout-6.0.0/postfinancecheckout/models/cardholder_authentication_create.py +108 -0
  78. postfinancecheckout-6.0.0/postfinancecheckout/models/charge.py +155 -0
  79. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt.py +232 -0
  80. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt_environment.py +48 -0
  81. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt_list_response.py +116 -0
  82. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt_search_response.py +120 -0
  83. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt_state.py +49 -0
  84. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_bank_transaction.py +146 -0
  85. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_bank_transaction_list_response.py +116 -0
  86. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_bank_transaction_search_response.py +120 -0
  87. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow.py +136 -0
  88. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level.py +156 -0
  89. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_configuration.py +139 -0
  90. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_configuration_type.py +112 -0
  91. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_list_response.py +116 -0
  92. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_payment_link.py +114 -0
  93. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_payment_link_list_response.py +116 -0
  94. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_payment_link_search_response.py +120 -0
  95. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_search_response.py +120 -0
  96. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_state.py +49 -0
  97. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_list_response.py +116 -0
  98. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_search_response.py +120 -0
  99. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_state.py +49 -0
  100. postfinancecheckout-6.0.0/postfinancecheckout/models/charge_type.py +50 -0
  101. postfinancecheckout-6.0.0/postfinancecheckout/models/client_platform_information_list_response.py +116 -0
  102. postfinancecheckout-6.0.0/postfinancecheckout/models/client_platform_information_search_response.py +120 -0
  103. postfinancecheckout-6.0.0/postfinancecheckout/models/completion_line_item.py +109 -0
  104. postfinancecheckout-6.0.0/postfinancecheckout/models/completion_line_item_create.py +103 -0
  105. postfinancecheckout-6.0.0/postfinancecheckout/models/completion_list_response.py +116 -0
  106. postfinancecheckout-6.0.0/postfinancecheckout/models/completion_search_response.py +120 -0
  107. postfinancecheckout-6.0.0/postfinancecheckout/models/condition.py +127 -0
  108. postfinancecheckout-6.0.0/postfinancecheckout/models/condition_type.py +108 -0
  109. postfinancecheckout-6.0.0/postfinancecheckout/models/condition_type_list_response.py +116 -0
  110. postfinancecheckout-6.0.0/postfinancecheckout/models/condition_type_search_response.py +120 -0
  111. postfinancecheckout-6.0.0/postfinancecheckout/models/connector_invocation.py +128 -0
  112. postfinancecheckout-6.0.0/postfinancecheckout/models/connector_invocation_stage.py +50 -0
  113. postfinancecheckout-6.0.0/postfinancecheckout/models/country_list_response.py +116 -0
  114. postfinancecheckout-6.0.0/postfinancecheckout/models/country_search_response.py +120 -0
  115. postfinancecheckout-6.0.0/postfinancecheckout/models/creation_entity_state.py +51 -0
  116. postfinancecheckout-6.0.0/postfinancecheckout/models/currency_bank_account.py +121 -0
  117. postfinancecheckout-6.0.0/postfinancecheckout/models/currency_bank_account_list_response.py +116 -0
  118. postfinancecheckout-6.0.0/postfinancecheckout/models/currency_bank_account_search_response.py +120 -0
  119. postfinancecheckout-6.0.0/postfinancecheckout/models/currency_list_response.py +116 -0
  120. postfinancecheckout-6.0.0/postfinancecheckout/models/currency_search_response.py +120 -0
  121. postfinancecheckout-6.0.0/postfinancecheckout/models/customer.py +152 -0
  122. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_active.py +123 -0
  123. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address.py +132 -0
  124. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_active.py +107 -0
  125. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_create.py +107 -0
  126. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_list_response.py +116 -0
  127. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_search_response.py +120 -0
  128. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_type.py +49 -0
  129. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment.py +140 -0
  130. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment_active.py +101 -0
  131. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment_create.py +101 -0
  132. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment_list_response.py +116 -0
  133. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment_search_response.py +120 -0
  134. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_create.py +121 -0
  135. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_email_address_list_response.py +116 -0
  136. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_list_response.py +116 -0
  137. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_postal_address.py +179 -0
  138. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_postal_address_create.py +139 -0
  139. postfinancecheckout-6.0.0/postfinancecheckout/models/customer_search_response.py +120 -0
  140. postfinancecheckout-6.0.0/postfinancecheckout/models/customers_presence.py +49 -0
  141. postfinancecheckout-6.0.0/postfinancecheckout/models/data_collection_type.py +48 -0
  142. postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication.py +158 -0
  143. postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication_decision_reason.py +108 -0
  144. postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication_list_response.py +116 -0
  145. postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication_search_response.py +120 -0
  146. postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication_state.py +50 -0
  147. postfinancecheckout-6.0.0/postfinancecheckout/models/displayable_day_of_week.py +53 -0
  148. postfinancecheckout-6.0.0/postfinancecheckout/models/displayable_month.py +58 -0
  149. postfinancecheckout-6.0.0/postfinancecheckout/models/document_template.py +143 -0
  150. postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_list_response.py +116 -0
  151. postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_search_response.py +120 -0
  152. postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_type.py +120 -0
  153. postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_type_group.py +104 -0
  154. postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_type_list_response.py +116 -0
  155. postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_type_search_response.py +120 -0
  156. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_case.py +152 -0
  157. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_case_list_response.py +116 -0
  158. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_case_search_response.py +120 -0
  159. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_case_state.py +52 -0
  160. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_condition.py +125 -0
  161. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_condition_type.py +108 -0
  162. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow.py +134 -0
  163. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_level.py +153 -0
  164. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_level_list_response.py +116 -0
  165. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_level_processor.py +114 -0
  166. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_level_search_response.py +120 -0
  167. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_list_response.py +116 -0
  168. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_search_response.py +120 -0
  169. postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_type.py +112 -0
  170. postfinancecheckout-6.0.0/postfinancecheckout/models/environment.py +48 -0
  171. postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_create_response.py +100 -0
  172. postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_session.py +141 -0
  173. postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_session_create.py +116 -0
  174. postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_session_state.py +51 -0
  175. postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_shipping_option.py +124 -0
  176. postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_wallet_type.py +108 -0
  177. postfinancecheckout-6.0.0/postfinancecheckout/models/external_transfer_bank_transaction.py +126 -0
  178. postfinancecheckout-6.0.0/postfinancecheckout/models/external_transfer_bank_transaction_list_response.py +116 -0
  179. postfinancecheckout-6.0.0/postfinancecheckout/models/external_transfer_bank_transaction_search_response.py +120 -0
  180. postfinancecheckout-6.0.0/postfinancecheckout/models/facade_user_friendly_query_status_model.py +50 -0
  181. postfinancecheckout-6.0.0/postfinancecheckout/models/failure_category.py +51 -0
  182. postfinancecheckout-6.0.0/postfinancecheckout/models/failure_reason.py +111 -0
  183. postfinancecheckout-6.0.0/postfinancecheckout/models/feature.py +134 -0
  184. postfinancecheckout-6.0.0/postfinancecheckout/models/feature_category.py +112 -0
  185. postfinancecheckout-6.0.0/postfinancecheckout/models/gender.py +48 -0
  186. postfinancecheckout-6.0.0/postfinancecheckout/models/human_user.py +147 -0
  187. postfinancecheckout-6.0.0/postfinancecheckout/models/human_user_create.py +116 -0
  188. postfinancecheckout-6.0.0/postfinancecheckout/models/human_user_list_response.py +116 -0
  189. postfinancecheckout-6.0.0/postfinancecheckout/models/human_user_search_response.py +120 -0
  190. postfinancecheckout-6.0.0/postfinancecheckout/models/human_user_update.py +116 -0
  191. postfinancecheckout-6.0.0/postfinancecheckout/models/internal_transfer_bank_transaction.py +119 -0
  192. postfinancecheckout-6.0.0/postfinancecheckout/models/internal_transfer_bank_transaction_list_response.py +116 -0
  193. postfinancecheckout-6.0.0/postfinancecheckout/models/internal_transfer_bank_transaction_search_response.py +120 -0
  194. postfinancecheckout-6.0.0/postfinancecheckout/models/invoice_comment_list_response.py +116 -0
  195. postfinancecheckout-6.0.0/postfinancecheckout/models/invoice_comment_search_response.py +120 -0
  196. postfinancecheckout-6.0.0/postfinancecheckout/models/invoice_list_response.py +116 -0
  197. postfinancecheckout-6.0.0/postfinancecheckout/models/invoice_search_response.py +120 -0
  198. postfinancecheckout-6.0.0/postfinancecheckout/models/label.py +115 -0
  199. postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor.py +137 -0
  200. postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_category.py +48 -0
  201. postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_group.py +112 -0
  202. postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_group_list_response.py +116 -0
  203. postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_group_search_response.py +120 -0
  204. postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_list_response.py +116 -0
  205. postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_search_response.py +120 -0
  206. postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_type.py +108 -0
  207. postfinancecheckout-6.0.0/postfinancecheckout/models/language_list_response.py +116 -0
  208. postfinancecheckout-6.0.0/postfinancecheckout/models/language_search_response.py +120 -0
  209. postfinancecheckout-6.0.0/postfinancecheckout/models/legal_organization_form.py +131 -0
  210. postfinancecheckout-6.0.0/postfinancecheckout/models/legal_organization_form_list_response.py +116 -0
  211. postfinancecheckout-6.0.0/postfinancecheckout/models/legal_organization_form_search_response.py +120 -0
  212. postfinancecheckout-6.0.0/postfinancecheckout/models/line_item.py +201 -0
  213. postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_attribute.py +105 -0
  214. postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_attribute_create.py +101 -0
  215. postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_create.py +139 -0
  216. postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_reduction.py +109 -0
  217. postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_reduction_create.py +103 -0
  218. postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_type.py +51 -0
  219. postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_version_list_response.py +116 -0
  220. postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_version_search_response.py +120 -0
  221. postfinancecheckout-6.0.0/postfinancecheckout/models/localized_string.py +104 -0
  222. postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task.py +140 -0
  223. postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_action.py +111 -0
  224. postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_action_style.py +49 -0
  225. postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_list_response.py +116 -0
  226. postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_search_response.py +120 -0
  227. postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_state.py +49 -0
  228. postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_type.py +120 -0
  229. postfinancecheckout-6.0.0/postfinancecheckout/models/metric_list_response.py +116 -0
  230. postfinancecheckout-6.0.0/postfinancecheckout/models/metric_search_response.py +120 -0
  231. postfinancecheckout-6.0.0/postfinancecheckout/models/metric_usage_report_list_response.py +116 -0
  232. postfinancecheckout-6.0.0/postfinancecheckout/models/metric_usage_report_search_response.py +120 -0
  233. postfinancecheckout-6.0.0/postfinancecheckout/models/one_click_payment_mode.py +49 -0
  234. postfinancecheckout-6.0.0/postfinancecheckout/models/pan_type.py +54 -0
  235. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_adjustment.py +123 -0
  236. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_adjustment_type.py +108 -0
  237. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector.py +161 -0
  238. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration.py +179 -0
  239. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration_create.py +132 -0
  240. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration_list_response.py +116 -0
  241. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration_search_response.py +120 -0
  242. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration_update.py +125 -0
  243. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_feature.py +104 -0
  244. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_list_response.py +116 -0
  245. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_search_response.py +120 -0
  246. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_contract.py +160 -0
  247. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_contract_state.py +51 -0
  248. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_contract_type.py +108 -0
  249. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_information_hash.py +110 -0
  250. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_information_hash_type.py +104 -0
  251. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link.py +189 -0
  252. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_active.py +144 -0
  253. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_address_handling_mode.py +49 -0
  254. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_create.py +147 -0
  255. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_list_response.py +116 -0
  256. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_protection_mode.py +48 -0
  257. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_search_response.py +120 -0
  258. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_update.py +141 -0
  259. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method.py +125 -0
  260. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_brand.py +120 -0
  261. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_brand_list_response.py +116 -0
  262. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_brand_search_response.py +120 -0
  263. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration.py +165 -0
  264. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_active.py +115 -0
  265. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_create.py +118 -0
  266. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_list_response.py +116 -0
  267. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_search_response.py +120 -0
  268. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_update.py +112 -0
  269. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_list_response.py +116 -0
  270. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_search_response.py +120 -0
  271. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_primary_risk_taker.py +49 -0
  272. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor.py +124 -0
  273. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration.py +135 -0
  274. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration_active.py +104 -0
  275. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration_create.py +104 -0
  276. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration_list_response.py +116 -0
  277. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration_search_response.py +120 -0
  278. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_list_response.py +116 -0
  279. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_search_response.py +120 -0
  280. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal.py +159 -0
  281. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_address.py +153 -0
  282. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_configuration.py +127 -0
  283. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_configuration_state.py +50 -0
  284. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_configuration_version.py +154 -0
  285. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_configuration_version_state.py +51 -0
  286. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_create.py +109 -0
  287. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_location.py +125 -0
  288. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_location_state.py +50 -0
  289. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_location_version.py +145 -0
  290. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_location_version_state.py +51 -0
  291. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_preparing.py +103 -0
  292. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_receipt_type.py +108 -0
  293. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_state.py +52 -0
  294. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_transaction_summary_reference.py +112 -0
  295. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_type.py +108 -0
  296. postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_update.py +101 -0
  297. postfinancecheckout-6.0.0/postfinancecheckout/models/permission.py +142 -0
  298. postfinancecheckout-6.0.0/postfinancecheckout/models/permission_list_response.py +116 -0
  299. postfinancecheckout-6.0.0/postfinancecheckout/models/permission_search_response.py +120 -0
  300. postfinancecheckout-6.0.0/postfinancecheckout/models/persistable_currency_amount.py +104 -0
  301. postfinancecheckout-6.0.0/postfinancecheckout/models/persistable_currency_amount_update.py +100 -0
  302. postfinancecheckout-6.0.0/postfinancecheckout/models/product_component_group_list_response.py +116 -0
  303. postfinancecheckout-6.0.0/postfinancecheckout/models/product_component_group_search_response.py +120 -0
  304. postfinancecheckout-6.0.0/postfinancecheckout/models/product_component_list_response.py +116 -0
  305. postfinancecheckout-6.0.0/postfinancecheckout/models/product_component_search_response.py +120 -0
  306. postfinancecheckout-6.0.0/postfinancecheckout/models/product_fee_type.py +49 -0
  307. postfinancecheckout-6.0.0/postfinancecheckout/models/product_list_response.py +116 -0
  308. postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee.py +134 -0
  309. postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_list_response.py +116 -0
  310. postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_search_response.py +120 -0
  311. postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_tier_list_response.py +116 -0
  312. postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_tier_search_response.py +120 -0
  313. postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_update.py +109 -0
  314. postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_tier_fee.py +126 -0
  315. postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_tier_fee_update.py +112 -0
  316. postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_tier_pricing.py +48 -0
  317. postfinancecheckout-6.0.0/postfinancecheckout/models/product_period_fee.py +145 -0
  318. postfinancecheckout-6.0.0/postfinancecheckout/models/product_period_fee_list_response.py +116 -0
  319. postfinancecheckout-6.0.0/postfinancecheckout/models/product_period_fee_search_response.py +120 -0
  320. postfinancecheckout-6.0.0/postfinancecheckout/models/product_period_fee_update.py +118 -0
  321. postfinancecheckout-6.0.0/postfinancecheckout/models/product_retirement_list_response.py +116 -0
  322. postfinancecheckout-6.0.0/postfinancecheckout/models/product_retirement_search_response.py +120 -0
  323. postfinancecheckout-6.0.0/postfinancecheckout/models/product_search_response.py +120 -0
  324. postfinancecheckout-6.0.0/postfinancecheckout/models/product_setup_fee.py +160 -0
  325. postfinancecheckout-6.0.0/postfinancecheckout/models/product_setup_fee_list_response.py +116 -0
  326. postfinancecheckout-6.0.0/postfinancecheckout/models/product_setup_fee_search_response.py +120 -0
  327. postfinancecheckout-6.0.0/postfinancecheckout/models/product_setup_fee_update.py +132 -0
  328. postfinancecheckout-6.0.0/postfinancecheckout/models/product_version_list_response.py +116 -0
  329. postfinancecheckout-6.0.0/postfinancecheckout/models/product_version_retirement_list_response.py +116 -0
  330. postfinancecheckout-6.0.0/postfinancecheckout/models/product_version_retirement_search_response.py +120 -0
  331. postfinancecheckout-6.0.0/postfinancecheckout/models/product_version_search_response.py +120 -0
  332. postfinancecheckout-6.0.0/postfinancecheckout/models/recurring_indicator.py +50 -0
  333. postfinancecheckout-6.0.0/postfinancecheckout/models/refund.py +293 -0
  334. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_bank_transaction.py +140 -0
  335. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_bank_transaction_list_response.py +116 -0
  336. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_bank_transaction_search_response.py +120 -0
  337. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment.py +140 -0
  338. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment_active.py +101 -0
  339. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment_create.py +101 -0
  340. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment_list_response.py +116 -0
  341. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment_search_response.py +120 -0
  342. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_create.py +137 -0
  343. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_list_response.py +116 -0
  344. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_recovery_bank_transaction.py +152 -0
  345. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_recovery_bank_transaction_list_response.py +116 -0
  346. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_recovery_bank_transaction_search_response.py +120 -0
  347. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_search_response.py +120 -0
  348. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_state.py +52 -0
  349. postfinancecheckout-6.0.0/postfinancecheckout/models/refund_type.py +50 -0
  350. postfinancecheckout-6.0.0/postfinancecheckout/models/rendered_document.py +112 -0
  351. postfinancecheckout-6.0.0/postfinancecheckout/models/rendered_terminal_receipt.py +114 -0
  352. postfinancecheckout-6.0.0/postfinancecheckout/models/rendered_terminal_receipt_list_response.py +116 -0
  353. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_address_format.py +113 -0
  354. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_address_format_field.py +56 -0
  355. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_api_bulk_operation_result.py +114 -0
  356. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_api_error_response.py +117 -0
  357. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_application_user_mac_key.py +108 -0
  358. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_application_user_mac_key_created.py +112 -0
  359. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_country.py +122 -0
  360. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_country_state.py +112 -0
  361. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_currency.py +112 -0
  362. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_customer_email_address.py +105 -0
  363. postfinancecheckout-6.0.0/postfinancecheckout/models/rest_language.py +124 -0
  364. postfinancecheckout-6.0.0/postfinancecheckout/models/result_portion_model.py +112 -0
  365. postfinancecheckout-6.0.0/postfinancecheckout/models/role.py +138 -0
  366. postfinancecheckout-6.0.0/postfinancecheckout/models/role_create.py +112 -0
  367. postfinancecheckout-6.0.0/postfinancecheckout/models/role_list_response.py +116 -0
  368. postfinancecheckout-6.0.0/postfinancecheckout/models/role_search_response.py +120 -0
  369. postfinancecheckout-6.0.0/postfinancecheckout/models/role_state.py +50 -0
  370. postfinancecheckout-6.0.0/postfinancecheckout/models/role_update.py +112 -0
  371. postfinancecheckout-6.0.0/postfinancecheckout/models/sales_channel.py +112 -0
  372. postfinancecheckout-6.0.0/postfinancecheckout/models/sales_channel_list_response.py +116 -0
  373. postfinancecheckout-6.0.0/postfinancecheckout/models/sales_channel_search_response.py +120 -0
  374. postfinancecheckout-6.0.0/postfinancecheckout/models/scope.py +171 -0
  375. postfinancecheckout-6.0.0/postfinancecheckout/models/scope_single_sign_on_provider.py +127 -0
  376. postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user.py +125 -0
  377. postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user_create.py +112 -0
  378. postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user_list_response.py +116 -0
  379. postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user_search_response.py +120 -0
  380. postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user_update.py +110 -0
  381. postfinancecheckout-6.0.0/postfinancecheckout/models/sorting_order.py +48 -0
  382. postfinancecheckout-6.0.0/postfinancecheckout/models/space.py +179 -0
  383. postfinancecheckout-6.0.0/postfinancecheckout/models/space_address.py +157 -0
  384. postfinancecheckout-6.0.0/postfinancecheckout/models/space_address_create.py +127 -0
  385. postfinancecheckout-6.0.0/postfinancecheckout/models/space_create.py +120 -0
  386. postfinancecheckout-6.0.0/postfinancecheckout/models/space_list_response.py +116 -0
  387. postfinancecheckout-6.0.0/postfinancecheckout/models/space_search_response.py +120 -0
  388. postfinancecheckout-6.0.0/postfinancecheckout/models/space_update.py +118 -0
  389. postfinancecheckout-6.0.0/postfinancecheckout/models/space_view.py +127 -0
  390. postfinancecheckout-6.0.0/postfinancecheckout/models/static_value.py +112 -0
  391. postfinancecheckout-6.0.0/postfinancecheckout/models/static_value_list_response.py +116 -0
  392. postfinancecheckout-6.0.0/postfinancecheckout/models/static_value_search_response.py +120 -0
  393. postfinancecheckout-6.0.0/postfinancecheckout/models/submitted_analytics_query_execution.py +132 -0
  394. postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber.py +170 -0
  395. postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_active.py +137 -0
  396. postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_create.py +137 -0
  397. postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_list_response.py +116 -0
  398. postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_search_response.py +120 -0
  399. postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_update.py +134 -0
  400. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription.py +195 -0
  401. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate.py +137 -0
  402. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_create.py +110 -0
  403. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_deleted.py +137 -0
  404. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_deleting.py +137 -0
  405. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_inactive.py +108 -0
  406. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_list_response.py +116 -0
  407. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_search_response.py +120 -0
  408. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_update.py +108 -0
  409. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge.py +201 -0
  410. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_create.py +123 -0
  411. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_list_response.py +116 -0
  412. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_processing_type.py +48 -0
  413. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_search_response.py +120 -0
  414. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_state.py +51 -0
  415. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_type.py +48 -0
  416. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_component_configuration.py +116 -0
  417. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_component_reference_configuration.py +100 -0
  418. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_create_request.py +116 -0
  419. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_initialize_subscriber_present_request.py +100 -0
  420. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry.py +202 -0
  421. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry_create.py +121 -0
  422. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry_list_response.py +116 -0
  423. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry_search_response.py +120 -0
  424. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry_state.py +49 -0
  425. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_list_response.py +116 -0
  426. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric.py +130 -0
  427. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_active.py +102 -0
  428. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_create.py +102 -0
  429. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_type.py +112 -0
  430. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_update.py +102 -0
  431. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_usage_report.py +142 -0
  432. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_usage_report_create.py +107 -0
  433. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_pending.py +122 -0
  434. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_period_bill.py +142 -0
  435. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_period_bill_list_response.py +116 -0
  436. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_period_bill_search_response.py +120 -0
  437. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_period_bill_state.py +48 -0
  438. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product.py +155 -0
  439. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_active.py +112 -0
  440. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component.py +158 -0
  441. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_group.py +126 -0
  442. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_group_update.py +106 -0
  443. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_reference.py +135 -0
  444. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_reference_state.py +50 -0
  445. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_update.py +120 -0
  446. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_create.py +119 -0
  447. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_retirement.py +128 -0
  448. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_retirement_request.py +100 -0
  449. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_state.py +51 -0
  450. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version.py +188 -0
  451. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version_pending.py +120 -0
  452. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version_retirement.py +129 -0
  453. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version_retirement_request.py +100 -0
  454. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version_state.py +51 -0
  455. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_search_response.py +120 -0
  456. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_state.py +54 -0
  457. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_suspension.py +153 -0
  458. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_suspension_action.py +48 -0
  459. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_suspension_reason.py +49 -0
  460. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_suspension_state.py +48 -0
  461. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_update.py +106 -0
  462. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_update_request.py +112 -0
  463. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_version.py +186 -0
  464. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_version_list_response.py +116 -0
  465. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_version_search_response.py +120 -0
  466. postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_version_state.py +52 -0
  467. postfinancecheckout-6.0.0/postfinancecheckout/models/suspension_creation_request.py +105 -0
  468. postfinancecheckout-6.0.0/postfinancecheckout/models/suspension_list_response.py +116 -0
  469. postfinancecheckout-6.0.0/postfinancecheckout/models/suspension_search_response.py +120 -0
  470. postfinancecheckout-6.0.0/postfinancecheckout/models/tax.py +105 -0
  471. postfinancecheckout-6.0.0/postfinancecheckout/models/tax_calculation.py +48 -0
  472. postfinancecheckout-6.0.0/postfinancecheckout/models/tax_class.py +121 -0
  473. postfinancecheckout-6.0.0/postfinancecheckout/models/tax_create.py +101 -0
  474. postfinancecheckout-6.0.0/postfinancecheckout/models/tenant_database.py +109 -0
  475. postfinancecheckout-6.0.0/postfinancecheckout/models/terminal_list_response.py +116 -0
  476. postfinancecheckout-6.0.0/postfinancecheckout/models/terminal_receipt_format.py +48 -0
  477. postfinancecheckout-6.0.0/postfinancecheckout/models/terminal_search_response.py +120 -0
  478. postfinancecheckout-6.0.0/postfinancecheckout/models/token.py +159 -0
  479. postfinancecheckout-6.0.0/postfinancecheckout/models/token_create.py +124 -0
  480. postfinancecheckout-6.0.0/postfinancecheckout/models/token_list_response.py +116 -0
  481. postfinancecheckout-6.0.0/postfinancecheckout/models/token_search_response.py +120 -0
  482. postfinancecheckout-6.0.0/postfinancecheckout/models/token_update.py +121 -0
  483. postfinancecheckout-6.0.0/postfinancecheckout/models/token_version.py +228 -0
  484. postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_list_response.py +116 -0
  485. postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_retry_strategy.py +49 -0
  486. postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_search_response.py +120 -0
  487. postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_state.py +49 -0
  488. postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_type.py +114 -0
  489. postfinancecheckout-6.0.0/postfinancecheckout/models/tokenization_mode.py +50 -0
  490. postfinancecheckout-6.0.0/postfinancecheckout/models/tokenized_card_data.py +113 -0
  491. postfinancecheckout-6.0.0/postfinancecheckout/models/tokenized_card_data_create.py +148 -0
  492. postfinancecheckout-6.0.0/postfinancecheckout/models/tokenized_card_request.py +104 -0
  493. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction.py +424 -0
  494. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_client_platform_information.py +128 -0
  495. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment.py +140 -0
  496. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment_active.py +101 -0
  497. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment_create.py +101 -0
  498. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment_list_response.py +116 -0
  499. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment_search_response.py +120 -0
  500. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion.py +284 -0
  501. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion_behavior.py +49 -0
  502. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion_details.py +145 -0
  503. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion_mode.py +49 -0
  504. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion_state.py +51 -0
  505. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_create.py +201 -0
  506. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_environment_selection_strategy.py +49 -0
  507. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_group.py +139 -0
  508. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_group_state.py +49 -0
  509. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice.py +220 -0
  510. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_comment.py +140 -0
  511. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_comment_active.py +101 -0
  512. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_comment_create.py +101 -0
  513. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_replacement.py +139 -0
  514. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_state.py +53 -0
  515. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_line_item_version.py +204 -0
  516. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_line_item_version_create.py +110 -0
  517. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_line_item_version_state.py +51 -0
  518. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_list_response.py +116 -0
  519. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_pending.py +174 -0
  520. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_search_response.py +120 -0
  521. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_state.py +56 -0
  522. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_user_interface_type.py +52 -0
  523. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void.py +183 -0
  524. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void_list_response.py +116 -0
  525. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void_mode.py +48 -0
  526. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void_search_response.py +120 -0
  527. postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void_state.py +50 -0
  528. postfinancecheckout-6.0.0/postfinancecheckout/models/two_factor_authentication_type.py +116 -0
  529. postfinancecheckout-6.0.0/postfinancecheckout/models/user.py +119 -0
  530. postfinancecheckout-6.0.0/postfinancecheckout/models/user_account_role.py +120 -0
  531. postfinancecheckout-6.0.0/postfinancecheckout/models/user_account_role_list_response.py +116 -0
  532. postfinancecheckout-6.0.0/postfinancecheckout/models/user_space_role.py +116 -0
  533. postfinancecheckout-6.0.0/postfinancecheckout/models/user_space_role_list_response.py +116 -0
  534. postfinancecheckout-6.0.0/postfinancecheckout/models/user_type.py +51 -0
  535. postfinancecheckout-6.0.0/postfinancecheckout/models/wallet_type.py +122 -0
  536. postfinancecheckout-6.0.0/postfinancecheckout/models/web_app_confirmation_response.py +118 -0
  537. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_identity.py +121 -0
  538. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener.py +149 -0
  539. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_create.py +112 -0
  540. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_entity.py +108 -0
  541. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_list_response.py +116 -0
  542. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_search_response.py +120 -0
  543. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_update.py +108 -0
  544. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url.py +129 -0
  545. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url_create.py +104 -0
  546. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url_list_response.py +116 -0
  547. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url_search_response.py +120 -0
  548. postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url_update.py +106 -0
  549. postfinancecheckout-6.0.0/postfinancecheckout/postfinancecheckout_sdk_exception.py +36 -0
  550. postfinancecheckout-6.0.0/postfinancecheckout/py.typed +0 -0
  551. postfinancecheckout-6.0.0/postfinancecheckout/rest.py +276 -0
  552. postfinancecheckout-6.0.0/postfinancecheckout/service/__init__.py +113 -0
  553. postfinancecheckout-6.0.0/postfinancecheckout/service/accounts_service.py +2221 -0
  554. postfinancecheckout-6.0.0/postfinancecheckout/service/analytics_queries_service.py +1375 -0
  555. postfinancecheckout-6.0.0/postfinancecheckout/service/application_users_roles_service.py +1668 -0
  556. postfinancecheckout-6.0.0/postfinancecheckout/service/application_users_service.py +2476 -0
  557. postfinancecheckout-6.0.0/postfinancecheckout/service/bank_accounts_service.py +972 -0
  558. postfinancecheckout-6.0.0/postfinancecheckout/service/bank_transactions_service.py +972 -0
  559. postfinancecheckout-6.0.0/postfinancecheckout/service/charge_attempts_service.py +972 -0
  560. postfinancecheckout-6.0.0/postfinancecheckout/service/charge_bank_transactions_service.py +972 -0
  561. postfinancecheckout-6.0.0/postfinancecheckout/service/charge_flow_levels_service.py +1230 -0
  562. postfinancecheckout-6.0.0/postfinancecheckout/service/charge_flows_level_payment_links_service.py +972 -0
  563. postfinancecheckout-6.0.0/postfinancecheckout/service/charge_flows_service.py +972 -0
  564. postfinancecheckout-6.0.0/postfinancecheckout/service/condition_types_service.py +927 -0
  565. postfinancecheckout-6.0.0/postfinancecheckout/service/countries_service.py +1564 -0
  566. postfinancecheckout-6.0.0/postfinancecheckout/service/currencies_service.py +840 -0
  567. postfinancecheckout-6.0.0/postfinancecheckout/service/currency_bank_accounts_service.py +972 -0
  568. postfinancecheckout-6.0.0/postfinancecheckout/service/customer_addresses_service.py +2185 -0
  569. postfinancecheckout-6.0.0/postfinancecheckout/service/customer_comments_service.py +2458 -0
  570. postfinancecheckout-6.0.0/postfinancecheckout/service/customers_service.py +3213 -0
  571. postfinancecheckout-6.0.0/postfinancecheckout/service/delivery_indications_service.py +1524 -0
  572. postfinancecheckout-6.0.0/postfinancecheckout/service/document_template_types_service.py +927 -0
  573. postfinancecheckout-6.0.0/postfinancecheckout/service/document_templates_service.py +972 -0
  574. postfinancecheckout-6.0.0/postfinancecheckout/service/dunning_cases_service.py +1515 -0
  575. postfinancecheckout-6.0.0/postfinancecheckout/service/dunning_flow_levels_service.py +972 -0
  576. postfinancecheckout-6.0.0/postfinancecheckout/service/dunning_flows_service.py +972 -0
  577. postfinancecheckout-6.0.0/postfinancecheckout/service/express_checkout_service.py +315 -0
  578. postfinancecheckout-6.0.0/postfinancecheckout/service/external_transfer_bank_transactions_service.py +972 -0
  579. postfinancecheckout-6.0.0/postfinancecheckout/service/human_users_roles_service.py +1668 -0
  580. postfinancecheckout-6.0.0/postfinancecheckout/service/human_users_service.py +2053 -0
  581. postfinancecheckout-6.0.0/postfinancecheckout/service/internal_transfer_bank_transactions_service.py +972 -0
  582. postfinancecheckout-6.0.0/postfinancecheckout/service/label_descriptors_service.py +1810 -0
  583. postfinancecheckout-6.0.0/postfinancecheckout/service/languages_service.py +840 -0
  584. postfinancecheckout-6.0.0/postfinancecheckout/service/legal_organization_forms_service.py +927 -0
  585. postfinancecheckout-6.0.0/postfinancecheckout/service/manual_tasks_service.py +1501 -0
  586. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_connector_configurations_service.py +1825 -0
  587. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_connectors_service.py +927 -0
  588. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_links_service.py +1825 -0
  589. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_method_brands_service.py +927 -0
  590. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_method_configurations_service.py +1825 -0
  591. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_methods_service.py +927 -0
  592. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_processor_configurations_service.py +1825 -0
  593. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_processors_service.py +927 -0
  594. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_sales_channels_service.py +927 -0
  595. postfinancecheckout-6.0.0/postfinancecheckout/service/payment_terminals_service.py +3798 -0
  596. postfinancecheckout-6.0.0/postfinancecheckout/service/permissions_service.py +927 -0
  597. postfinancecheckout-6.0.0/postfinancecheckout/service/refund_bank_transactions_service.py +972 -0
  598. postfinancecheckout-6.0.0/postfinancecheckout/service/refund_comments_service.py +2458 -0
  599. postfinancecheckout-6.0.0/postfinancecheckout/service/refund_recovery_bank_transactions_service.py +972 -0
  600. postfinancecheckout-6.0.0/postfinancecheckout/service/refunds_service.py +2070 -0
  601. postfinancecheckout-6.0.0/postfinancecheckout/service/roles_service.py +1735 -0
  602. postfinancecheckout-6.0.0/postfinancecheckout/service/single_sign_on_users_roles_service.py +1668 -0
  603. postfinancecheckout-6.0.0/postfinancecheckout/service/single_sign_on_users_service.py +1735 -0
  604. postfinancecheckout-6.0.0/postfinancecheckout/service/spaces_service.py +1735 -0
  605. postfinancecheckout-6.0.0/postfinancecheckout/service/static_values_service.py +927 -0
  606. postfinancecheckout-6.0.0/postfinancecheckout/service/subscribers_service.py +1822 -0
  607. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_affiliates_service.py +1822 -0
  608. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_charges_service.py +1538 -0
  609. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_ledger_entries_service.py +1262 -0
  610. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_metric_usage_reports_service.py +1262 -0
  611. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_metrics_service.py +1822 -0
  612. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_period_bills_service.py +1292 -0
  613. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_component_groups_service.py +1821 -0
  614. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_components_service.py +1821 -0
  615. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_metered_fee_tiers_service.py +1911 -0
  616. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_metered_fees_service.py +1821 -0
  617. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_period_fees_service.py +1821 -0
  618. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_retirements_service.py +972 -0
  619. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_setup_fees_service.py +1821 -0
  620. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_version_retirements_service.py +972 -0
  621. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_versions_service.py +2148 -0
  622. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_products_service.py +1873 -0
  623. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_suspensions_service.py +972 -0
  624. postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_versions_service.py +972 -0
  625. postfinancecheckout-6.0.0/postfinancecheckout/service/subscriptions_service.py +3928 -0
  626. postfinancecheckout-6.0.0/postfinancecheckout/service/token_versions_service.py +972 -0
  627. postfinancecheckout-6.0.0/postfinancecheckout/service/tokens_service.py +2376 -0
  628. postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_client_platforms_service.py +972 -0
  629. postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_comments_service.py +2458 -0
  630. postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_completions_service.py +972 -0
  631. postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_invoice_comments_service.py +2458 -0
  632. postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_invoices_service.py +2340 -0
  633. postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_line_item_versions_service.py +1262 -0
  634. postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_voids_service.py +972 -0
  635. postfinancecheckout-6.0.0/postfinancecheckout/service/transactions_service.py +10454 -0
  636. postfinancecheckout-6.0.0/postfinancecheckout/service/web_apps_service.py +797 -0
  637. postfinancecheckout-6.0.0/postfinancecheckout/service/webhook_encryption_keys_service.py +320 -0
  638. postfinancecheckout-6.0.0/postfinancecheckout/service/webhook_listeners_service.py +2645 -0
  639. postfinancecheckout-6.0.0/postfinancecheckout/service/webhook_urls_service.py +2645 -0
  640. postfinancecheckout-6.0.0/postfinancecheckout.egg-info/PKG-INFO +44 -0
  641. postfinancecheckout-6.0.0/postfinancecheckout.egg-info/SOURCES.txt +652 -0
  642. postfinancecheckout-6.0.0/postfinancecheckout.egg-info/requires.txt +13 -0
  643. postfinancecheckout-6.0.0/pyproject.toml +77 -0
  644. postfinancecheckout-6.0.0/setup.cfg +7 -0
  645. postfinancecheckout-6.0.0/setup.py +86 -0
  646. postfinancecheckout-6.0.0/tests/test_encryption_util.py +107 -0
  647. postfinancecheckout-6.0.0/tests/test_querying.py +340 -0
  648. postfinancecheckout-6.0.0/tests/test_refunds_service.py +150 -0
  649. postfinancecheckout-6.0.0/tests/test_transaction_completions_service.py +85 -0
  650. postfinancecheckout-6.0.0/tests/test_transactions_service.py +1194 -0
  651. postfinancecheckout-6.0.0/tests/test_webhook_listeners_api.py +131 -0
  652. postfinancecheckout-5.1.0/LICENSE +0 -201
  653. postfinancecheckout-5.1.0/PKG-INFO +0 -170
  654. postfinancecheckout-5.1.0/README.md +0 -146
  655. postfinancecheckout-5.1.0/postfinancecheckout/__init__.py +0 -402
  656. postfinancecheckout-5.1.0/postfinancecheckout/api/__init__.py +0 -82
  657. postfinancecheckout-5.1.0/postfinancecheckout/api/account_service_api.py +0 -627
  658. postfinancecheckout-5.1.0/postfinancecheckout/api/analytics_query_service_api.py +0 -639
  659. postfinancecheckout-5.1.0/postfinancecheckout/api/application_user_service_api.py +0 -627
  660. postfinancecheckout-5.1.0/postfinancecheckout/api/bank_account_service_api.py +0 -342
  661. postfinancecheckout-5.1.0/postfinancecheckout/api/bank_transaction_service_api.py +0 -342
  662. postfinancecheckout-5.1.0/postfinancecheckout/api/card_processing_service_api.py +0 -263
  663. postfinancecheckout-5.1.0/postfinancecheckout/api/charge_attempt_service_api.py +0 -342
  664. postfinancecheckout-5.1.0/postfinancecheckout/api/charge_bank_transaction_service_api.py +0 -342
  665. postfinancecheckout-5.1.0/postfinancecheckout/api/charge_flow_level_payment_link_service_api.py +0 -342
  666. postfinancecheckout-5.1.0/postfinancecheckout/api/charge_flow_level_service_api.py +0 -453
  667. postfinancecheckout-5.1.0/postfinancecheckout/api/charge_flow_service_api.py +0 -786
  668. postfinancecheckout-5.1.0/postfinancecheckout/api/condition_type_service_api.py +0 -211
  669. postfinancecheckout-5.1.0/postfinancecheckout/api/country_service_api.py +0 -108
  670. postfinancecheckout-5.1.0/postfinancecheckout/api/country_state_service_api.py +0 -211
  671. postfinancecheckout-5.1.0/postfinancecheckout/api/currency_bank_account_service_api.py +0 -342
  672. postfinancecheckout-5.1.0/postfinancecheckout/api/currency_service_api.py +0 -108
  673. postfinancecheckout-5.1.0/postfinancecheckout/api/customer_address_service_api.py +0 -786
  674. postfinancecheckout-5.1.0/postfinancecheckout/api/customer_comment_service_api.py +0 -897
  675. postfinancecheckout-5.1.0/postfinancecheckout/api/customer_service_api.py +0 -675
  676. postfinancecheckout-5.1.0/postfinancecheckout/api/delivery_indication_service_api.py +0 -556
  677. postfinancecheckout-5.1.0/postfinancecheckout/api/document_template_service_api.py +0 -342
  678. postfinancecheckout-5.1.0/postfinancecheckout/api/document_template_type_service_api.py +0 -211
  679. postfinancecheckout-5.1.0/postfinancecheckout/api/external_transfer_bank_transaction_service_api.py +0 -342
  680. postfinancecheckout-5.1.0/postfinancecheckout/api/human_user_service_api.py +0 -730
  681. postfinancecheckout-5.1.0/postfinancecheckout/api/internal_transfer_bank_transaction_service_api.py +0 -342
  682. postfinancecheckout-5.1.0/postfinancecheckout/api/invoice_reconciliation_record_invoice_link_service_api.py +0 -568
  683. postfinancecheckout-5.1.0/postfinancecheckout/api/invoice_reconciliation_record_service_api.py +0 -659
  684. postfinancecheckout-5.1.0/postfinancecheckout/api/invoice_reimbursement_service_api.py +0 -564
  685. postfinancecheckout-5.1.0/postfinancecheckout/api/label_description_group_service_api.py +0 -211
  686. postfinancecheckout-5.1.0/postfinancecheckout/api/label_description_service_api.py +0 -211
  687. postfinancecheckout-5.1.0/postfinancecheckout/api/language_service_api.py +0 -108
  688. postfinancecheckout-5.1.0/postfinancecheckout/api/legal_organization_form_service_api.py +0 -314
  689. postfinancecheckout-5.1.0/postfinancecheckout/api/manual_task_service_api.py +0 -342
  690. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_connector_configuration_service_api.py +0 -342
  691. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_connector_service_api.py +0 -211
  692. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_link_service_api.py +0 -675
  693. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_method_brand_service_api.py +0 -211
  694. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_method_configuration_service_api.py +0 -342
  695. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_method_service_api.py +0 -211
  696. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_processor_configuration_service_api.py +0 -342
  697. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_processor_service_api.py +0 -211
  698. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_terminal_service_api.py +0 -762
  699. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_terminal_till_service_api.py +0 -259
  700. postfinancecheckout-5.1.0/postfinancecheckout/api/payment_terminal_transaction_summary_service_api.py +0 -453
  701. postfinancecheckout-5.1.0/postfinancecheckout/api/permission_service_api.py +0 -211
  702. postfinancecheckout-5.1.0/postfinancecheckout/api/refund_bank_transaction_service_api.py +0 -342
  703. postfinancecheckout-5.1.0/postfinancecheckout/api/refund_comment_service_api.py +0 -790
  704. postfinancecheckout-5.1.0/postfinancecheckout/api/refund_recovery_bank_transaction_service_api.py +0 -342
  705. postfinancecheckout-5.1.0/postfinancecheckout/api/refund_service_api.py +0 -897
  706. postfinancecheckout-5.1.0/postfinancecheckout/api/shopify_recurring_order_service_api.py +0 -453
  707. postfinancecheckout-5.1.0/postfinancecheckout/api/shopify_subscriber_service_api.py +0 -453
  708. postfinancecheckout-5.1.0/postfinancecheckout/api/shopify_subscription_product_service_api.py +0 -564
  709. postfinancecheckout-5.1.0/postfinancecheckout/api/shopify_subscription_service_api.py +0 -790
  710. postfinancecheckout-5.1.0/postfinancecheckout/api/shopify_subscription_suspension_service_api.py +0 -560
  711. postfinancecheckout-5.1.0/postfinancecheckout/api/shopify_subscription_version_service_api.py +0 -342
  712. postfinancecheckout-5.1.0/postfinancecheckout/api/shopify_transaction_service_api.py +0 -342
  713. postfinancecheckout-5.1.0/postfinancecheckout/api/space_service_api.py +0 -627
  714. postfinancecheckout-5.1.0/postfinancecheckout/api/static_value_service_api.py +0 -211
  715. postfinancecheckout-5.1.0/postfinancecheckout/api/token_service_api.py +0 -1190
  716. postfinancecheckout-5.1.0/postfinancecheckout/api/token_version_service_api.py +0 -453
  717. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_comment_service_api.py +0 -790
  718. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_completion_service_api.py +0 -778
  719. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_iframe_service_api.py +0 -120
  720. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_invoice_comment_service_api.py +0 -790
  721. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_invoice_service_api.py +0 -1024
  722. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_lightbox_service_api.py +0 -120
  723. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_line_item_version_service_api.py +0 -453
  724. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_mobile_sdk_service_api.py +0 -112
  725. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_payment_page_service_api.py +0 -120
  726. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_service_api.py +0 -1947
  727. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_terminal_service_api.py +0 -239
  728. postfinancecheckout-5.1.0/postfinancecheckout/api/transaction_void_service_api.py +0 -556
  729. postfinancecheckout-5.1.0/postfinancecheckout/api/user_account_role_service_api.py +0 -338
  730. postfinancecheckout-5.1.0/postfinancecheckout/api/user_space_role_service_api.py +0 -334
  731. postfinancecheckout-5.1.0/postfinancecheckout/api/web_app_service_api.py +0 -306
  732. postfinancecheckout-5.1.0/postfinancecheckout/api/webhook_encryption_service_api.py +0 -147
  733. postfinancecheckout-5.1.0/postfinancecheckout/api/webhook_listener_service_api.py +0 -675
  734. postfinancecheckout-5.1.0/postfinancecheckout/api/webhook_url_service_api.py +0 -675
  735. postfinancecheckout-5.1.0/postfinancecheckout/api_client.py +0 -687
  736. postfinancecheckout-5.1.0/postfinancecheckout/configuration.py +0 -267
  737. postfinancecheckout-5.1.0/postfinancecheckout/encryption_util.py +0 -45
  738. postfinancecheckout-5.1.0/postfinancecheckout/models/__init__.py +0 -318
  739. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_account_update.py +0 -150
  740. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_application_user_update.py +0 -148
  741. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_customer_active.py +0 -258
  742. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_customer_address_active.py +0 -120
  743. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_customer_comment_active.py +0 -96
  744. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_human_user_update.py +0 -284
  745. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_payment_link_update.py +0 -356
  746. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_refund_comment_active.py +0 -96
  747. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_shopify_subscription_product_update.py +0 -432
  748. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_space_update.py +0 -280
  749. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_token_update.py +0 -228
  750. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_transaction_comment_active.py +0 -96
  751. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_transaction_invoice_comment_active.py +0 -96
  752. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_transaction_pending.py +0 -578
  753. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_webhook_listener_update.py +0 -200
  754. postfinancecheckout-5.1.0/postfinancecheckout/models/abstract_webhook_url_update.py +0 -152
  755. postfinancecheckout-5.1.0/postfinancecheckout/models/account.py +0 -514
  756. postfinancecheckout-5.1.0/postfinancecheckout/models/account_create.py +0 -125
  757. postfinancecheckout-5.1.0/postfinancecheckout/models/account_state.py +0 -14
  758. postfinancecheckout-5.1.0/postfinancecheckout/models/account_type.py +0 -11
  759. postfinancecheckout-5.1.0/postfinancecheckout/models/account_update.py +0 -128
  760. postfinancecheckout-5.1.0/postfinancecheckout/models/address.py +0 -618
  761. postfinancecheckout-5.1.0/postfinancecheckout/models/address_create.py +0 -618
  762. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_query.py +0 -231
  763. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_query_execution.py +0 -380
  764. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_query_execution_state.py +0 -12
  765. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_query_result_batch.py +0 -172
  766. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_schema_column.py +0 -276
  767. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_schema_table.py +0 -146
  768. postfinancecheckout-5.1.0/postfinancecheckout/models/application_user.py +0 -150
  769. postfinancecheckout-5.1.0/postfinancecheckout/models/application_user_create.py +0 -99
  770. postfinancecheckout-5.1.0/postfinancecheckout/models/application_user_create_with_mac_key.py +0 -96
  771. postfinancecheckout-5.1.0/postfinancecheckout/models/application_user_update.py +0 -128
  772. postfinancecheckout-5.1.0/postfinancecheckout/models/authenticated_card_data.py +0 -96
  773. postfinancecheckout-5.1.0/postfinancecheckout/models/authenticated_card_data_create.py +0 -317
  774. postfinancecheckout-5.1.0/postfinancecheckout/models/bank_account.py +0 -280
  775. postfinancecheckout-5.1.0/postfinancecheckout/models/bank_account_environment.py +0 -10
  776. postfinancecheckout-5.1.0/postfinancecheckout/models/bank_account_state.py +0 -12
  777. postfinancecheckout-5.1.0/postfinancecheckout/models/bank_account_type.py +0 -172
  778. postfinancecheckout-5.1.0/postfinancecheckout/models/bank_transaction.py +0 -566
  779. postfinancecheckout-5.1.0/postfinancecheckout/models/bank_transaction_flow_direction.py +0 -10
  780. postfinancecheckout-5.1.0/postfinancecheckout/models/bank_transaction_source.py +0 -146
  781. postfinancecheckout-5.1.0/postfinancecheckout/models/bank_transaction_state.py +0 -10
  782. postfinancecheckout-5.1.0/postfinancecheckout/models/bank_transaction_type.py +0 -146
  783. postfinancecheckout-5.1.0/postfinancecheckout/models/card_authentication_response.py +0 -13
  784. postfinancecheckout-5.1.0/postfinancecheckout/models/card_authentication_version.py +0 -10
  785. postfinancecheckout-5.1.0/postfinancecheckout/models/card_cryptogram.py +0 -120
  786. postfinancecheckout-5.1.0/postfinancecheckout/models/card_cryptogram_create.py +0 -126
  787. postfinancecheckout-5.1.0/postfinancecheckout/models/card_cryptogram_type.py +0 -9
  788. postfinancecheckout-5.1.0/postfinancecheckout/models/cardholder_authentication.py +0 -198
  789. postfinancecheckout-5.1.0/postfinancecheckout/models/cardholder_authentication_create.py +0 -204
  790. postfinancecheckout-5.1.0/postfinancecheckout/models/charge.py +0 -382
  791. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_attempt.py +0 -748
  792. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_attempt_environment.py +0 -10
  793. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_attempt_state.py +0 -11
  794. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_bank_transaction.py +0 -278
  795. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_flow.py +0 -276
  796. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_flow_level.py +0 -330
  797. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_flow_level_configuration.py +0 -330
  798. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_flow_level_configuration_type.py +0 -172
  799. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_flow_level_payment_link.py +0 -122
  800. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_flow_level_state.py +0 -11
  801. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_state.py +0 -11
  802. postfinancecheckout-5.1.0/postfinancecheckout/models/charge_type.py +0 -12
  803. postfinancecheckout-5.1.0/postfinancecheckout/models/client_error.py +0 -198
  804. postfinancecheckout-5.1.0/postfinancecheckout/models/client_error_type.py +0 -11
  805. postfinancecheckout-5.1.0/postfinancecheckout/models/completion_line_item.py +0 -148
  806. postfinancecheckout-5.1.0/postfinancecheckout/models/completion_line_item_create.py +0 -157
  807. postfinancecheckout-5.1.0/postfinancecheckout/models/condition.py +0 -252
  808. postfinancecheckout-5.1.0/postfinancecheckout/models/condition_type.py +0 -146
  809. postfinancecheckout-5.1.0/postfinancecheckout/models/connector_invocation.py +0 -226
  810. postfinancecheckout-5.1.0/postfinancecheckout/models/connector_invocation_stage.py +0 -12
  811. postfinancecheckout-5.1.0/postfinancecheckout/models/creation_entity_state.py +0 -13
  812. postfinancecheckout-5.1.0/postfinancecheckout/models/criteria_operator.py +0 -20
  813. postfinancecheckout-5.1.0/postfinancecheckout/models/currency_bank_account.py +0 -224
  814. postfinancecheckout-5.1.0/postfinancecheckout/models/customer.py +0 -362
  815. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_active.py +0 -128
  816. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_address.py +0 -276
  817. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_address_active.py +0 -128
  818. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_address_create.py +0 -99
  819. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_address_type.py +0 -11
  820. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_comment.py +0 -330
  821. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_comment_active.py +0 -128
  822. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_comment_create.py +0 -99
  823. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_create.py +0 -70
  824. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_postal_address.py +0 -618
  825. postfinancecheckout-5.1.0/postfinancecheckout/models/customer_postal_address_create.py +0 -618
  826. postfinancecheckout-5.1.0/postfinancecheckout/models/customers_presence.py +0 -11
  827. postfinancecheckout-5.1.0/postfinancecheckout/models/data_collection_type.py +0 -10
  828. postfinancecheckout-5.1.0/postfinancecheckout/models/delivery_indication.py +0 -356
  829. postfinancecheckout-5.1.0/postfinancecheckout/models/delivery_indication_decision_reason.py +0 -146
  830. postfinancecheckout-5.1.0/postfinancecheckout/models/delivery_indication_state.py +0 -12
  831. postfinancecheckout-5.1.0/postfinancecheckout/models/document_template.py +0 -356
  832. postfinancecheckout-5.1.0/postfinancecheckout/models/document_template_type.py +0 -198
  833. postfinancecheckout-5.1.0/postfinancecheckout/models/document_template_type_group.py +0 -120
  834. postfinancecheckout-5.1.0/postfinancecheckout/models/entity_export_request.py +0 -123
  835. postfinancecheckout-5.1.0/postfinancecheckout/models/entity_query.py +0 -198
  836. postfinancecheckout-5.1.0/postfinancecheckout/models/entity_query_filter.py +0 -201
  837. postfinancecheckout-5.1.0/postfinancecheckout/models/entity_query_filter_type.py +0 -11
  838. postfinancecheckout-5.1.0/postfinancecheckout/models/entity_query_order_by.py +0 -126
  839. postfinancecheckout-5.1.0/postfinancecheckout/models/entity_query_order_by_type.py +0 -10
  840. postfinancecheckout-5.1.0/postfinancecheckout/models/environment.py +0 -10
  841. postfinancecheckout-5.1.0/postfinancecheckout/models/external_transfer_bank_transaction.py +0 -250
  842. postfinancecheckout-5.1.0/postfinancecheckout/models/failure_category.py +0 -13
  843. postfinancecheckout-5.1.0/postfinancecheckout/models/failure_reason.py +0 -198
  844. postfinancecheckout-5.1.0/postfinancecheckout/models/feature.py +0 -302
  845. postfinancecheckout-5.1.0/postfinancecheckout/models/feature_category.py +0 -172
  846. postfinancecheckout-5.1.0/postfinancecheckout/models/gender.py +0 -10
  847. postfinancecheckout-5.1.0/postfinancecheckout/models/human_user.py +0 -388
  848. postfinancecheckout-5.1.0/postfinancecheckout/models/human_user_create.py +0 -96
  849. postfinancecheckout-5.1.0/postfinancecheckout/models/human_user_update.py +0 -128
  850. postfinancecheckout-5.1.0/postfinancecheckout/models/internal_transfer_bank_transaction.py +0 -198
  851. postfinancecheckout-5.1.0/postfinancecheckout/models/invoice_reconciliation_record.py +0 -858
  852. postfinancecheckout-5.1.0/postfinancecheckout/models/invoice_reconciliation_record_invoice_link.py +0 -224
  853. postfinancecheckout-5.1.0/postfinancecheckout/models/invoice_reconciliation_record_rejection_status.py +0 -11
  854. postfinancecheckout-5.1.0/postfinancecheckout/models/invoice_reconciliation_record_state.py +0 -13
  855. postfinancecheckout-5.1.0/postfinancecheckout/models/invoice_reconciliation_record_type.py +0 -146
  856. postfinancecheckout-5.1.0/postfinancecheckout/models/invoice_reimbursement.py +0 -614
  857. postfinancecheckout-5.1.0/postfinancecheckout/models/invoice_reimbursement_state.py +0 -13
  858. postfinancecheckout-5.1.0/postfinancecheckout/models/invoice_reimbursement_with_refund_reference.py +0 -96
  859. postfinancecheckout-5.1.0/postfinancecheckout/models/label.py +0 -198
  860. postfinancecheckout-5.1.0/postfinancecheckout/models/label_descriptor.py +0 -276
  861. postfinancecheckout-5.1.0/postfinancecheckout/models/label_descriptor_category.py +0 -10
  862. postfinancecheckout-5.1.0/postfinancecheckout/models/label_descriptor_group.py +0 -172
  863. postfinancecheckout-5.1.0/postfinancecheckout/models/label_descriptor_type.py +0 -146
  864. postfinancecheckout-5.1.0/postfinancecheckout/models/legal_organization_form.py +0 -198
  865. postfinancecheckout-5.1.0/postfinancecheckout/models/line_item.py +0 -622
  866. postfinancecheckout-5.1.0/postfinancecheckout/models/line_item_attribute.py +0 -124
  867. postfinancecheckout-5.1.0/postfinancecheckout/models/line_item_attribute_create.py +0 -130
  868. postfinancecheckout-5.1.0/postfinancecheckout/models/line_item_create.py +0 -351
  869. postfinancecheckout-5.1.0/postfinancecheckout/models/line_item_reduction.py +0 -148
  870. postfinancecheckout-5.1.0/postfinancecheckout/models/line_item_reduction_create.py +0 -157
  871. postfinancecheckout-5.1.0/postfinancecheckout/models/line_item_type.py +0 -13
  872. postfinancecheckout-5.1.0/postfinancecheckout/models/localized_string.py +0 -120
  873. postfinancecheckout-5.1.0/postfinancecheckout/models/manual_task.py +0 -302
  874. postfinancecheckout-5.1.0/postfinancecheckout/models/manual_task_action.py +0 -172
  875. postfinancecheckout-5.1.0/postfinancecheckout/models/manual_task_action_style.py +0 -11
  876. postfinancecheckout-5.1.0/postfinancecheckout/models/manual_task_state.py +0 -11
  877. postfinancecheckout-5.1.0/postfinancecheckout/models/manual_task_type.py +0 -172
  878. postfinancecheckout-5.1.0/postfinancecheckout/models/one_click_payment_mode.py +0 -11
  879. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_adjustment.py +0 -198
  880. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_adjustment_type.py +0 -146
  881. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_connector.py +0 -432
  882. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_connector_configuration.py +0 -460
  883. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_connector_feature.py +0 -146
  884. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_contract.py +0 -484
  885. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_contract_state.py +0 -13
  886. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_contract_type.py +0 -172
  887. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_information_hash.py +0 -146
  888. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_information_hash_type.py +0 -120
  889. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_initiation_advice_file.py +0 -328
  890. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_initiation_advice_file_state.py +0 -15
  891. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_link.py +0 -564
  892. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_link_active.py +0 -96
  893. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_link_address_handling_mode.py +0 -11
  894. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_link_create.py +0 -151
  895. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_link_protection_mode.py +0 -10
  896. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_link_update.py +0 -414
  897. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_method.py +0 -250
  898. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_method_brand.py +0 -224
  899. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_method_configuration.py +0 -512
  900. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_primary_risk_taker.py +0 -11
  901. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_processor.py +0 -276
  902. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_processor_configuration.py +0 -304
  903. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal.py +0 -408
  904. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_address.py +0 -442
  905. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_configuration.py +0 -252
  906. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_configuration_state.py +0 -12
  907. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_configuration_version.py +0 -432
  908. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_configuration_version_state.py +0 -13
  909. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_dcc_transaction_sum.py +0 -276
  910. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_location.py +0 -252
  911. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_location_state.py +0 -12
  912. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_location_version.py +0 -354
  913. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_location_version_state.py +0 -13
  914. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_receipt_type.py +0 -146
  915. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_state.py +0 -14
  916. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_transaction_sum.py +0 -354
  917. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_transaction_summary.py +0 -328
  918. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_transaction_summary_fetch_request.py +0 -152
  919. postfinancecheckout-5.1.0/postfinancecheckout/models/payment_terminal_type.py +0 -146
  920. postfinancecheckout-5.1.0/postfinancecheckout/models/permission.py +0 -354
  921. postfinancecheckout-5.1.0/postfinancecheckout/models/recurring_indicator.py +0 -12
  922. postfinancecheckout-5.1.0/postfinancecheckout/models/refund.py +0 -908
  923. postfinancecheckout-5.1.0/postfinancecheckout/models/refund_bank_transaction.py +0 -252
  924. postfinancecheckout-5.1.0/postfinancecheckout/models/refund_comment.py +0 -330
  925. postfinancecheckout-5.1.0/postfinancecheckout/models/refund_comment_active.py +0 -128
  926. postfinancecheckout-5.1.0/postfinancecheckout/models/refund_comment_create.py +0 -99
  927. postfinancecheckout-5.1.0/postfinancecheckout/models/refund_create.py +0 -262
  928. postfinancecheckout-5.1.0/postfinancecheckout/models/refund_recovery_bank_transaction.py +0 -278
  929. postfinancecheckout-5.1.0/postfinancecheckout/models/refund_state.py +0 -14
  930. postfinancecheckout-5.1.0/postfinancecheckout/models/refund_type.py +0 -12
  931. postfinancecheckout-5.1.0/postfinancecheckout/models/rendered_document.py +0 -172
  932. postfinancecheckout-5.1.0/postfinancecheckout/models/rendered_terminal_receipt.py +0 -172
  933. postfinancecheckout-5.1.0/postfinancecheckout/models/rendered_terminal_transaction_summary.py +0 -120
  934. postfinancecheckout-5.1.0/postfinancecheckout/models/resource_path.py +0 -254
  935. postfinancecheckout-5.1.0/postfinancecheckout/models/resource_state.py +0 -11
  936. postfinancecheckout-5.1.0/postfinancecheckout/models/rest_address_format.py +0 -172
  937. postfinancecheckout-5.1.0/postfinancecheckout/models/rest_address_format_field.py +0 -18
  938. postfinancecheckout-5.1.0/postfinancecheckout/models/rest_country.py +0 -224
  939. postfinancecheckout-5.1.0/postfinancecheckout/models/rest_country_state.py +0 -198
  940. postfinancecheckout-5.1.0/postfinancecheckout/models/rest_currency.py +0 -172
  941. postfinancecheckout-5.1.0/postfinancecheckout/models/rest_language.py +0 -250
  942. postfinancecheckout-5.1.0/postfinancecheckout/models/role.py +0 -276
  943. postfinancecheckout-5.1.0/postfinancecheckout/models/role_state.py +0 -12
  944. postfinancecheckout-5.1.0/postfinancecheckout/models/sales_channel.py +0 -224
  945. postfinancecheckout-5.1.0/postfinancecheckout/models/scope.py +0 -386
  946. postfinancecheckout-5.1.0/postfinancecheckout/models/server_error.py +0 -146
  947. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_additional_line_item_data.py +0 -10
  948. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_integration.py +0 -698
  949. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_integration_payment_app_version.py +0 -9
  950. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_integration_subscription_app_version.py +0 -11
  951. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_recurring_order.py +0 -434
  952. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_recurring_order_state.py +0 -14
  953. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_recurring_order_update_request.py +0 -120
  954. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscriber.py +0 -332
  955. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscriber_active.py +0 -208
  956. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscriber_creation.py +0 -149
  957. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscriber_state.py +0 -11
  958. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription.py +0 -514
  959. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_address.py +0 -70
  960. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_address_create.py +0 -610
  961. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_billing_interval_unit.py +0 -14
  962. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_creation_request.py +0 -456
  963. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_model_billing_configuration.py +0 -302
  964. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_model_item.py +0 -198
  965. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_model_tax_line.py +0 -120
  966. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_product.py +0 -822
  967. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_product_create.py +0 -157
  968. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_product_pricing_option.py +0 -13
  969. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_product_state.py +0 -14
  970. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_product_update.py +0 -128
  971. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_state.py +0 -14
  972. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_suspension.py +0 -406
  973. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_suspension_create.py +0 -155
  974. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_suspension_initiator.py +0 -10
  975. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_suspension_state.py +0 -10
  976. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_suspension_type.py +0 -10
  977. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_update_addresses_request.py +0 -146
  978. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_update_request.py +0 -198
  979. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_version.py +0 -796
  980. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_version_item.py +0 -198
  981. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_version_item_price_strategy.py +0 -10
  982. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_version_state.py +0 -11
  983. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_weekday.py +0 -15
  984. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_tax_line.py +0 -198
  985. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_transaction.py +0 -304
  986. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_transaction_state.py +0 -13
  987. postfinancecheckout-5.1.0/postfinancecheckout/models/space.py +0 -592
  988. postfinancecheckout-5.1.0/postfinancecheckout/models/space_address.py +0 -476
  989. postfinancecheckout-5.1.0/postfinancecheckout/models/space_address_create.py +0 -476
  990. postfinancecheckout-5.1.0/postfinancecheckout/models/space_create.py +0 -99
  991. postfinancecheckout-5.1.0/postfinancecheckout/models/space_update.py +0 -128
  992. postfinancecheckout-5.1.0/postfinancecheckout/models/space_view.py +0 -254
  993. postfinancecheckout-5.1.0/postfinancecheckout/models/static_value.py +0 -172
  994. postfinancecheckout-5.1.0/postfinancecheckout/models/tax.py +0 -124
  995. postfinancecheckout-5.1.0/postfinancecheckout/models/tax_create.py +0 -130
  996. postfinancecheckout-5.1.0/postfinancecheckout/models/tenant_database.py +0 -148
  997. postfinancecheckout-5.1.0/postfinancecheckout/models/terminal_receipt_fetch_request.py +0 -152
  998. postfinancecheckout-5.1.0/postfinancecheckout/models/terminal_receipt_format.py +0 -10
  999. postfinancecheckout-5.1.0/postfinancecheckout/models/token.py +0 -410
  1000. postfinancecheckout-5.1.0/postfinancecheckout/models/token_create.py +0 -125
  1001. postfinancecheckout-5.1.0/postfinancecheckout/models/token_update.py +0 -128
  1002. postfinancecheckout-5.1.0/postfinancecheckout/models/token_version.py +0 -670
  1003. postfinancecheckout-5.1.0/postfinancecheckout/models/token_version_state.py +0 -11
  1004. postfinancecheckout-5.1.0/postfinancecheckout/models/token_version_type.py +0 -172
  1005. postfinancecheckout-5.1.0/postfinancecheckout/models/tokenization_mode.py +0 -12
  1006. postfinancecheckout-5.1.0/postfinancecheckout/models/tokenized_card_data.py +0 -146
  1007. postfinancecheckout-5.1.0/postfinancecheckout/models/tokenized_card_data_create.py +0 -291
  1008. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction.py +0 -1908
  1009. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_aware_entity.py +0 -146
  1010. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_comment.py +0 -330
  1011. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_comment_active.py +0 -128
  1012. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_comment_create.py +0 -99
  1013. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_completion.py +0 -806
  1014. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_completion_behavior.py +0 -11
  1015. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_completion_mode.py +0 -11
  1016. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_completion_request.py +0 -241
  1017. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_completion_state.py +0 -13
  1018. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_create.py +0 -282
  1019. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_environment_selection_strategy.py +0 -11
  1020. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_group.py +0 -278
  1021. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_group_state.py +0 -11
  1022. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_invoice.py +0 -596
  1023. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_invoice_comment.py +0 -330
  1024. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_invoice_comment_active.py +0 -128
  1025. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_invoice_comment_create.py +0 -99
  1026. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_invoice_replacement.py +0 -236
  1027. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_invoice_state.py +0 -15
  1028. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_line_item_version.py +0 -564
  1029. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_line_item_version_create.py +0 -155
  1030. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_line_item_version_state.py +0 -13
  1031. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_pending.py +0 -128
  1032. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_state.py +0 -18
  1033. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_user_interface_type.py +0 -13
  1034. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_void.py +0 -486
  1035. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_void_mode.py +0 -10
  1036. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_void_state.py +0 -12
  1037. postfinancecheckout-5.1.0/postfinancecheckout/models/two_factor_authentication_type.py +0 -198
  1038. postfinancecheckout-5.1.0/postfinancecheckout/models/user.py +0 -224
  1039. postfinancecheckout-5.1.0/postfinancecheckout/models/user_account_role.py +0 -224
  1040. postfinancecheckout-5.1.0/postfinancecheckout/models/user_space_role.py +0 -198
  1041. postfinancecheckout-5.1.0/postfinancecheckout/models/user_type.py +0 -13
  1042. postfinancecheckout-5.1.0/postfinancecheckout/models/wallet_type.py +0 -146
  1043. postfinancecheckout-5.1.0/postfinancecheckout/models/web_app_confirmation_request.py +0 -96
  1044. postfinancecheckout-5.1.0/postfinancecheckout/models/web_app_confirmation_response.py +0 -198
  1045. postfinancecheckout-5.1.0/postfinancecheckout/models/webhook_encryption_public_key.py +0 -120
  1046. postfinancecheckout-5.1.0/postfinancecheckout/models/webhook_identity.py +0 -226
  1047. postfinancecheckout-5.1.0/postfinancecheckout/models/webhook_listener.py +0 -382
  1048. postfinancecheckout-5.1.0/postfinancecheckout/models/webhook_listener_create.py +0 -154
  1049. postfinancecheckout-5.1.0/postfinancecheckout/models/webhook_listener_entity.py +0 -146
  1050. postfinancecheckout-5.1.0/postfinancecheckout/models/webhook_listener_update.py +0 -128
  1051. postfinancecheckout-5.1.0/postfinancecheckout/models/webhook_url.py +0 -282
  1052. postfinancecheckout-5.1.0/postfinancecheckout/models/webhook_url_create.py +0 -70
  1053. postfinancecheckout-5.1.0/postfinancecheckout/models/webhook_url_update.py +0 -128
  1054. postfinancecheckout-5.1.0/postfinancecheckout/rest.py +0 -319
  1055. postfinancecheckout-5.1.0/postfinancecheckout.egg-info/PKG-INFO +0 -170
  1056. postfinancecheckout-5.1.0/postfinancecheckout.egg-info/SOURCES.txt +0 -417
  1057. postfinancecheckout-5.1.0/postfinancecheckout.egg-info/requires.txt +0 -6
  1058. postfinancecheckout-5.1.0/setup.cfg +0 -4
  1059. postfinancecheckout-5.1.0/setup.py +0 -43
  1060. postfinancecheckout-5.1.0/test/test_charge_attempt_service.py +0 -81
  1061. postfinancecheckout-5.1.0/test/test_refund.py +0 -244
  1062. postfinancecheckout-5.1.0/test/test_transaction_completion_service.py +0 -197
  1063. postfinancecheckout-5.1.0/test/test_transaction_iframe_service.py +0 -40
  1064. postfinancecheckout-5.1.0/test/test_transaction_invoice_service.py +0 -132
  1065. postfinancecheckout-5.1.0/test/test_transaction_lightbox_service.py +0 -40
  1066. postfinancecheckout-5.1.0/test/test_transaction_payment_page_service.py +0 -40
  1067. postfinancecheckout-5.1.0/test/test_transaction_service.py +0 -361
  1068. postfinancecheckout-5.1.0/test/test_webhook_encryption_service.py +0 -78
  1069. {postfinancecheckout-5.1.0 → postfinancecheckout-6.0.0}/postfinancecheckout.egg-info/dependency_links.txt +0 -0
  1070. {postfinancecheckout-5.1.0 → postfinancecheckout-6.0.0}/postfinancecheckout.egg-info/top_level.txt +0 -0
@@ -0,0 +1,44 @@
1
+ Metadata-Version: 2.4
2
+ Name: postfinancecheckout
3
+ Version: 6.0.0
4
+ Summary: PostFinance Checkout API
5
+ Home-page:
6
+ Author: postfinancecheckout
7
+ Author-email: team@openapitools.org
8
+ Keywords: OpenAPI,OpenAPI-Generator,PostFinance Checkout API
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Programming Language :: Python :: 3.9
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Natural Language :: English
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Intended Audience :: Developers
18
+ Classifier: Intended Audience :: Financial and Insurance Industry
19
+ Classifier: Topic :: Office/Business :: Financial :: Point-Of-Sale
20
+ Description-Content-Type: text/markdown
21
+ Requires-Dist: pydantic>=2.10.4
22
+ Requires-Dist: PyJWT>=2.10.1
23
+ Requires-Dist: python-dateutil>=2.9.0.post0
24
+ Requires-Dist: typing-extensions>=4.12.2
25
+ Requires-Dist: urllib3<3,>=2.3
26
+ Requires-Dist: cryptography>=2.0
27
+ Provides-Extra: dev
28
+ Requires-Dist: flake8>=7.1.1; extra == "dev"
29
+ Requires-Dist: mypy>=1.14.1; extra == "dev"
30
+ Requires-Dist: pytest>=3.9; extra == "dev"
31
+ Requires-Dist: tox>=4.23.2; extra == "dev"
32
+ Requires-Dist: types-python-dateutil>=2.9.0.20241206; extra == "dev"
33
+ Dynamic: author
34
+ Dynamic: author-email
35
+ Dynamic: classifier
36
+ Dynamic: description
37
+ Dynamic: description-content-type
38
+ Dynamic: keywords
39
+ Dynamic: provides-extra
40
+ Dynamic: requires-dist
41
+ Dynamic: summary
42
+
43
+ The PostFinance Checkout API allows to create integrations, retrieve data and automate workflows.
44
+