postfinancecheckout 5.1.0__tar.gz → 5.2.2__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 (539) hide show
  1. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/LICENSE +1 -1
  2. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/PKG-INFO +12 -2
  3. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/__init__.py +140 -29
  4. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/__init__.py +24 -1
  5. postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_case_level_service_api.py +342 -0
  6. postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_case_service_api.py +560 -0
  7. postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_flow_level_service_api.py +342 -0
  8. postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_flow_service_api.py +342 -0
  9. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_terminal_service_api.py +6 -6
  10. postfinancecheckout-5.2.2/postfinancecheckout/api/subscriber_service_api.py +675 -0
  11. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_affiliate_service_api.py +675 -0
  12. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_charge_service_api.py +560 -0
  13. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_ledger_entry_service_api.py +453 -0
  14. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_metric_service_api.py +675 -0
  15. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_metric_usage_service_api.py +453 -0
  16. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_period_bill_service_api.py +342 -0
  17. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_component_group_service_api.py +675 -0
  18. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_component_service_api.py +675 -0
  19. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_fee_tier_service_api.py +675 -0
  20. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_metered_fee_service_api.py +675 -0
  21. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_period_fee_service_api.py +675 -0
  22. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_retirement_service_api.py +453 -0
  23. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_service_api.py +564 -0
  24. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_setup_fee_service_api.py +675 -0
  25. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_version_retirement_service_api.py +453 -0
  26. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_version_service_api.py +675 -0
  27. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_service_api.py +1254 -0
  28. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_suspension_service_api.py +548 -0
  29. postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_version_service_api.py +342 -0
  30. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/token_service_api.py +6 -6
  31. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api_client.py +3 -3
  32. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/configuration.py +2 -2
  33. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/__init__.py +116 -28
  34. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_payment_link_update.py +49 -23
  35. postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscriber_update.py +308 -0
  36. postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscription_affiliate_update.py +176 -0
  37. postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscription_metric_update.py +120 -0
  38. postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscription_product_active.py +226 -0
  39. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_token_update.py +10 -10
  40. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_transaction_pending.py +34 -34
  41. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_webhook_listener_update.py +1 -27
  42. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/authenticated_card_data.py +2 -2
  43. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/authenticated_card_data_create.py +45 -19
  44. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_account.py +6 -6
  45. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_account_type.py +2 -2
  46. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction.py +26 -26
  47. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_model_billing_configuration.py → postfinancecheckout-5.2.2/postfinancecheckout/models/billing_configuration.py +39 -39
  48. postfinancecheckout-5.2.2/postfinancecheckout/models/billing_cycle_model.py +230 -0
  49. postfinancecheckout-5.2.2/postfinancecheckout/models/billing_cycle_type.py +12 -0
  50. postfinancecheckout-5.2.2/postfinancecheckout/models/billing_day_customization.py +10 -0
  51. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/card_cryptogram.py +19 -19
  52. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/card_cryptogram_create.py +19 -22
  53. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/cardholder_authentication.py +10 -10
  54. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/cardholder_authentication_create.py +10 -10
  55. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge.py +72 -22
  56. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_attempt.py +124 -48
  57. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_bank_transaction.py +94 -18
  58. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow.py +6 -6
  59. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level.py +94 -18
  60. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level_configuration.py +10 -10
  61. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level_configuration_type.py +2 -2
  62. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level_payment_link.py +60 -10
  63. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/completion_line_item.py +6 -6
  64. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/completion_line_item_create.py +6 -6
  65. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/condition.py +4 -4
  66. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/connector_invocation.py +62 -12
  67. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/currency_bank_account.py +6 -6
  68. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/delivery_indication.py +98 -22
  69. postfinancecheckout-5.2.2/postfinancecheckout/models/displayable_day_of_week.py +15 -0
  70. postfinancecheckout-5.2.2/postfinancecheckout/models/displayable_month.py +20 -0
  71. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/document_template.py +12 -12
  72. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/document_template_type.py +8 -8
  73. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/document_template_type_group.py +2 -2
  74. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case.py +406 -0
  75. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case_level.py +510 -0
  76. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case_level_state.py +13 -0
  77. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case_state.py +14 -0
  78. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_condition.py +252 -0
  79. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_condition_type.py +146 -0
  80. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow.py +302 -0
  81. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow_level.py +408 -0
  82. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow_level_processor.py +172 -0
  83. postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow_type.py +172 -0
  84. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/external_transfer_bank_transaction.py +8 -8
  85. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/failure_reason.py +3 -29
  86. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/feature.py +2 -2
  87. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/internal_transfer_bank_transaction.py +4 -4
  88. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record.py +82 -6
  89. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reimbursement.py +27 -1
  90. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_model_item.py → postfinancecheckout-5.2.2/postfinancecheckout/models/item.py +26 -26
  91. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label.py +7 -59
  92. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item.py +42 -42
  93. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_attribute.py +4 -4
  94. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_attribute_create.py +4 -4
  95. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_create.py +20 -20
  96. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_reduction.py +6 -6
  97. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_reduction_create.py +6 -6
  98. postfinancecheckout-5.2.2/postfinancecheckout/models/pan_type.py +16 -0
  99. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_adjustment.py +37 -11
  100. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_connector.py +21 -47
  101. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_connector_configuration.py +20 -20
  102. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_connector_feature.py +3 -29
  103. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_contract.py +31 -31
  104. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_contract_type.py +1 -27
  105. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_information_hash.py +4 -4
  106. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_information_hash_type.py +2 -2
  107. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link.py +55 -29
  108. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_create.py +8 -5
  109. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_update.py +49 -23
  110. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_method.py +8 -8
  111. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_method_brand.py +6 -6
  112. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_method_configuration.py +24 -24
  113. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_processor.py +9 -35
  114. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_processor_configuration.py +8 -8
  115. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal.py +43 -17
  116. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_configuration.py +4 -4
  117. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_configuration_version.py +16 -16
  118. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_location.py +4 -4
  119. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_location_version.py +10 -10
  120. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_transaction_summary.py +55 -3
  121. postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_transaction_summary_reference.py +172 -0
  122. postfinancecheckout-5.2.2/postfinancecheckout/models/persistable_currency_amount.py +120 -0
  123. postfinancecheckout-5.2.2/postfinancecheckout/models/persistable_currency_amount_update.py +120 -0
  124. postfinancecheckout-5.2.2/postfinancecheckout/models/product_fee_type.py +11 -0
  125. postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_fee.py +302 -0
  126. postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_fee_update.py +256 -0
  127. postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_tier_fee.py +198 -0
  128. postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_tier_fee_update.py +204 -0
  129. postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_tier_pricing.py +10 -0
  130. postfinancecheckout-5.2.2/postfinancecheckout/models/product_period_fee.py +328 -0
  131. postfinancecheckout-5.2.2/postfinancecheckout/models/product_period_fee_update.py +282 -0
  132. postfinancecheckout-5.2.2/postfinancecheckout/models/product_setup_fee.py +328 -0
  133. postfinancecheckout-5.2.2/postfinancecheckout/models/product_setup_fee_update.py +282 -0
  134. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund.py +50 -50
  135. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_bank_transaction.py +92 -16
  136. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_comment.py +2 -2
  137. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_comment_create.py +2 -2
  138. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_create.py +14 -14
  139. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_recovery_bank_transaction.py +94 -18
  140. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rendered_document.py +8 -8
  141. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rendered_terminal_receipt.py +8 -8
  142. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_country.py +2 -2
  143. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_country_state.py +1 -27
  144. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/sales_channel.py +3 -55
  145. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/scope.py +57 -1
  146. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_recurring_order.py +134 -6
  147. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscriber.py +29 -3
  148. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscriber_active.py +29 -3
  149. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscriber_creation.py +27 -1
  150. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_creation_request.py +8 -8
  151. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product.py +53 -1
  152. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product_create.py +59 -7
  153. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_update_request.py +6 -6
  154. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_transaction.py +149 -21
  155. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_integration.py → postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_v1_integration.py +136 -110
  156. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_create.py +27 -1
  157. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_view.py +4 -4
  158. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/static_value.py +2 -2
  159. postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber.py +464 -0
  160. postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber_active.py +96 -0
  161. postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber_create.py +125 -0
  162. postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber_update.py +366 -0
  163. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription.py +592 -0
  164. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate.py +336 -0
  165. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_create.py +132 -0
  166. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_deleted.py +70 -0
  167. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_deleting.py +70 -0
  168. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_inactive.py +70 -0
  169. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_update.py +234 -0
  170. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_change_request.py +233 -0
  171. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge.py +624 -0
  172. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_create.py +269 -0
  173. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_processing_type.py +10 -0
  174. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_state.py +13 -0
  175. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_type.py +10 -0
  176. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_component_configuration.py +198 -0
  177. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_component_reference_configuration.py +120 -0
  178. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_create_request.py +207 -0
  179. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_ledger_entry.py +646 -0
  180. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_ledger_entry_create.py +295 -0
  181. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_ledger_entry_state.py +11 -0
  182. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric.py +276 -0
  183. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_active.py +70 -0
  184. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_create.py +99 -0
  185. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_type.py +172 -0
  186. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_update.py +178 -0
  187. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_usage_report.py +356 -0
  188. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_usage_report_create.py +212 -0
  189. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_pending.py +150 -0
  190. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_period_bill.py +354 -0
  191. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_period_bill_state.py +10 -0
  192. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product.py +384 -0
  193. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_active.py +128 -0
  194. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component.py +432 -0
  195. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_group.py +250 -0
  196. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_group_update.py +230 -0
  197. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_reference.py +254 -0
  198. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_reference_state.py +12 -0
  199. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_update.py +412 -0
  200. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_create.py +101 -0
  201. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_retirement.py +250 -0
  202. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_retirement_create.py +149 -0
  203. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_state.py +13 -0
  204. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version.py +642 -0
  205. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_pending.py +386 -0
  206. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_retirement.py +250 -0
  207. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_retirement_create.py +149 -0
  208. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_state.py +13 -0
  209. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_state.py +16 -0
  210. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension.py +434 -0
  211. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_action.py +10 -0
  212. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_create.py +183 -0
  213. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_reason.py +11 -0
  214. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_running.py +70 -0
  215. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_state.py +10 -0
  216. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_update.py +206 -0
  217. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_update_request.py +96 -0
  218. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_version.py +562 -0
  219. postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_version_state.py +14 -0
  220. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tax.py +4 -4
  221. postfinancecheckout-5.2.2/postfinancecheckout/models/tax_calculation.py +10 -0
  222. postfinancecheckout-5.2.2/postfinancecheckout/models/tax_class.py +226 -0
  223. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tax_create.py +4 -4
  224. postfinancecheckout-5.1.0/postfinancecheckout/models/shopify_subscription_model_tax_line.py → postfinancecheckout-5.2.2/postfinancecheckout/models/tax_line.py +11 -11
  225. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token.py +12 -12
  226. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_create.py +2 -2
  227. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_version.py +32 -32
  228. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_version_type.py +2 -2
  229. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tokenized_card_data.py +33 -7
  230. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tokenized_card_data_create.py +43 -17
  231. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction.py +122 -122
  232. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_comment.py +2 -2
  233. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_comment_create.py +2 -2
  234. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion.py +128 -52
  235. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion_request.py +2 -2
  236. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_create.py +16 -16
  237. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_group.py +6 -6
  238. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice.py +114 -38
  239. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_comment.py +2 -2
  240. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_comment_create.py +2 -2
  241. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_replacement.py +12 -12
  242. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_line_item_version.py +108 -32
  243. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_line_item_version_create.py +6 -6
  244. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_void.py +104 -28
  245. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/user_account_role.py +8 -8
  246. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/user_space_role.py +6 -6
  247. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/wallet_type.py +79 -1
  248. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/web_app_confirmation_response.py +10 -10
  249. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_listener.py +2 -2
  250. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/PKG-INFO +12 -2
  251. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/SOURCES.txt +124 -13
  252. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/setup.py +1 -1
  253. postfinancecheckout-5.1.0/postfinancecheckout/api/analytics_query_service_api.py +0 -639
  254. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_query.py +0 -231
  255. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_query_execution.py +0 -380
  256. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_query_execution_state.py +0 -12
  257. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_query_result_batch.py +0 -172
  258. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_schema_column.py +0 -276
  259. postfinancecheckout-5.1.0/postfinancecheckout/models/analytics_schema_table.py +0 -146
  260. postfinancecheckout-5.1.0/postfinancecheckout/models/card_cryptogram_type.py +0 -9
  261. postfinancecheckout-5.1.0/postfinancecheckout/models/transaction_aware_entity.py +0 -146
  262. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/README.md +0 -0
  263. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/account_service_api.py +0 -0
  264. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/application_user_service_api.py +0 -0
  265. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/bank_account_service_api.py +0 -0
  266. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/bank_transaction_service_api.py +0 -0
  267. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/card_processing_service_api.py +0 -0
  268. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_attempt_service_api.py +0 -0
  269. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_bank_transaction_service_api.py +0 -0
  270. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_flow_level_payment_link_service_api.py +0 -0
  271. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_flow_level_service_api.py +0 -0
  272. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_flow_service_api.py +0 -0
  273. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/condition_type_service_api.py +0 -0
  274. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/country_service_api.py +0 -0
  275. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/country_state_service_api.py +0 -0
  276. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/currency_bank_account_service_api.py +0 -0
  277. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/currency_service_api.py +0 -0
  278. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/customer_address_service_api.py +0 -0
  279. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/customer_comment_service_api.py +0 -0
  280. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/customer_service_api.py +0 -0
  281. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/delivery_indication_service_api.py +0 -0
  282. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/document_template_service_api.py +0 -0
  283. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/document_template_type_service_api.py +0 -0
  284. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/external_transfer_bank_transaction_service_api.py +0 -0
  285. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/human_user_service_api.py +0 -0
  286. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/internal_transfer_bank_transaction_service_api.py +0 -0
  287. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/invoice_reconciliation_record_invoice_link_service_api.py +0 -0
  288. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/invoice_reconciliation_record_service_api.py +0 -0
  289. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/invoice_reimbursement_service_api.py +0 -0
  290. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/label_description_group_service_api.py +0 -0
  291. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/label_description_service_api.py +0 -0
  292. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/language_service_api.py +0 -0
  293. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/legal_organization_form_service_api.py +0 -0
  294. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/manual_task_service_api.py +0 -0
  295. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_connector_configuration_service_api.py +0 -0
  296. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_connector_service_api.py +0 -0
  297. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_link_service_api.py +0 -0
  298. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_method_brand_service_api.py +0 -0
  299. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_method_configuration_service_api.py +0 -0
  300. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_method_service_api.py +0 -0
  301. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_processor_configuration_service_api.py +0 -0
  302. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_processor_service_api.py +0 -0
  303. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_terminal_till_service_api.py +0 -0
  304. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_terminal_transaction_summary_service_api.py +0 -0
  305. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/permission_service_api.py +0 -0
  306. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/refund_bank_transaction_service_api.py +0 -0
  307. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/refund_comment_service_api.py +0 -0
  308. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/refund_recovery_bank_transaction_service_api.py +0 -0
  309. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/refund_service_api.py +0 -0
  310. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_recurring_order_service_api.py +0 -0
  311. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscriber_service_api.py +0 -0
  312. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscription_product_service_api.py +0 -0
  313. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscription_service_api.py +0 -0
  314. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscription_suspension_service_api.py +0 -0
  315. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscription_version_service_api.py +0 -0
  316. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_transaction_service_api.py +0 -0
  317. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/space_service_api.py +0 -0
  318. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/static_value_service_api.py +0 -0
  319. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/token_version_service_api.py +0 -0
  320. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_comment_service_api.py +0 -0
  321. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_completion_service_api.py +0 -0
  322. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_iframe_service_api.py +0 -0
  323. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_invoice_comment_service_api.py +0 -0
  324. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_invoice_service_api.py +0 -0
  325. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_lightbox_service_api.py +0 -0
  326. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_line_item_version_service_api.py +0 -0
  327. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_mobile_sdk_service_api.py +0 -0
  328. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_payment_page_service_api.py +0 -0
  329. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_service_api.py +0 -0
  330. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_terminal_service_api.py +0 -0
  331. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_void_service_api.py +0 -0
  332. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/user_account_role_service_api.py +0 -0
  333. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/user_space_role_service_api.py +0 -0
  334. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/web_app_service_api.py +0 -0
  335. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/webhook_encryption_service_api.py +0 -0
  336. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/webhook_listener_service_api.py +0 -0
  337. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/webhook_url_service_api.py +0 -0
  338. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/encryption_util.py +0 -0
  339. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_account_update.py +0 -0
  340. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_application_user_update.py +0 -0
  341. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_customer_active.py +0 -0
  342. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_customer_address_active.py +0 -0
  343. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_customer_comment_active.py +0 -0
  344. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_human_user_update.py +0 -0
  345. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_refund_comment_active.py +0 -0
  346. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_shopify_subscription_product_update.py +0 -0
  347. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_space_update.py +0 -0
  348. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_transaction_comment_active.py +0 -0
  349. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_transaction_invoice_comment_active.py +0 -0
  350. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_webhook_url_update.py +0 -0
  351. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account.py +0 -0
  352. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account_create.py +0 -0
  353. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account_state.py +0 -0
  354. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account_type.py +0 -0
  355. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account_update.py +0 -0
  356. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/address.py +0 -0
  357. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/address_create.py +0 -0
  358. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/application_user.py +0 -0
  359. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/application_user_create.py +0 -0
  360. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/application_user_create_with_mac_key.py +0 -0
  361. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/application_user_update.py +0 -0
  362. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_account_environment.py +0 -0
  363. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_account_state.py +0 -0
  364. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction_flow_direction.py +0 -0
  365. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction_source.py +0 -0
  366. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction_state.py +0 -0
  367. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction_type.py +0 -0
  368. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/card_authentication_response.py +0 -0
  369. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/card_authentication_version.py +0 -0
  370. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_attempt_environment.py +0 -0
  371. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_attempt_state.py +0 -0
  372. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level_state.py +0 -0
  373. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_state.py +0 -0
  374. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_type.py +0 -0
  375. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/client_error.py +0 -0
  376. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/client_error_type.py +0 -0
  377. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/condition_type.py +0 -0
  378. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/connector_invocation_stage.py +0 -0
  379. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/creation_entity_state.py +0 -0
  380. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/criteria_operator.py +0 -0
  381. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer.py +0 -0
  382. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_active.py +0 -0
  383. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_address.py +0 -0
  384. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_address_active.py +0 -0
  385. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_address_create.py +0 -0
  386. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_address_type.py +0 -0
  387. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_comment.py +0 -0
  388. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_comment_active.py +0 -0
  389. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_comment_create.py +0 -0
  390. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_create.py +0 -0
  391. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_postal_address.py +0 -0
  392. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_postal_address_create.py +0 -0
  393. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customers_presence.py +0 -0
  394. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/data_collection_type.py +0 -0
  395. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/delivery_indication_decision_reason.py +0 -0
  396. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/delivery_indication_state.py +0 -0
  397. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_export_request.py +0 -0
  398. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query.py +0 -0
  399. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query_filter.py +0 -0
  400. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query_filter_type.py +0 -0
  401. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query_order_by.py +0 -0
  402. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query_order_by_type.py +0 -0
  403. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/environment.py +0 -0
  404. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/failure_category.py +0 -0
  405. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/feature_category.py +0 -0
  406. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/gender.py +0 -0
  407. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/human_user.py +0 -0
  408. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/human_user_create.py +0 -0
  409. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/human_user_update.py +0 -0
  410. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record_invoice_link.py +0 -0
  411. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record_rejection_status.py +0 -0
  412. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record_state.py +0 -0
  413. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record_type.py +0 -0
  414. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reimbursement_state.py +0 -0
  415. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reimbursement_with_refund_reference.py +0 -0
  416. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label_descriptor.py +0 -0
  417. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label_descriptor_category.py +0 -0
  418. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label_descriptor_group.py +0 -0
  419. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label_descriptor_type.py +0 -0
  420. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/legal_organization_form.py +0 -0
  421. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_type.py +0 -0
  422. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/localized_string.py +0 -0
  423. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task.py +0 -0
  424. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task_action.py +0 -0
  425. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task_action_style.py +0 -0
  426. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task_state.py +0 -0
  427. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task_type.py +0 -0
  428. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/one_click_payment_mode.py +0 -0
  429. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_adjustment_type.py +0 -0
  430. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_contract_state.py +0 -0
  431. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_initiation_advice_file.py +0 -0
  432. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_initiation_advice_file_state.py +0 -0
  433. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_active.py +0 -0
  434. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_address_handling_mode.py +0 -0
  435. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_protection_mode.py +0 -0
  436. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_primary_risk_taker.py +0 -0
  437. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_address.py +0 -0
  438. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_configuration_state.py +0 -0
  439. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_configuration_version_state.py +0 -0
  440. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_dcc_transaction_sum.py +0 -0
  441. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_location_state.py +0 -0
  442. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_location_version_state.py +0 -0
  443. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_receipt_type.py +0 -0
  444. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_state.py +0 -0
  445. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_transaction_sum.py +0 -0
  446. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_transaction_summary_fetch_request.py +0 -0
  447. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_type.py +0 -0
  448. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/permission.py +0 -0
  449. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/recurring_indicator.py +0 -0
  450. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_comment_active.py +0 -0
  451. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_state.py +0 -0
  452. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_type.py +0 -0
  453. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rendered_terminal_transaction_summary.py +0 -0
  454. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/resource_path.py +0 -0
  455. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/resource_state.py +0 -0
  456. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_address_format.py +0 -0
  457. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_address_format_field.py +0 -0
  458. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_currency.py +0 -0
  459. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_language.py +0 -0
  460. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/role.py +0 -0
  461. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/role_state.py +0 -0
  462. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/server_error.py +0 -0
  463. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_additional_line_item_data.py +0 -0
  464. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_integration_payment_app_version.py +0 -0
  465. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_integration_subscription_app_version.py +0 -0
  466. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_recurring_order_state.py +0 -0
  467. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_recurring_order_update_request.py +0 -0
  468. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscriber_state.py +0 -0
  469. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription.py +0 -0
  470. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_address.py +0 -0
  471. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_address_create.py +0 -0
  472. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_billing_interval_unit.py +0 -0
  473. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product_pricing_option.py +0 -0
  474. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product_state.py +0 -0
  475. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product_update.py +0 -0
  476. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_state.py +0 -0
  477. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension.py +0 -0
  478. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension_create.py +0 -0
  479. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension_initiator.py +0 -0
  480. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension_state.py +0 -0
  481. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension_type.py +0 -0
  482. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_update_addresses_request.py +0 -0
  483. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_version.py +0 -0
  484. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_version_item.py +0 -0
  485. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_version_item_price_strategy.py +0 -0
  486. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_version_state.py +0 -0
  487. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_weekday.py +0 -0
  488. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_tax_line.py +0 -0
  489. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_transaction_state.py +0 -0
  490. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space.py +0 -0
  491. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_address.py +0 -0
  492. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_address_create.py +0 -0
  493. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_update.py +0 -0
  494. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tenant_database.py +0 -0
  495. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/terminal_receipt_fetch_request.py +0 -0
  496. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/terminal_receipt_format.py +0 -0
  497. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_update.py +0 -0
  498. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_version_state.py +0 -0
  499. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tokenization_mode.py +0 -0
  500. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_comment_active.py +0 -0
  501. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion_behavior.py +0 -0
  502. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion_mode.py +0 -0
  503. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion_state.py +0 -0
  504. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_environment_selection_strategy.py +0 -0
  505. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_group_state.py +0 -0
  506. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_comment_active.py +0 -0
  507. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_state.py +0 -0
  508. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_line_item_version_state.py +0 -0
  509. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_pending.py +0 -0
  510. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_state.py +0 -0
  511. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_user_interface_type.py +0 -0
  512. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_void_mode.py +0 -0
  513. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_void_state.py +0 -0
  514. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/two_factor_authentication_type.py +0 -0
  515. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/user.py +0 -0
  516. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/user_type.py +0 -0
  517. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/web_app_confirmation_request.py +0 -0
  518. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_encryption_public_key.py +0 -0
  519. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_identity.py +0 -0
  520. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_listener_create.py +0 -0
  521. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_listener_entity.py +0 -0
  522. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_listener_update.py +0 -0
  523. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_url.py +0 -0
  524. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_url_create.py +0 -0
  525. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_url_update.py +0 -0
  526. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout/rest.py +0 -0
  527. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/dependency_links.txt +0 -0
  528. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/requires.txt +0 -0
  529. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/top_level.txt +0 -0
  530. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/setup.cfg +0 -0
  531. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/test/test_charge_attempt_service.py +0 -0
  532. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/test/test_refund.py +0 -0
  533. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/test/test_transaction_completion_service.py +0 -0
  534. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/test/test_transaction_iframe_service.py +0 -0
  535. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/test/test_transaction_invoice_service.py +0 -0
  536. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/test/test_transaction_lightbox_service.py +0 -0
  537. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/test/test_transaction_payment_page_service.py +0 -0
  538. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/test/test_transaction_service.py +0 -0
  539. {postfinancecheckout-5.1.0 → postfinancecheckout-5.2.2}/test/test_webhook_encryption_service.py +0 -0
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2024 wallee AG
189
+ Copyright 2025 wallee AG
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: postfinancecheckout
3
- Version: 5.1.0
3
+ Version: 5.2.2
4
4
  Summary: SDK that allows you to access PostFinance Checkout
5
5
  Author: Wallee AG
6
6
  License: Apache-2.0
@@ -21,6 +21,16 @@ Requires-Dist: python_dateutil>=2.8.2
21
21
  Requires-Dist: setuptools>=68.0.0
22
22
  Requires-Dist: urllib3>=2.0.7
23
23
  Requires-Dist: cryptography>=2.0
24
+ Dynamic: author
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: keywords
29
+ Dynamic: license
30
+ Dynamic: license-file
31
+ Dynamic: requires-dist
32
+ Dynamic: requires-python
33
+ Dynamic: summary
24
34
 
25
35
  [![Build Status](https://travis-ci.org/pfpayments/python-sdk.svg?branch=master)](https://travis-ci.org/pfpayments/python-sdk)
26
36
 
@@ -3,7 +3,6 @@
3
3
  from __future__ import absolute_import
4
4
 
5
5
  from postfinancecheckout.api.account_service_api import AccountServiceApi
6
- from postfinancecheckout.api.analytics_query_service_api import AnalyticsQueryServiceApi
7
6
  from postfinancecheckout.api.application_user_service_api import ApplicationUserServiceApi
8
7
  from postfinancecheckout.api.bank_account_service_api import BankAccountServiceApi
9
8
  from postfinancecheckout.api.bank_transaction_service_api import BankTransactionServiceApi
@@ -24,6 +23,10 @@ from postfinancecheckout.api.customer_service_api import CustomerServiceApi
24
23
  from postfinancecheckout.api.delivery_indication_service_api import DeliveryIndicationServiceApi
25
24
  from postfinancecheckout.api.document_template_service_api import DocumentTemplateServiceApi
26
25
  from postfinancecheckout.api.document_template_type_service_api import DocumentTemplateTypeServiceApi
26
+ from postfinancecheckout.api.dunning_case_level_service_api import DunningCaseLevelServiceApi
27
+ from postfinancecheckout.api.dunning_case_service_api import DunningCaseServiceApi
28
+ from postfinancecheckout.api.dunning_flow_level_service_api import DunningFlowLevelServiceApi
29
+ from postfinancecheckout.api.dunning_flow_service_api import DunningFlowServiceApi
27
30
  from postfinancecheckout.api.external_transfer_bank_transaction_service_api import ExternalTransferBankTransactionServiceApi
28
31
  from postfinancecheckout.api.human_user_service_api import HumanUserServiceApi
29
32
  from postfinancecheckout.api.internal_transfer_bank_transaction_service_api import InternalTransferBankTransactionServiceApi
@@ -60,6 +63,26 @@ from postfinancecheckout.api.shopify_subscription_version_service_api import Sho
60
63
  from postfinancecheckout.api.shopify_transaction_service_api import ShopifyTransactionServiceApi
61
64
  from postfinancecheckout.api.space_service_api import SpaceServiceApi
62
65
  from postfinancecheckout.api.static_value_service_api import StaticValueServiceApi
66
+ from postfinancecheckout.api.subscriber_service_api import SubscriberServiceApi
67
+ from postfinancecheckout.api.subscription_affiliate_service_api import SubscriptionAffiliateServiceApi
68
+ from postfinancecheckout.api.subscription_charge_service_api import SubscriptionChargeServiceApi
69
+ from postfinancecheckout.api.subscription_ledger_entry_service_api import SubscriptionLedgerEntryServiceApi
70
+ from postfinancecheckout.api.subscription_metric_service_api import SubscriptionMetricServiceApi
71
+ from postfinancecheckout.api.subscription_metric_usage_service_api import SubscriptionMetricUsageServiceApi
72
+ from postfinancecheckout.api.subscription_period_bill_service_api import SubscriptionPeriodBillServiceApi
73
+ from postfinancecheckout.api.subscription_product_component_group_service_api import SubscriptionProductComponentGroupServiceApi
74
+ from postfinancecheckout.api.subscription_product_component_service_api import SubscriptionProductComponentServiceApi
75
+ from postfinancecheckout.api.subscription_product_fee_tier_service_api import SubscriptionProductFeeTierServiceApi
76
+ from postfinancecheckout.api.subscription_product_metered_fee_service_api import SubscriptionProductMeteredFeeServiceApi
77
+ from postfinancecheckout.api.subscription_product_period_fee_service_api import SubscriptionProductPeriodFeeServiceApi
78
+ from postfinancecheckout.api.subscription_product_retirement_service_api import SubscriptionProductRetirementServiceApi
79
+ from postfinancecheckout.api.subscription_product_service_api import SubscriptionProductServiceApi
80
+ from postfinancecheckout.api.subscription_product_setup_fee_service_api import SubscriptionProductSetupFeeServiceApi
81
+ from postfinancecheckout.api.subscription_product_version_retirement_service_api import SubscriptionProductVersionRetirementServiceApi
82
+ from postfinancecheckout.api.subscription_product_version_service_api import SubscriptionProductVersionServiceApi
83
+ from postfinancecheckout.api.subscription_service_api import SubscriptionServiceApi
84
+ from postfinancecheckout.api.subscription_suspension_service_api import SubscriptionSuspensionServiceApi
85
+ from postfinancecheckout.api.subscription_version_service_api import SubscriptionVersionServiceApi
63
86
  from postfinancecheckout.api.token_service_api import TokenServiceApi
64
87
  from postfinancecheckout.api.token_version_service_api import TokenVersionServiceApi
65
88
  from postfinancecheckout.api.transaction_comment_service_api import TransactionCommentServiceApi
@@ -95,6 +118,10 @@ from postfinancecheckout.models.abstract_payment_link_update import AbstractPaym
95
118
  from postfinancecheckout.models.abstract_refund_comment_active import AbstractRefundCommentActive
96
119
  from postfinancecheckout.models.abstract_shopify_subscription_product_update import AbstractShopifySubscriptionProductUpdate
97
120
  from postfinancecheckout.models.abstract_space_update import AbstractSpaceUpdate
121
+ from postfinancecheckout.models.abstract_subscriber_update import AbstractSubscriberUpdate
122
+ from postfinancecheckout.models.abstract_subscription_affiliate_update import AbstractSubscriptionAffiliateUpdate
123
+ from postfinancecheckout.models.abstract_subscription_metric_update import AbstractSubscriptionMetricUpdate
124
+ from postfinancecheckout.models.abstract_subscription_product_active import AbstractSubscriptionProductActive
98
125
  from postfinancecheckout.models.abstract_token_update import AbstractTokenUpdate
99
126
  from postfinancecheckout.models.abstract_transaction_comment_active import AbstractTransactionCommentActive
100
127
  from postfinancecheckout.models.abstract_transaction_invoice_comment_active import AbstractTransactionInvoiceCommentActive
@@ -106,12 +133,6 @@ from postfinancecheckout.models.account_state import AccountState
106
133
  from postfinancecheckout.models.account_type import AccountType
107
134
  from postfinancecheckout.models.address import Address
108
135
  from postfinancecheckout.models.address_create import AddressCreate
109
- from postfinancecheckout.models.analytics_query import AnalyticsQuery
110
- from postfinancecheckout.models.analytics_query_execution import AnalyticsQueryExecution
111
- from postfinancecheckout.models.analytics_query_execution_state import AnalyticsQueryExecutionState
112
- from postfinancecheckout.models.analytics_query_result_batch import AnalyticsQueryResultBatch
113
- from postfinancecheckout.models.analytics_schema_column import AnalyticsSchemaColumn
114
- from postfinancecheckout.models.analytics_schema_table import AnalyticsSchemaTable
115
136
  from postfinancecheckout.models.authenticated_card_data_create import AuthenticatedCardDataCreate
116
137
  from postfinancecheckout.models.bank_account import BankAccount
117
138
  from postfinancecheckout.models.bank_account_environment import BankAccountEnvironment
@@ -122,18 +143,26 @@ from postfinancecheckout.models.bank_transaction_flow_direction import BankTrans
122
143
  from postfinancecheckout.models.bank_transaction_source import BankTransactionSource
123
144
  from postfinancecheckout.models.bank_transaction_state import BankTransactionState
124
145
  from postfinancecheckout.models.bank_transaction_type import BankTransactionType
146
+ from postfinancecheckout.models.billing_configuration import BillingConfiguration
147
+ from postfinancecheckout.models.billing_cycle_model import BillingCycleModel
148
+ from postfinancecheckout.models.billing_cycle_type import BillingCycleType
149
+ from postfinancecheckout.models.billing_day_customization import BillingDayCustomization
125
150
  from postfinancecheckout.models.card_authentication_response import CardAuthenticationResponse
126
151
  from postfinancecheckout.models.card_authentication_version import CardAuthenticationVersion
127
152
  from postfinancecheckout.models.card_cryptogram import CardCryptogram
128
153
  from postfinancecheckout.models.card_cryptogram_create import CardCryptogramCreate
129
- from postfinancecheckout.models.card_cryptogram_type import CardCryptogramType
130
154
  from postfinancecheckout.models.cardholder_authentication import CardholderAuthentication
131
155
  from postfinancecheckout.models.cardholder_authentication_create import CardholderAuthenticationCreate
156
+ from postfinancecheckout.models.charge import Charge
157
+ from postfinancecheckout.models.charge_attempt import ChargeAttempt
132
158
  from postfinancecheckout.models.charge_attempt_environment import ChargeAttemptEnvironment
133
159
  from postfinancecheckout.models.charge_attempt_state import ChargeAttemptState
160
+ from postfinancecheckout.models.charge_bank_transaction import ChargeBankTransaction
134
161
  from postfinancecheckout.models.charge_flow import ChargeFlow
162
+ from postfinancecheckout.models.charge_flow_level import ChargeFlowLevel
135
163
  from postfinancecheckout.models.charge_flow_level_configuration import ChargeFlowLevelConfiguration
136
164
  from postfinancecheckout.models.charge_flow_level_configuration_type import ChargeFlowLevelConfigurationType
165
+ from postfinancecheckout.models.charge_flow_level_payment_link import ChargeFlowLevelPaymentLink
137
166
  from postfinancecheckout.models.charge_flow_level_state import ChargeFlowLevelState
138
167
  from postfinancecheckout.models.charge_state import ChargeState
139
168
  from postfinancecheckout.models.charge_type import ChargeType
@@ -143,6 +172,7 @@ from postfinancecheckout.models.completion_line_item import CompletionLineItem
143
172
  from postfinancecheckout.models.completion_line_item_create import CompletionLineItemCreate
144
173
  from postfinancecheckout.models.condition import Condition
145
174
  from postfinancecheckout.models.condition_type import ConditionType
175
+ from postfinancecheckout.models.connector_invocation import ConnectorInvocation
146
176
  from postfinancecheckout.models.connector_invocation_stage import ConnectorInvocationStage
147
177
  from postfinancecheckout.models.creation_entity_state import CreationEntityState
148
178
  from postfinancecheckout.models.criteria_operator import CriteriaOperator
@@ -155,11 +185,24 @@ from postfinancecheckout.models.customer_postal_address import CustomerPostalAdd
155
185
  from postfinancecheckout.models.customer_postal_address_create import CustomerPostalAddressCreate
156
186
  from postfinancecheckout.models.customers_presence import CustomersPresence
157
187
  from postfinancecheckout.models.data_collection_type import DataCollectionType
188
+ from postfinancecheckout.models.delivery_indication import DeliveryIndication
158
189
  from postfinancecheckout.models.delivery_indication_decision_reason import DeliveryIndicationDecisionReason
159
190
  from postfinancecheckout.models.delivery_indication_state import DeliveryIndicationState
191
+ from postfinancecheckout.models.displayable_day_of_week import DisplayableDayOfWeek
192
+ from postfinancecheckout.models.displayable_month import DisplayableMonth
160
193
  from postfinancecheckout.models.document_template import DocumentTemplate
161
194
  from postfinancecheckout.models.document_template_type import DocumentTemplateType
162
195
  from postfinancecheckout.models.document_template_type_group import DocumentTemplateTypeGroup
196
+ from postfinancecheckout.models.dunning_case import DunningCase
197
+ from postfinancecheckout.models.dunning_case_level import DunningCaseLevel
198
+ from postfinancecheckout.models.dunning_case_level_state import DunningCaseLevelState
199
+ from postfinancecheckout.models.dunning_case_state import DunningCaseState
200
+ from postfinancecheckout.models.dunning_condition import DunningCondition
201
+ from postfinancecheckout.models.dunning_condition_type import DunningConditionType
202
+ from postfinancecheckout.models.dunning_flow import DunningFlow
203
+ from postfinancecheckout.models.dunning_flow_level import DunningFlowLevel
204
+ from postfinancecheckout.models.dunning_flow_level_processor import DunningFlowLevelProcessor
205
+ from postfinancecheckout.models.dunning_flow_type import DunningFlowType
163
206
  from postfinancecheckout.models.entity_export_request import EntityExportRequest
164
207
  from postfinancecheckout.models.entity_query import EntityQuery
165
208
  from postfinancecheckout.models.entity_query_filter import EntityQueryFilter
@@ -175,12 +218,14 @@ from postfinancecheckout.models.feature_category import FeatureCategory
175
218
  from postfinancecheckout.models.gender import Gender
176
219
  from postfinancecheckout.models.human_user import HumanUser
177
220
  from postfinancecheckout.models.internal_transfer_bank_transaction import InternalTransferBankTransaction
221
+ from postfinancecheckout.models.invoice_reconciliation_record import InvoiceReconciliationRecord
178
222
  from postfinancecheckout.models.invoice_reconciliation_record_invoice_link import InvoiceReconciliationRecordInvoiceLink
179
223
  from postfinancecheckout.models.invoice_reconciliation_record_rejection_status import InvoiceReconciliationRecordRejectionStatus
180
224
  from postfinancecheckout.models.invoice_reconciliation_record_state import InvoiceReconciliationRecordState
181
225
  from postfinancecheckout.models.invoice_reconciliation_record_type import InvoiceReconciliationRecordType
182
226
  from postfinancecheckout.models.invoice_reimbursement import InvoiceReimbursement
183
227
  from postfinancecheckout.models.invoice_reimbursement_state import InvoiceReimbursementState
228
+ from postfinancecheckout.models.item import Item
184
229
  from postfinancecheckout.models.label import Label
185
230
  from postfinancecheckout.models.label_descriptor import LabelDescriptor
186
231
  from postfinancecheckout.models.label_descriptor_category import LabelDescriptorCategory
@@ -201,6 +246,7 @@ from postfinancecheckout.models.manual_task_action_style import ManualTaskAction
201
246
  from postfinancecheckout.models.manual_task_state import ManualTaskState
202
247
  from postfinancecheckout.models.manual_task_type import ManualTaskType
203
248
  from postfinancecheckout.models.one_click_payment_mode import OneClickPaymentMode
249
+ from postfinancecheckout.models.pan_type import PanType
204
250
  from postfinancecheckout.models.payment_adjustment import PaymentAdjustment
205
251
  from postfinancecheckout.models.payment_adjustment_type import PaymentAdjustmentType
206
252
  from postfinancecheckout.models.payment_connector import PaymentConnector
@@ -239,12 +285,27 @@ from postfinancecheckout.models.payment_terminal_state import PaymentTerminalSta
239
285
  from postfinancecheckout.models.payment_terminal_transaction_sum import PaymentTerminalTransactionSum
240
286
  from postfinancecheckout.models.payment_terminal_transaction_summary import PaymentTerminalTransactionSummary
241
287
  from postfinancecheckout.models.payment_terminal_transaction_summary_fetch_request import PaymentTerminalTransactionSummaryFetchRequest
288
+ from postfinancecheckout.models.payment_terminal_transaction_summary_reference import PaymentTerminalTransactionSummaryReference
242
289
  from postfinancecheckout.models.payment_terminal_type import PaymentTerminalType
243
290
  from postfinancecheckout.models.permission import Permission
291
+ from postfinancecheckout.models.persistable_currency_amount import PersistableCurrencyAmount
292
+ from postfinancecheckout.models.persistable_currency_amount_update import PersistableCurrencyAmountUpdate
293
+ from postfinancecheckout.models.product_fee_type import ProductFeeType
294
+ from postfinancecheckout.models.product_metered_fee import ProductMeteredFee
295
+ from postfinancecheckout.models.product_metered_fee_update import ProductMeteredFeeUpdate
296
+ from postfinancecheckout.models.product_metered_tier_fee import ProductMeteredTierFee
297
+ from postfinancecheckout.models.product_metered_tier_fee_update import ProductMeteredTierFeeUpdate
298
+ from postfinancecheckout.models.product_metered_tier_pricing import ProductMeteredTierPricing
299
+ from postfinancecheckout.models.product_period_fee import ProductPeriodFee
300
+ from postfinancecheckout.models.product_period_fee_update import ProductPeriodFeeUpdate
301
+ from postfinancecheckout.models.product_setup_fee import ProductSetupFee
302
+ from postfinancecheckout.models.product_setup_fee_update import ProductSetupFeeUpdate
244
303
  from postfinancecheckout.models.recurring_indicator import RecurringIndicator
245
304
  from postfinancecheckout.models.refund import Refund
305
+ from postfinancecheckout.models.refund_bank_transaction import RefundBankTransaction
246
306
  from postfinancecheckout.models.refund_comment import RefundComment
247
307
  from postfinancecheckout.models.refund_create import RefundCreate
308
+ from postfinancecheckout.models.refund_recovery_bank_transaction import RefundRecoveryBankTransaction
248
309
  from postfinancecheckout.models.refund_state import RefundState
249
310
  from postfinancecheckout.models.refund_type import RefundType
250
311
  from postfinancecheckout.models.rendered_document import RenderedDocument
@@ -264,9 +325,9 @@ from postfinancecheckout.models.sales_channel import SalesChannel
264
325
  from postfinancecheckout.models.scope import Scope
265
326
  from postfinancecheckout.models.server_error import ServerError
266
327
  from postfinancecheckout.models.shopify_additional_line_item_data import ShopifyAdditionalLineItemData
267
- from postfinancecheckout.models.shopify_integration import ShopifyIntegration
268
328
  from postfinancecheckout.models.shopify_integration_payment_app_version import ShopifyIntegrationPaymentAppVersion
269
329
  from postfinancecheckout.models.shopify_integration_subscription_app_version import ShopifyIntegrationSubscriptionAppVersion
330
+ from postfinancecheckout.models.shopify_recurring_order import ShopifyRecurringOrder
270
331
  from postfinancecheckout.models.shopify_recurring_order_state import ShopifyRecurringOrderState
271
332
  from postfinancecheckout.models.shopify_recurring_order_update_request import ShopifyRecurringOrderUpdateRequest
272
333
  from postfinancecheckout.models.shopify_subscriber import ShopifySubscriber
@@ -277,9 +338,6 @@ from postfinancecheckout.models.shopify_subscription import ShopifySubscription
277
338
  from postfinancecheckout.models.shopify_subscription_address_create import ShopifySubscriptionAddressCreate
278
339
  from postfinancecheckout.models.shopify_subscription_billing_interval_unit import ShopifySubscriptionBillingIntervalUnit
279
340
  from postfinancecheckout.models.shopify_subscription_creation_request import ShopifySubscriptionCreationRequest
280
- from postfinancecheckout.models.shopify_subscription_model_billing_configuration import ShopifySubscriptionModelBillingConfiguration
281
- from postfinancecheckout.models.shopify_subscription_model_item import ShopifySubscriptionModelItem
282
- from postfinancecheckout.models.shopify_subscription_model_tax_line import ShopifySubscriptionModelTaxLine
283
341
  from postfinancecheckout.models.shopify_subscription_product import ShopifySubscriptionProduct
284
342
  from postfinancecheckout.models.shopify_subscription_product_pricing_option import ShopifySubscriptionProductPricingOption
285
343
  from postfinancecheckout.models.shopify_subscription_product_state import ShopifySubscriptionProductState
@@ -297,14 +355,68 @@ from postfinancecheckout.models.shopify_subscription_version_item_price_strategy
297
355
  from postfinancecheckout.models.shopify_subscription_version_state import ShopifySubscriptionVersionState
298
356
  from postfinancecheckout.models.shopify_subscription_weekday import ShopifySubscriptionWeekday
299
357
  from postfinancecheckout.models.shopify_tax_line import ShopifyTaxLine
358
+ from postfinancecheckout.models.shopify_transaction import ShopifyTransaction
300
359
  from postfinancecheckout.models.shopify_transaction_state import ShopifyTransactionState
360
+ from postfinancecheckout.models.shopify_v1_integration import ShopifyV1Integration
301
361
  from postfinancecheckout.models.space import Space
302
362
  from postfinancecheckout.models.space_address import SpaceAddress
303
363
  from postfinancecheckout.models.space_address_create import SpaceAddressCreate
304
364
  from postfinancecheckout.models.space_view import SpaceView
305
365
  from postfinancecheckout.models.static_value import StaticValue
366
+ from postfinancecheckout.models.subscriber import Subscriber
367
+ from postfinancecheckout.models.subscriber_update import SubscriberUpdate
368
+ from postfinancecheckout.models.subscription import Subscription
369
+ from postfinancecheckout.models.subscription_affiliate import SubscriptionAffiliate
370
+ from postfinancecheckout.models.subscription_affiliate_update import SubscriptionAffiliateUpdate
371
+ from postfinancecheckout.models.subscription_change_request import SubscriptionChangeRequest
372
+ from postfinancecheckout.models.subscription_charge import SubscriptionCharge
373
+ from postfinancecheckout.models.subscription_charge_create import SubscriptionChargeCreate
374
+ from postfinancecheckout.models.subscription_charge_processing_type import SubscriptionChargeProcessingType
375
+ from postfinancecheckout.models.subscription_charge_state import SubscriptionChargeState
376
+ from postfinancecheckout.models.subscription_charge_type import SubscriptionChargeType
377
+ from postfinancecheckout.models.subscription_component_configuration import SubscriptionComponentConfiguration
378
+ from postfinancecheckout.models.subscription_component_reference_configuration import SubscriptionComponentReferenceConfiguration
379
+ from postfinancecheckout.models.subscription_create_request import SubscriptionCreateRequest
380
+ from postfinancecheckout.models.subscription_ledger_entry import SubscriptionLedgerEntry
381
+ from postfinancecheckout.models.subscription_ledger_entry_create import SubscriptionLedgerEntryCreate
382
+ from postfinancecheckout.models.subscription_ledger_entry_state import SubscriptionLedgerEntryState
383
+ from postfinancecheckout.models.subscription_metric import SubscriptionMetric
384
+ from postfinancecheckout.models.subscription_metric_type import SubscriptionMetricType
385
+ from postfinancecheckout.models.subscription_metric_update import SubscriptionMetricUpdate
386
+ from postfinancecheckout.models.subscription_metric_usage_report import SubscriptionMetricUsageReport
387
+ from postfinancecheckout.models.subscription_metric_usage_report_create import SubscriptionMetricUsageReportCreate
388
+ from postfinancecheckout.models.subscription_period_bill import SubscriptionPeriodBill
389
+ from postfinancecheckout.models.subscription_period_bill_state import SubscriptionPeriodBillState
390
+ from postfinancecheckout.models.subscription_product import SubscriptionProduct
391
+ from postfinancecheckout.models.subscription_product_component import SubscriptionProductComponent
392
+ from postfinancecheckout.models.subscription_product_component_group import SubscriptionProductComponentGroup
393
+ from postfinancecheckout.models.subscription_product_component_group_update import SubscriptionProductComponentGroupUpdate
394
+ from postfinancecheckout.models.subscription_product_component_reference import SubscriptionProductComponentReference
395
+ from postfinancecheckout.models.subscription_product_component_reference_state import SubscriptionProductComponentReferenceState
396
+ from postfinancecheckout.models.subscription_product_component_update import SubscriptionProductComponentUpdate
397
+ from postfinancecheckout.models.subscription_product_retirement import SubscriptionProductRetirement
398
+ from postfinancecheckout.models.subscription_product_retirement_create import SubscriptionProductRetirementCreate
399
+ from postfinancecheckout.models.subscription_product_state import SubscriptionProductState
400
+ from postfinancecheckout.models.subscription_product_version import SubscriptionProductVersion
401
+ from postfinancecheckout.models.subscription_product_version_pending import SubscriptionProductVersionPending
402
+ from postfinancecheckout.models.subscription_product_version_retirement import SubscriptionProductVersionRetirement
403
+ from postfinancecheckout.models.subscription_product_version_retirement_create import SubscriptionProductVersionRetirementCreate
404
+ from postfinancecheckout.models.subscription_product_version_state import SubscriptionProductVersionState
405
+ from postfinancecheckout.models.subscription_state import SubscriptionState
406
+ from postfinancecheckout.models.subscription_suspension import SubscriptionSuspension
407
+ from postfinancecheckout.models.subscription_suspension_action import SubscriptionSuspensionAction
408
+ from postfinancecheckout.models.subscription_suspension_create import SubscriptionSuspensionCreate
409
+ from postfinancecheckout.models.subscription_suspension_reason import SubscriptionSuspensionReason
410
+ from postfinancecheckout.models.subscription_suspension_state import SubscriptionSuspensionState
411
+ from postfinancecheckout.models.subscription_update import SubscriptionUpdate
412
+ from postfinancecheckout.models.subscription_update_request import SubscriptionUpdateRequest
413
+ from postfinancecheckout.models.subscription_version import SubscriptionVersion
414
+ from postfinancecheckout.models.subscription_version_state import SubscriptionVersionState
306
415
  from postfinancecheckout.models.tax import Tax
416
+ from postfinancecheckout.models.tax_calculation import TaxCalculation
417
+ from postfinancecheckout.models.tax_class import TaxClass
307
418
  from postfinancecheckout.models.tax_create import TaxCreate
419
+ from postfinancecheckout.models.tax_line import TaxLine
308
420
  from postfinancecheckout.models.tenant_database import TenantDatabase
309
421
  from postfinancecheckout.models.terminal_receipt_fetch_request import TerminalReceiptFetchRequest
310
422
  from postfinancecheckout.models.terminal_receipt_format import TerminalReceiptFormat
@@ -316,8 +428,8 @@ from postfinancecheckout.models.tokenization_mode import TokenizationMode
316
428
  from postfinancecheckout.models.tokenized_card_data import TokenizedCardData
317
429
  from postfinancecheckout.models.tokenized_card_data_create import TokenizedCardDataCreate
318
430
  from postfinancecheckout.models.transaction import Transaction
319
- from postfinancecheckout.models.transaction_aware_entity import TransactionAwareEntity
320
431
  from postfinancecheckout.models.transaction_comment import TransactionComment
432
+ from postfinancecheckout.models.transaction_completion import TransactionCompletion
321
433
  from postfinancecheckout.models.transaction_completion_behavior import TransactionCompletionBehavior
322
434
  from postfinancecheckout.models.transaction_completion_mode import TransactionCompletionMode
323
435
  from postfinancecheckout.models.transaction_completion_request import TransactionCompletionRequest
@@ -325,13 +437,16 @@ from postfinancecheckout.models.transaction_completion_state import TransactionC
325
437
  from postfinancecheckout.models.transaction_environment_selection_strategy import TransactionEnvironmentSelectionStrategy
326
438
  from postfinancecheckout.models.transaction_group import TransactionGroup
327
439
  from postfinancecheckout.models.transaction_group_state import TransactionGroupState
440
+ from postfinancecheckout.models.transaction_invoice import TransactionInvoice
328
441
  from postfinancecheckout.models.transaction_invoice_comment import TransactionInvoiceComment
329
442
  from postfinancecheckout.models.transaction_invoice_replacement import TransactionInvoiceReplacement
330
443
  from postfinancecheckout.models.transaction_invoice_state import TransactionInvoiceState
444
+ from postfinancecheckout.models.transaction_line_item_version import TransactionLineItemVersion
331
445
  from postfinancecheckout.models.transaction_line_item_version_create import TransactionLineItemVersionCreate
332
446
  from postfinancecheckout.models.transaction_line_item_version_state import TransactionLineItemVersionState
333
447
  from postfinancecheckout.models.transaction_state import TransactionState
334
448
  from postfinancecheckout.models.transaction_user_interface_type import TransactionUserInterfaceType
449
+ from postfinancecheckout.models.transaction_void import TransactionVoid
335
450
  from postfinancecheckout.models.transaction_void_mode import TransactionVoidMode
336
451
  from postfinancecheckout.models.transaction_void_state import TransactionVoidState
337
452
  from postfinancecheckout.models.two_factor_authentication_type import TwoFactorAuthenticationType
@@ -353,50 +468,46 @@ from postfinancecheckout.models.application_user import ApplicationUser
353
468
  from postfinancecheckout.models.application_user_create import ApplicationUserCreate
354
469
  from postfinancecheckout.models.application_user_update import ApplicationUserUpdate
355
470
  from postfinancecheckout.models.authenticated_card_data import AuthenticatedCardData
356
- from postfinancecheckout.models.charge import Charge
357
- from postfinancecheckout.models.charge_attempt import ChargeAttempt
358
- from postfinancecheckout.models.charge_bank_transaction import ChargeBankTransaction
359
- from postfinancecheckout.models.charge_flow_level import ChargeFlowLevel
360
- from postfinancecheckout.models.charge_flow_level_payment_link import ChargeFlowLevelPaymentLink
361
- from postfinancecheckout.models.connector_invocation import ConnectorInvocation
362
471
  from postfinancecheckout.models.customer_active import CustomerActive
363
472
  from postfinancecheckout.models.customer_address_active import CustomerAddressActive
364
473
  from postfinancecheckout.models.customer_address_create import CustomerAddressCreate
365
474
  from postfinancecheckout.models.customer_comment_active import CustomerCommentActive
366
475
  from postfinancecheckout.models.customer_comment_create import CustomerCommentCreate
367
476
  from postfinancecheckout.models.customer_create import CustomerCreate
368
- from postfinancecheckout.models.delivery_indication import DeliveryIndication
369
477
  from postfinancecheckout.models.human_user_create import HumanUserCreate
370
478
  from postfinancecheckout.models.human_user_update import HumanUserUpdate
371
- from postfinancecheckout.models.invoice_reconciliation_record import InvoiceReconciliationRecord
372
479
  from postfinancecheckout.models.invoice_reimbursement_with_refund_reference import InvoiceReimbursementWithRefundReference
373
480
  from postfinancecheckout.models.payment_link_active import PaymentLinkActive
374
481
  from postfinancecheckout.models.payment_link_create import PaymentLinkCreate
375
- from postfinancecheckout.models.refund_bank_transaction import RefundBankTransaction
376
482
  from postfinancecheckout.models.refund_comment_active import RefundCommentActive
377
483
  from postfinancecheckout.models.refund_comment_create import RefundCommentCreate
378
- from postfinancecheckout.models.refund_recovery_bank_transaction import RefundRecoveryBankTransaction
379
- from postfinancecheckout.models.shopify_recurring_order import ShopifyRecurringOrder
380
484
  from postfinancecheckout.models.shopify_subscription_address import ShopifySubscriptionAddress
381
485
  from postfinancecheckout.models.shopify_subscription_product_create import ShopifySubscriptionProductCreate
382
486
  from postfinancecheckout.models.shopify_subscription_product_update import ShopifySubscriptionProductUpdate
383
- from postfinancecheckout.models.shopify_transaction import ShopifyTransaction
384
487
  from postfinancecheckout.models.space_create import SpaceCreate
385
488
  from postfinancecheckout.models.space_update import SpaceUpdate
489
+ from postfinancecheckout.models.subscriber_active import SubscriberActive
490
+ from postfinancecheckout.models.subscriber_create import SubscriberCreate
491
+ from postfinancecheckout.models.subscription_affiliate_create import SubscriptionAffiliateCreate
492
+ from postfinancecheckout.models.subscription_affiliate_deleted import SubscriptionAffiliateDeleted
493
+ from postfinancecheckout.models.subscription_affiliate_inactive import SubscriptionAffiliateInactive
494
+ from postfinancecheckout.models.subscription_metric_active import SubscriptionMetricActive
495
+ from postfinancecheckout.models.subscription_metric_create import SubscriptionMetricCreate
496
+ from postfinancecheckout.models.subscription_pending import SubscriptionPending
497
+ from postfinancecheckout.models.subscription_product_active import SubscriptionProductActive
498
+ from postfinancecheckout.models.subscription_product_create import SubscriptionProductCreate
499
+ from postfinancecheckout.models.subscription_suspension_running import SubscriptionSuspensionRunning
386
500
  from postfinancecheckout.models.token_create import TokenCreate
387
501
  from postfinancecheckout.models.token_update import TokenUpdate
388
502
  from postfinancecheckout.models.transaction_comment_active import TransactionCommentActive
389
503
  from postfinancecheckout.models.transaction_comment_create import TransactionCommentCreate
390
- from postfinancecheckout.models.transaction_completion import TransactionCompletion
391
504
  from postfinancecheckout.models.transaction_create import TransactionCreate
392
- from postfinancecheckout.models.transaction_invoice import TransactionInvoice
393
505
  from postfinancecheckout.models.transaction_invoice_comment_active import TransactionInvoiceCommentActive
394
506
  from postfinancecheckout.models.transaction_invoice_comment_create import TransactionInvoiceCommentCreate
395
- from postfinancecheckout.models.transaction_line_item_version import TransactionLineItemVersion
396
507
  from postfinancecheckout.models.transaction_pending import TransactionPending
397
- from postfinancecheckout.models.transaction_void import TransactionVoid
398
508
  from postfinancecheckout.models.webhook_listener_create import WebhookListenerCreate
399
509
  from postfinancecheckout.models.webhook_listener_update import WebhookListenerUpdate
400
510
  from postfinancecheckout.models.webhook_url_create import WebhookUrlCreate
401
511
  from postfinancecheckout.models.webhook_url_update import WebhookUrlUpdate
402
512
  from postfinancecheckout.models.application_user_create_with_mac_key import ApplicationUserCreateWithMacKey
513
+ from postfinancecheckout.models.subscription_affiliate_deleting import SubscriptionAffiliateDeleting
@@ -3,7 +3,6 @@
3
3
  from __future__ import absolute_import
4
4
 
5
5
  from .account_service_api import AccountServiceApi
6
- from .analytics_query_service_api import AnalyticsQueryServiceApi
7
6
  from .application_user_service_api import ApplicationUserServiceApi
8
7
  from .bank_account_service_api import BankAccountServiceApi
9
8
  from .bank_transaction_service_api import BankTransactionServiceApi
@@ -24,6 +23,10 @@ from .customer_service_api import CustomerServiceApi
24
23
  from .delivery_indication_service_api import DeliveryIndicationServiceApi
25
24
  from .document_template_service_api import DocumentTemplateServiceApi
26
25
  from .document_template_type_service_api import DocumentTemplateTypeServiceApi
26
+ from .dunning_case_level_service_api import DunningCaseLevelServiceApi
27
+ from .dunning_case_service_api import DunningCaseServiceApi
28
+ from .dunning_flow_level_service_api import DunningFlowLevelServiceApi
29
+ from .dunning_flow_service_api import DunningFlowServiceApi
27
30
  from .external_transfer_bank_transaction_service_api import ExternalTransferBankTransactionServiceApi
28
31
  from .human_user_service_api import HumanUserServiceApi
29
32
  from .internal_transfer_bank_transaction_service_api import InternalTransferBankTransactionServiceApi
@@ -60,6 +63,26 @@ from .shopify_subscription_version_service_api import ShopifySubscriptionVersion
60
63
  from .shopify_transaction_service_api import ShopifyTransactionServiceApi
61
64
  from .space_service_api import SpaceServiceApi
62
65
  from .static_value_service_api import StaticValueServiceApi
66
+ from .subscriber_service_api import SubscriberServiceApi
67
+ from .subscription_affiliate_service_api import SubscriptionAffiliateServiceApi
68
+ from .subscription_charge_service_api import SubscriptionChargeServiceApi
69
+ from .subscription_ledger_entry_service_api import SubscriptionLedgerEntryServiceApi
70
+ from .subscription_metric_service_api import SubscriptionMetricServiceApi
71
+ from .subscription_metric_usage_service_api import SubscriptionMetricUsageServiceApi
72
+ from .subscription_period_bill_service_api import SubscriptionPeriodBillServiceApi
73
+ from .subscription_product_component_group_service_api import SubscriptionProductComponentGroupServiceApi
74
+ from .subscription_product_component_service_api import SubscriptionProductComponentServiceApi
75
+ from .subscription_product_fee_tier_service_api import SubscriptionProductFeeTierServiceApi
76
+ from .subscription_product_metered_fee_service_api import SubscriptionProductMeteredFeeServiceApi
77
+ from .subscription_product_period_fee_service_api import SubscriptionProductPeriodFeeServiceApi
78
+ from .subscription_product_retirement_service_api import SubscriptionProductRetirementServiceApi
79
+ from .subscription_product_service_api import SubscriptionProductServiceApi
80
+ from .subscription_product_setup_fee_service_api import SubscriptionProductSetupFeeServiceApi
81
+ from .subscription_product_version_retirement_service_api import SubscriptionProductVersionRetirementServiceApi
82
+ from .subscription_product_version_service_api import SubscriptionProductVersionServiceApi
83
+ from .subscription_service_api import SubscriptionServiceApi
84
+ from .subscription_suspension_service_api import SubscriptionSuspensionServiceApi
85
+ from .subscription_version_service_api import SubscriptionVersionServiceApi
63
86
  from .token_service_api import TokenServiceApi
64
87
  from .token_version_service_api import TokenVersionServiceApi
65
88
  from .transaction_comment_service_api import TransactionCommentServiceApi