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