postfinancecheckout 5.0.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.
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/LICENSE +1 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/PKG-INFO +12 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/__init__.py +140 -29
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/__init__.py +24 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_flow_service_api.py +1 -1
- postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_case_level_service_api.py +342 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_case_service_api.py +560 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_flow_level_service_api.py +342 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_flow_service_api.py +342 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/human_user_service_api.py +1 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_terminal_service_api.py +6 -6
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscriber_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_affiliate_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_charge_service_api.py +560 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_ledger_entry_service_api.py +453 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_metric_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_metric_usage_service_api.py +453 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_period_bill_service_api.py +342 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_component_group_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_component_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_fee_tier_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_metered_fee_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_period_fee_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_retirement_service_api.py +453 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_service_api.py +564 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_setup_fee_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_version_retirement_service_api.py +453 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_version_service_api.py +675 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_service_api.py +1254 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_suspension_service_api.py +548 -0
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_version_service_api.py +342 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/token_service_api.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_iframe_service_api.py +1 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_lightbox_service_api.py +1 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_mobile_sdk_service_api.py +1 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_payment_page_service_api.py +1 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_service_api.py +1 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api_client.py +3 -3
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/configuration.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/__init__.py +116 -28
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_payment_link_update.py +49 -23
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscriber_update.py +308 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscription_affiliate_update.py +176 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscription_metric_update.py +120 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscription_product_active.py +226 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_token_update.py +10 -10
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_transaction_pending.py +34 -34
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_webhook_listener_update.py +1 -27
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/authenticated_card_data.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/authenticated_card_data_create.py +45 -19
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_account.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_account_type.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction.py +26 -26
- postfinancecheckout-5.0.0/postfinancecheckout/models/shopify_subscription_model_billing_configuration.py → postfinancecheckout-5.2.2/postfinancecheckout/models/billing_configuration.py +39 -39
- postfinancecheckout-5.2.2/postfinancecheckout/models/billing_cycle_model.py +230 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/billing_cycle_type.py +12 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/billing_day_customization.py +10 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/card_cryptogram.py +19 -19
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/card_cryptogram_create.py +19 -22
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/cardholder_authentication.py +10 -10
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/cardholder_authentication_create.py +10 -10
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge.py +72 -22
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_attempt.py +124 -48
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_bank_transaction.py +94 -18
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level.py +94 -18
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level_configuration.py +10 -10
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level_configuration_type.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level_payment_link.py +60 -10
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/completion_line_item.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/completion_line_item_create.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/condition.py +4 -4
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/connector_invocation.py +62 -12
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/currency_bank_account.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/delivery_indication.py +98 -22
- postfinancecheckout-5.2.2/postfinancecheckout/models/displayable_day_of_week.py +15 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/displayable_month.py +20 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/document_template.py +12 -12
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/document_template_type.py +8 -8
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/document_template_type_group.py +2 -2
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case.py +406 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case_level.py +510 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case_level_state.py +13 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case_state.py +14 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_condition.py +252 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_condition_type.py +146 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow.py +302 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow_level.py +408 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow_level_processor.py +172 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow_type.py +172 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/external_transfer_bank_transaction.py +8 -8
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/failure_reason.py +3 -29
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/feature.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/internal_transfer_bank_transaction.py +4 -4
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record.py +82 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reimbursement.py +27 -1
- postfinancecheckout-5.0.0/postfinancecheckout/models/shopify_subscription_model_item.py → postfinancecheckout-5.2.2/postfinancecheckout/models/item.py +26 -26
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label.py +7 -59
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item.py +42 -42
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_attribute.py +4 -4
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_attribute_create.py +4 -4
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_create.py +20 -20
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_reduction.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_reduction_create.py +6 -6
- postfinancecheckout-5.2.2/postfinancecheckout/models/pan_type.py +16 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_adjustment.py +37 -11
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_connector.py +21 -47
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_connector_configuration.py +20 -20
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_connector_feature.py +3 -29
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_contract.py +31 -31
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_contract_type.py +1 -27
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_information_hash.py +4 -4
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_information_hash_type.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link.py +55 -29
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_create.py +8 -5
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_update.py +49 -23
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_method.py +8 -8
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_method_brand.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_method_configuration.py +24 -24
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_processor.py +9 -35
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_processor_configuration.py +8 -8
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal.py +43 -17
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_configuration.py +4 -4
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_configuration_version.py +16 -16
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_location.py +4 -4
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_location_version.py +10 -10
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_transaction_summary.py +55 -3
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_transaction_summary_reference.py +172 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/persistable_currency_amount.py +120 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/persistable_currency_amount_update.py +120 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_fee_type.py +11 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_fee.py +302 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_fee_update.py +256 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_tier_fee.py +198 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_tier_fee_update.py +204 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_tier_pricing.py +10 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_period_fee.py +328 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_period_fee_update.py +282 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_setup_fee.py +328 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_setup_fee_update.py +282 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund.py +50 -50
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_bank_transaction.py +92 -16
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_comment.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_comment_create.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_create.py +14 -14
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_recovery_bank_transaction.py +94 -18
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rendered_document.py +8 -8
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rendered_terminal_receipt.py +8 -8
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_country.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_country_state.py +1 -27
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/sales_channel.py +3 -55
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/scope.py +57 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_recurring_order.py +134 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscriber.py +29 -3
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscriber_active.py +29 -3
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscriber_creation.py +27 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_creation_request.py +8 -8
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product.py +53 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product_create.py +59 -7
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_update_request.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_transaction.py +149 -21
- postfinancecheckout-5.0.0/postfinancecheckout/models/shopify_integration.py → postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_v1_integration.py +136 -110
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_create.py +27 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_view.py +4 -4
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/static_value.py +2 -2
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber.py +464 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber_active.py +96 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber_create.py +125 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber_update.py +366 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription.py +592 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate.py +336 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_create.py +132 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_deleted.py +70 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_deleting.py +70 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_inactive.py +70 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_update.py +234 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_change_request.py +233 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge.py +624 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_create.py +269 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_processing_type.py +10 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_state.py +13 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_type.py +10 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_component_configuration.py +198 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_component_reference_configuration.py +120 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_create_request.py +207 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_ledger_entry.py +646 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_ledger_entry_create.py +295 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_ledger_entry_state.py +11 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric.py +276 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_active.py +70 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_create.py +99 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_type.py +172 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_update.py +178 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_usage_report.py +356 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_usage_report_create.py +212 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_pending.py +150 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_period_bill.py +354 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_period_bill_state.py +10 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product.py +384 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_active.py +128 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component.py +432 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_group.py +250 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_group_update.py +230 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_reference.py +254 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_reference_state.py +12 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_update.py +412 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_create.py +101 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_retirement.py +250 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_retirement_create.py +149 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_state.py +13 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version.py +642 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_pending.py +386 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_retirement.py +250 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_retirement_create.py +149 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_state.py +13 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_state.py +16 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension.py +434 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_action.py +10 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_create.py +183 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_reason.py +11 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_running.py +70 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_state.py +10 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_update.py +206 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_update_request.py +96 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_version.py +562 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_version_state.py +14 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tax.py +4 -4
- postfinancecheckout-5.2.2/postfinancecheckout/models/tax_calculation.py +10 -0
- postfinancecheckout-5.2.2/postfinancecheckout/models/tax_class.py +226 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tax_create.py +4 -4
- postfinancecheckout-5.0.0/postfinancecheckout/models/shopify_subscription_model_tax_line.py → postfinancecheckout-5.2.2/postfinancecheckout/models/tax_line.py +11 -11
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token.py +12 -12
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_create.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_version.py +32 -32
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_version_type.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tokenized_card_data.py +33 -7
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tokenized_card_data_create.py +43 -17
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction.py +122 -122
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_comment.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_comment_create.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion.py +128 -52
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion_request.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_create.py +16 -16
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_group.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice.py +114 -38
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_comment.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_comment_create.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_replacement.py +12 -12
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_line_item_version.py +108 -32
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_line_item_version_create.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_void.py +104 -28
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/user_account_role.py +8 -8
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/user_space_role.py +6 -6
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/wallet_type.py +79 -1
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/web_app_confirmation_response.py +10 -10
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_listener.py +2 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/PKG-INFO +12 -2
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/SOURCES.txt +126 -13
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/setup.py +1 -1
- postfinancecheckout-5.2.2/test/test_charge_attempt_service.py +81 -0
- postfinancecheckout-5.2.2/test/test_transaction_invoice_service.py +132 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/test/test_transaction_service.py +1 -1
- postfinancecheckout-5.0.0/postfinancecheckout/api/analytics_query_service_api.py +0 -639
- postfinancecheckout-5.0.0/postfinancecheckout/models/analytics_query.py +0 -231
- postfinancecheckout-5.0.0/postfinancecheckout/models/analytics_query_execution.py +0 -380
- postfinancecheckout-5.0.0/postfinancecheckout/models/analytics_query_execution_state.py +0 -12
- postfinancecheckout-5.0.0/postfinancecheckout/models/analytics_query_result_batch.py +0 -172
- postfinancecheckout-5.0.0/postfinancecheckout/models/analytics_schema_column.py +0 -276
- postfinancecheckout-5.0.0/postfinancecheckout/models/analytics_schema_table.py +0 -146
- postfinancecheckout-5.0.0/postfinancecheckout/models/card_cryptogram_type.py +0 -9
- postfinancecheckout-5.0.0/postfinancecheckout/models/transaction_aware_entity.py +0 -146
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/README.md +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/account_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/application_user_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/bank_account_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/bank_transaction_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/card_processing_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_attempt_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_bank_transaction_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_flow_level_payment_link_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/charge_flow_level_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/condition_type_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/country_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/country_state_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/currency_bank_account_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/currency_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/customer_address_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/customer_comment_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/customer_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/delivery_indication_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/document_template_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/document_template_type_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/external_transfer_bank_transaction_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/internal_transfer_bank_transaction_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/invoice_reconciliation_record_invoice_link_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/invoice_reconciliation_record_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/invoice_reimbursement_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/label_description_group_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/label_description_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/language_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/legal_organization_form_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/manual_task_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_connector_configuration_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_connector_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_link_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_method_brand_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_method_configuration_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_method_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_processor_configuration_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_processor_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_terminal_till_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/payment_terminal_transaction_summary_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/permission_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/refund_bank_transaction_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/refund_comment_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/refund_recovery_bank_transaction_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/refund_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_recurring_order_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscriber_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscription_product_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscription_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscription_suspension_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_subscription_version_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/shopify_transaction_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/space_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/static_value_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/token_version_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_comment_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_completion_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_invoice_comment_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_invoice_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_line_item_version_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_terminal_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/transaction_void_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/user_account_role_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/user_space_role_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/web_app_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/webhook_encryption_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/webhook_listener_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/api/webhook_url_service_api.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/encryption_util.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_account_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_application_user_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_customer_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_customer_address_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_customer_comment_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_human_user_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_refund_comment_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_shopify_subscription_product_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_space_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_transaction_comment_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_transaction_invoice_comment_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/abstract_webhook_url_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/account_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/address.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/address_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/application_user.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/application_user_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/application_user_create_with_mac_key.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/application_user_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_account_environment.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_account_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction_flow_direction.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction_source.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/bank_transaction_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/card_authentication_response.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/card_authentication_version.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_attempt_environment.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_attempt_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_flow_level_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/charge_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/client_error.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/client_error_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/condition_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/connector_invocation_stage.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/creation_entity_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/criteria_operator.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_address.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_address_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_address_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_address_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_comment.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_comment_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_comment_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_postal_address.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customer_postal_address_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/customers_presence.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/data_collection_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/delivery_indication_decision_reason.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/delivery_indication_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_export_request.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query_filter.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query_filter_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query_order_by.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/entity_query_order_by_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/environment.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/failure_category.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/feature_category.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/gender.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/human_user.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/human_user_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/human_user_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record_invoice_link.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record_rejection_status.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reconciliation_record_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reimbursement_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/invoice_reimbursement_with_refund_reference.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label_descriptor.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label_descriptor_category.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label_descriptor_group.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/label_descriptor_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/legal_organization_form.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/line_item_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/localized_string.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task_action.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task_action_style.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/manual_task_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/one_click_payment_mode.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_adjustment_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_contract_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_initiation_advice_file.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_initiation_advice_file_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_address_handling_mode.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_link_protection_mode.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_primary_risk_taker.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_address.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_configuration_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_configuration_version_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_dcc_transaction_sum.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_location_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_location_version_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_receipt_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_transaction_sum.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_transaction_summary_fetch_request.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/payment_terminal_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/permission.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/recurring_indicator.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_comment_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/refund_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rendered_terminal_transaction_summary.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/resource_path.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/resource_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_address_format.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_address_format_field.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_currency.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/rest_language.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/role.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/role_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/server_error.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_additional_line_item_data.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_integration_payment_app_version.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_integration_subscription_app_version.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_recurring_order_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_recurring_order_update_request.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscriber_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_address.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_address_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_billing_interval_unit.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product_pricing_option.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_product_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension_initiator.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_suspension_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_update_addresses_request.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_version.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_version_item.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_version_item_price_strategy.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_version_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_subscription_weekday.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_tax_line.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/shopify_transaction_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_address.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_address_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/space_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tenant_database.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/terminal_receipt_fetch_request.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/terminal_receipt_format.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/token_version_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/tokenization_mode.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_comment_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion_behavior.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion_mode.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_completion_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_environment_selection_strategy.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_group_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_comment_active.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_invoice_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_line_item_version_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_pending.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_user_interface_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_void_mode.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/transaction_void_state.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/two_factor_authentication_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/user.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/user_type.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/web_app_confirmation_request.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_encryption_public_key.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_identity.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_listener_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_listener_entity.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_listener_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_url.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_url_create.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/models/webhook_url_update.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout/rest.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/dependency_links.txt +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/requires.txt +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/postfinancecheckout.egg-info/top_level.txt +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/setup.cfg +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/test/test_refund.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/test/test_transaction_completion_service.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/test/test_transaction_iframe_service.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/test/test_transaction_lightbox_service.py +0 -0
- {postfinancecheckout-5.0.0 → postfinancecheckout-5.2.2}/test/test_transaction_payment_page_service.py +0 -0
- {postfinancecheckout-5.0.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
|
|
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
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: postfinancecheckout
|
|
3
|
-
Version: 5.
|
|
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
|
[](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
|
|
@@ -419,7 +419,7 @@ class ChargeFlowServiceApi:
|
|
|
419
419
|
body_params = None
|
|
420
420
|
# HTTP header `Accept`
|
|
421
421
|
header_params['Accept'] = self.api_client.select_header_accept(
|
|
422
|
-
['text/plain;charset=utf-8'
|
|
422
|
+
['application/json', 'text/plain;charset=utf-8'])
|
|
423
423
|
|
|
424
424
|
# Authentication setting
|
|
425
425
|
auth_settings = []
|