postfinancecheckout 5.2.2__tar.gz → 6.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- postfinancecheckout-6.0.0/PKG-INFO +44 -0
- postfinancecheckout-6.0.0/README.md +3032 -0
- postfinancecheckout-6.0.0/postfinancecheckout/__init__.py +665 -0
- postfinancecheckout-6.0.0/postfinancecheckout/api_client.py +763 -0
- postfinancecheckout-6.0.0/postfinancecheckout/api_response.py +44 -0
- postfinancecheckout-6.0.0/postfinancecheckout/configuration.py +401 -0
- postfinancecheckout-6.0.0/postfinancecheckout/error_code.py +67 -0
- postfinancecheckout-6.0.0/postfinancecheckout/exceptions.py +211 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/__init__.py +564 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_account_update.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_application_user_update.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_customer_active.py +121 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_customer_address_active.py +105 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_customer_comment_active.py +99 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_human_user_update.py +114 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_connector_configuration_update.py +123 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_link_update.py +139 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_method_configuration_update.py +110 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_processor_configuration_active.py +102 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_payment_terminal_update.py +99 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_refund_comment_active.py +99 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_role_update.py +110 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_single_sign_on_user_update.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_space_update.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_subscriber_update.py +132 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_subscription_affiliate_update.py +106 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_subscription_metric_update.py +100 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_subscription_product_active.py +110 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_token_update.py +119 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_transaction_comment_active.py +99 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_transaction_invoice_comment_active.py +99 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_transaction_pending.py +172 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_webhook_listener_update.py +106 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/abstract_webhook_url_update.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/account.py +165 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/account_create.py +105 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/account_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/account_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/account_state.py +52 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/account_type.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/account_update.py +103 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/address.py +179 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/address_create.py +139 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/analytics_query_execution_request.py +103 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/analytics_query_execution_response.py +100 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/application_key_state.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/application_user.py +132 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_create.py +106 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_create_with_mac_key.py +136 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/application_user_update.py +106 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/authenticated_card_data.py +119 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/authenticated_card_data_create.py +154 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/authenticated_card_request.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account.py +129 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_environment.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_state.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_account_type.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction.py +192 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_flow_direction.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_source.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_state.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/bank_transaction_type.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/billing_cycle_model.py +113 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/billing_cycle_type.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/billing_day_customization.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/card_authentication_response.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/card_authentication_version.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/card_cryptogram.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/card_cryptogram_create.py +100 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/cardholder_authentication.py +114 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/cardholder_authentication_create.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge.py +155 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt.py +232 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt_environment.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_attempt_state.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_bank_transaction.py +146 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_bank_transaction_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_bank_transaction_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow.py +136 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level.py +156 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_configuration.py +139 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_configuration_type.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_payment_link.py +114 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_payment_link_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_payment_link_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_level_state.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_flow_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_state.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/charge_type.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/client_platform_information_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/client_platform_information_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/completion_line_item.py +109 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/completion_line_item_create.py +103 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/completion_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/completion_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/condition.py +127 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/condition_type.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/condition_type_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/condition_type_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/connector_invocation.py +128 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/connector_invocation_stage.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/country_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/country_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/creation_entity_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/currency_bank_account.py +121 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/currency_bank_account_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/currency_bank_account_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/currency_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/currency_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer.py +152 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_active.py +123 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address.py +132 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_active.py +107 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_create.py +107 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_address_type.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment.py +140 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment_active.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment_create.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_comment_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_create.py +121 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_email_address_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_postal_address.py +179 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_postal_address_create.py +139 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customer_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/customers_presence.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/data_collection_type.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication.py +158 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication_decision_reason.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/delivery_indication_state.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/displayable_day_of_week.py +53 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/displayable_month.py +58 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/document_template.py +143 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_type.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_type_group.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_type_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/document_template_type_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_case.py +152 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_case_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_case_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_case_state.py +52 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_condition.py +125 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_condition_type.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow.py +134 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_level.py +153 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_level_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_level_processor.py +114 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_level_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/dunning_flow_type.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/environment.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_create_response.py +100 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_session.py +141 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_session_create.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_session_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_shipping_option.py +124 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/express_checkout_wallet_type.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/external_transfer_bank_transaction.py +126 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/external_transfer_bank_transaction_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/external_transfer_bank_transaction_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/facade_user_friendly_query_status_model.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/failure_category.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/failure_reason.py +111 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/feature.py +134 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/feature_category.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/gender.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/human_user.py +147 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/human_user_create.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/human_user_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/human_user_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/human_user_update.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/internal_transfer_bank_transaction.py +119 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/internal_transfer_bank_transaction_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/internal_transfer_bank_transaction_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/invoice_comment_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/invoice_comment_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/invoice_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/invoice_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/label.py +115 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor.py +137 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_category.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_group.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_group_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_group_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/label_descriptor_type.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/language_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/language_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/legal_organization_form.py +131 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/legal_organization_form_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/legal_organization_form_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/line_item.py +201 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_attribute.py +105 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_attribute_create.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_create.py +139 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_reduction.py +109 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_reduction_create.py +103 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_type.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_version_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/line_item_version_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/localized_string.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task.py +140 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_action.py +111 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_action_style.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_state.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/manual_task_type.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/metric_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/metric_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/metric_usage_report_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/metric_usage_report_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/one_click_payment_mode.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/pan_type.py +54 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_adjustment.py +123 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_adjustment_type.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector.py +161 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration.py +179 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration_create.py +132 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_configuration_update.py +125 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_feature.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_connector_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_contract.py +160 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_contract_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_contract_type.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_information_hash.py +110 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_information_hash_type.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link.py +189 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_active.py +144 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_address_handling_mode.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_create.py +147 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_protection_mode.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_link_update.py +141 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method.py +125 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_brand.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_brand_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_brand_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration.py +165 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_active.py +115 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_create.py +118 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_configuration_update.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_method_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_primary_risk_taker.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor.py +124 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration.py +135 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration_active.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration_create.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_configuration_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_processor_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal.py +159 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_address.py +153 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_configuration.py +127 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_configuration_state.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_configuration_version.py +154 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_configuration_version_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_create.py +109 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_location.py +125 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_location_state.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_location_version.py +145 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_location_version_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_preparing.py +103 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_receipt_type.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_state.py +52 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_transaction_summary_reference.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_type.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/payment_terminal_update.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/permission.py +142 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/permission_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/permission_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/persistable_currency_amount.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/persistable_currency_amount_update.py +100 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_component_group_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_component_group_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_component_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_component_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_fee_type.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee.py +134 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_tier_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_tier_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_fee_update.py +109 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_tier_fee.py +126 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_tier_fee_update.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_metered_tier_pricing.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_period_fee.py +145 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_period_fee_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_period_fee_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_period_fee_update.py +118 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_retirement_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_retirement_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_setup_fee.py +160 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_setup_fee_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_setup_fee_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_setup_fee_update.py +132 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_version_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_version_retirement_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_version_retirement_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/product_version_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/recurring_indicator.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund.py +293 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_bank_transaction.py +140 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_bank_transaction_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_bank_transaction_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment.py +140 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment_active.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment_create.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_comment_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_create.py +137 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_recovery_bank_transaction.py +152 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_recovery_bank_transaction_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_recovery_bank_transaction_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_state.py +52 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/refund_type.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rendered_document.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rendered_terminal_receipt.py +114 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rendered_terminal_receipt_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_address_format.py +113 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_address_format_field.py +56 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_api_bulk_operation_result.py +114 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_api_error_response.py +117 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_application_user_mac_key.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_application_user_mac_key_created.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_country.py +122 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_country_state.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_currency.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_customer_email_address.py +105 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/rest_language.py +124 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/result_portion_model.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/role.py +138 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/role_create.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/role_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/role_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/role_state.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/role_update.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/sales_channel.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/sales_channel_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/sales_channel_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/scope.py +171 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/scope_single_sign_on_provider.py +127 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user.py +125 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user_create.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/single_sign_on_user_update.py +110 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/sorting_order.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/space.py +179 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/space_address.py +157 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/space_address_create.py +127 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/space_create.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/space_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/space_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/space_update.py +118 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/space_view.py +127 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/static_value.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/static_value_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/static_value_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/submitted_analytics_query_execution.py +132 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber.py +170 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_active.py +137 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_create.py +137 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscriber_update.py +134 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription.py +195 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate.py +137 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_create.py +110 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_deleted.py +137 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_deleting.py +137 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_inactive.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_affiliate_update.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge.py +201 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_create.py +123 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_processing_type.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_charge_type.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_component_configuration.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_component_reference_configuration.py +100 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_create_request.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_initialize_subscriber_present_request.py +100 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry.py +202 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry_create.py +121 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_ledger_entry_state.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric.py +130 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_active.py +102 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_create.py +102 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_type.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_update.py +102 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_usage_report.py +142 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_metric_usage_report_create.py +107 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_pending.py +122 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_period_bill.py +142 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_period_bill_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_period_bill_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_period_bill_state.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product.py +155 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_active.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component.py +158 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_group.py +126 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_group_update.py +106 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_reference.py +135 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_reference_state.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_component_update.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_create.py +119 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_retirement.py +128 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_retirement_request.py +100 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version.py +188 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version_pending.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version_retirement.py +129 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version_retirement_request.py +100 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_product_version_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_state.py +54 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_suspension.py +153 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_suspension_action.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_suspension_reason.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_suspension_state.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_update.py +106 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_update_request.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_version.py +186 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_version_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_version_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/subscription_version_state.py +52 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/suspension_creation_request.py +105 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/suspension_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/suspension_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/tax.py +105 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/tax_calculation.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/tax_class.py +121 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/tax_create.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/tenant_database.py +109 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/terminal_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/terminal_receipt_format.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/terminal_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token.py +159 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_create.py +124 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_update.py +121 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_version.py +228 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_retry_strategy.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_state.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/token_version_type.py +114 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/tokenization_mode.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/tokenized_card_data.py +113 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/tokenized_card_data_create.py +148 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/tokenized_card_request.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction.py +424 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_client_platform_information.py +128 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment.py +140 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment_active.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment_create.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_comment_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion.py +284 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion_behavior.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion_details.py +145 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion_mode.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_completion_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_create.py +201 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_environment_selection_strategy.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_group.py +139 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_group_state.py +49 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice.py +220 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_comment.py +140 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_comment_active.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_comment_create.py +101 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_replacement.py +139 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_invoice_state.py +53 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_line_item_version.py +204 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_line_item_version_create.py +110 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_line_item_version_state.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_pending.py +174 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_state.py +56 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_user_interface_type.py +52 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void.py +183 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void_mode.py +48 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/transaction_void_state.py +50 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/two_factor_authentication_type.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/user.py +119 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/user_account_role.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/user_account_role_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/user_space_role.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/user_space_role_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/user_type.py +51 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/wallet_type.py +122 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/web_app_confirmation_response.py +118 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_identity.py +121 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener.py +149 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_create.py +112 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_entity.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_listener_update.py +108 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url.py +129 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url_create.py +104 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url_list_response.py +116 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url_search_response.py +120 -0
- postfinancecheckout-6.0.0/postfinancecheckout/models/webhook_url_update.py +106 -0
- postfinancecheckout-6.0.0/postfinancecheckout/postfinancecheckout_sdk_exception.py +36 -0
- postfinancecheckout-6.0.0/postfinancecheckout/py.typed +0 -0
- postfinancecheckout-6.0.0/postfinancecheckout/rest.py +276 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/__init__.py +113 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/accounts_service.py +2221 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/analytics_queries_service.py +1375 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/application_users_roles_service.py +1668 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/application_users_service.py +2476 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/bank_accounts_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/bank_transactions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/charge_attempts_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/charge_bank_transactions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/charge_flow_levels_service.py +1230 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/charge_flows_level_payment_links_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/charge_flows_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/condition_types_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/countries_service.py +1564 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/currencies_service.py +840 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/currency_bank_accounts_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/customer_addresses_service.py +2185 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/customer_comments_service.py +2458 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/customers_service.py +3213 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/delivery_indications_service.py +1524 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/document_template_types_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/document_templates_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/dunning_cases_service.py +1515 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/dunning_flow_levels_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/dunning_flows_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/express_checkout_service.py +315 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/external_transfer_bank_transactions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/human_users_roles_service.py +1668 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/human_users_service.py +2053 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/internal_transfer_bank_transactions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/label_descriptors_service.py +1810 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/languages_service.py +840 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/legal_organization_forms_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/manual_tasks_service.py +1501 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_connector_configurations_service.py +1825 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_connectors_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_links_service.py +1825 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_method_brands_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_method_configurations_service.py +1825 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_methods_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_processor_configurations_service.py +1825 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_processors_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_sales_channels_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/payment_terminals_service.py +3798 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/permissions_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/refund_bank_transactions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/refund_comments_service.py +2458 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/refund_recovery_bank_transactions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/refunds_service.py +2070 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/roles_service.py +1735 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/single_sign_on_users_roles_service.py +1668 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/single_sign_on_users_service.py +1735 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/spaces_service.py +1735 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/static_values_service.py +927 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscribers_service.py +1822 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_affiliates_service.py +1822 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_charges_service.py +1538 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_ledger_entries_service.py +1262 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_metric_usage_reports_service.py +1262 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_metrics_service.py +1822 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_period_bills_service.py +1292 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_component_groups_service.py +1821 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_components_service.py +1821 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_metered_fee_tiers_service.py +1911 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_metered_fees_service.py +1821 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_period_fees_service.py +1821 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_retirements_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_setup_fees_service.py +1821 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_version_retirements_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_product_versions_service.py +2148 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_products_service.py +1873 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_suspensions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscription_versions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/subscriptions_service.py +3928 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/token_versions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/tokens_service.py +2376 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_client_platforms_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_comments_service.py +2458 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_completions_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_invoice_comments_service.py +2458 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_invoices_service.py +2340 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_line_item_versions_service.py +1262 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/transaction_voids_service.py +972 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/transactions_service.py +10454 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/web_apps_service.py +797 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/webhook_encryption_keys_service.py +320 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/webhook_listeners_service.py +2645 -0
- postfinancecheckout-6.0.0/postfinancecheckout/service/webhook_urls_service.py +2645 -0
- postfinancecheckout-6.0.0/postfinancecheckout.egg-info/PKG-INFO +44 -0
- postfinancecheckout-6.0.0/postfinancecheckout.egg-info/SOURCES.txt +652 -0
- postfinancecheckout-6.0.0/postfinancecheckout.egg-info/requires.txt +13 -0
- postfinancecheckout-6.0.0/pyproject.toml +77 -0
- postfinancecheckout-6.0.0/setup.cfg +7 -0
- postfinancecheckout-6.0.0/setup.py +86 -0
- postfinancecheckout-6.0.0/tests/test_encryption_util.py +107 -0
- postfinancecheckout-6.0.0/tests/test_querying.py +340 -0
- postfinancecheckout-6.0.0/tests/test_refunds_service.py +150 -0
- postfinancecheckout-6.0.0/tests/test_transaction_completions_service.py +85 -0
- postfinancecheckout-6.0.0/tests/test_transactions_service.py +1194 -0
- postfinancecheckout-6.0.0/tests/test_webhook_listeners_api.py +131 -0
- postfinancecheckout-5.2.2/LICENSE +0 -201
- postfinancecheckout-5.2.2/PKG-INFO +0 -180
- postfinancecheckout-5.2.2/README.md +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/__init__.py +0 -513
- postfinancecheckout-5.2.2/postfinancecheckout/api/__init__.py +0 -105
- postfinancecheckout-5.2.2/postfinancecheckout/api/account_service_api.py +0 -627
- postfinancecheckout-5.2.2/postfinancecheckout/api/application_user_service_api.py +0 -627
- postfinancecheckout-5.2.2/postfinancecheckout/api/bank_account_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/bank_transaction_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/card_processing_service_api.py +0 -263
- postfinancecheckout-5.2.2/postfinancecheckout/api/charge_attempt_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/charge_bank_transaction_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/charge_flow_level_payment_link_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/charge_flow_level_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/charge_flow_service_api.py +0 -786
- postfinancecheckout-5.2.2/postfinancecheckout/api/condition_type_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/country_service_api.py +0 -108
- postfinancecheckout-5.2.2/postfinancecheckout/api/country_state_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/currency_bank_account_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/currency_service_api.py +0 -108
- postfinancecheckout-5.2.2/postfinancecheckout/api/customer_address_service_api.py +0 -786
- postfinancecheckout-5.2.2/postfinancecheckout/api/customer_comment_service_api.py +0 -897
- postfinancecheckout-5.2.2/postfinancecheckout/api/customer_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/delivery_indication_service_api.py +0 -556
- postfinancecheckout-5.2.2/postfinancecheckout/api/document_template_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/document_template_type_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_case_level_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_case_service_api.py +0 -560
- postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_flow_level_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/dunning_flow_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/external_transfer_bank_transaction_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/human_user_service_api.py +0 -730
- postfinancecheckout-5.2.2/postfinancecheckout/api/internal_transfer_bank_transaction_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/invoice_reconciliation_record_invoice_link_service_api.py +0 -568
- postfinancecheckout-5.2.2/postfinancecheckout/api/invoice_reconciliation_record_service_api.py +0 -659
- postfinancecheckout-5.2.2/postfinancecheckout/api/invoice_reimbursement_service_api.py +0 -564
- postfinancecheckout-5.2.2/postfinancecheckout/api/label_description_group_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/label_description_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/language_service_api.py +0 -108
- postfinancecheckout-5.2.2/postfinancecheckout/api/legal_organization_form_service_api.py +0 -314
- postfinancecheckout-5.2.2/postfinancecheckout/api/manual_task_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_connector_configuration_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_connector_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_link_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_method_brand_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_method_configuration_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_method_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_processor_configuration_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_processor_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_terminal_service_api.py +0 -762
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_terminal_till_service_api.py +0 -259
- postfinancecheckout-5.2.2/postfinancecheckout/api/payment_terminal_transaction_summary_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/permission_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/refund_bank_transaction_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/refund_comment_service_api.py +0 -790
- postfinancecheckout-5.2.2/postfinancecheckout/api/refund_recovery_bank_transaction_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/refund_service_api.py +0 -897
- postfinancecheckout-5.2.2/postfinancecheckout/api/shopify_recurring_order_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/shopify_subscriber_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/shopify_subscription_product_service_api.py +0 -564
- postfinancecheckout-5.2.2/postfinancecheckout/api/shopify_subscription_service_api.py +0 -790
- postfinancecheckout-5.2.2/postfinancecheckout/api/shopify_subscription_suspension_service_api.py +0 -560
- postfinancecheckout-5.2.2/postfinancecheckout/api/shopify_subscription_version_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/shopify_transaction_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/space_service_api.py +0 -627
- postfinancecheckout-5.2.2/postfinancecheckout/api/static_value_service_api.py +0 -211
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscriber_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_affiliate_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_charge_service_api.py +0 -560
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_ledger_entry_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_metric_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_metric_usage_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_period_bill_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_component_group_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_component_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_fee_tier_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_metered_fee_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_period_fee_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_retirement_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_service_api.py +0 -564
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_setup_fee_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_version_retirement_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_product_version_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_service_api.py +0 -1254
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_suspension_service_api.py +0 -548
- postfinancecheckout-5.2.2/postfinancecheckout/api/subscription_version_service_api.py +0 -342
- postfinancecheckout-5.2.2/postfinancecheckout/api/token_service_api.py +0 -1190
- postfinancecheckout-5.2.2/postfinancecheckout/api/token_version_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_comment_service_api.py +0 -790
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_completion_service_api.py +0 -778
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_iframe_service_api.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_invoice_comment_service_api.py +0 -790
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_invoice_service_api.py +0 -1024
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_lightbox_service_api.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_line_item_version_service_api.py +0 -453
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_mobile_sdk_service_api.py +0 -112
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_payment_page_service_api.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_service_api.py +0 -1947
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_terminal_service_api.py +0 -239
- postfinancecheckout-5.2.2/postfinancecheckout/api/transaction_void_service_api.py +0 -556
- postfinancecheckout-5.2.2/postfinancecheckout/api/user_account_role_service_api.py +0 -338
- postfinancecheckout-5.2.2/postfinancecheckout/api/user_space_role_service_api.py +0 -334
- postfinancecheckout-5.2.2/postfinancecheckout/api/web_app_service_api.py +0 -306
- postfinancecheckout-5.2.2/postfinancecheckout/api/webhook_encryption_service_api.py +0 -147
- postfinancecheckout-5.2.2/postfinancecheckout/api/webhook_listener_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api/webhook_url_service_api.py +0 -675
- postfinancecheckout-5.2.2/postfinancecheckout/api_client.py +0 -687
- postfinancecheckout-5.2.2/postfinancecheckout/configuration.py +0 -267
- postfinancecheckout-5.2.2/postfinancecheckout/encryption_util.py +0 -45
- postfinancecheckout-5.2.2/postfinancecheckout/models/__init__.py +0 -406
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_account_update.py +0 -150
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_application_user_update.py +0 -148
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_customer_active.py +0 -258
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_customer_address_active.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_customer_comment_active.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_human_user_update.py +0 -284
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_payment_link_update.py +0 -382
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_refund_comment_active.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_shopify_subscription_product_update.py +0 -432
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_space_update.py +0 -280
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscriber_update.py +0 -308
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscription_affiliate_update.py +0 -176
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscription_metric_update.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_subscription_product_active.py +0 -226
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_token_update.py +0 -228
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_transaction_comment_active.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_transaction_invoice_comment_active.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_transaction_pending.py +0 -578
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_webhook_listener_update.py +0 -174
- postfinancecheckout-5.2.2/postfinancecheckout/models/abstract_webhook_url_update.py +0 -152
- postfinancecheckout-5.2.2/postfinancecheckout/models/account.py +0 -514
- postfinancecheckout-5.2.2/postfinancecheckout/models/account_create.py +0 -125
- postfinancecheckout-5.2.2/postfinancecheckout/models/account_state.py +0 -14
- postfinancecheckout-5.2.2/postfinancecheckout/models/account_type.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/account_update.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/address.py +0 -618
- postfinancecheckout-5.2.2/postfinancecheckout/models/address_create.py +0 -618
- postfinancecheckout-5.2.2/postfinancecheckout/models/application_user.py +0 -150
- postfinancecheckout-5.2.2/postfinancecheckout/models/application_user_create.py +0 -99
- postfinancecheckout-5.2.2/postfinancecheckout/models/application_user_create_with_mac_key.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/application_user_update.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/authenticated_card_data.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/authenticated_card_data_create.py +0 -343
- postfinancecheckout-5.2.2/postfinancecheckout/models/bank_account.py +0 -280
- postfinancecheckout-5.2.2/postfinancecheckout/models/bank_account_environment.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/bank_account_state.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/bank_account_type.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/bank_transaction.py +0 -566
- postfinancecheckout-5.2.2/postfinancecheckout/models/bank_transaction_flow_direction.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/bank_transaction_source.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/bank_transaction_state.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/bank_transaction_type.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/billing_configuration.py +0 -302
- postfinancecheckout-5.2.2/postfinancecheckout/models/billing_cycle_model.py +0 -230
- postfinancecheckout-5.2.2/postfinancecheckout/models/billing_cycle_type.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/billing_day_customization.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/card_authentication_response.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/card_authentication_version.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/card_cryptogram.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/card_cryptogram_create.py +0 -123
- postfinancecheckout-5.2.2/postfinancecheckout/models/cardholder_authentication.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/cardholder_authentication_create.py +0 -204
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge.py +0 -432
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_attempt.py +0 -824
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_attempt_environment.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_attempt_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_bank_transaction.py +0 -354
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_flow.py +0 -276
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_flow_level.py +0 -406
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_flow_level_configuration.py +0 -330
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_flow_level_configuration_type.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_flow_level_payment_link.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_flow_level_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/charge_type.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/client_error.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/client_error_type.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/completion_line_item.py +0 -148
- postfinancecheckout-5.2.2/postfinancecheckout/models/completion_line_item_create.py +0 -157
- postfinancecheckout-5.2.2/postfinancecheckout/models/condition.py +0 -252
- postfinancecheckout-5.2.2/postfinancecheckout/models/condition_type.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/connector_invocation.py +0 -276
- postfinancecheckout-5.2.2/postfinancecheckout/models/connector_invocation_stage.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/creation_entity_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/criteria_operator.py +0 -20
- postfinancecheckout-5.2.2/postfinancecheckout/models/currency_bank_account.py +0 -224
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer.py +0 -362
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_active.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_address.py +0 -276
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_address_active.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_address_create.py +0 -99
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_address_type.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_comment.py +0 -330
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_comment_active.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_comment_create.py +0 -99
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_create.py +0 -70
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_postal_address.py +0 -618
- postfinancecheckout-5.2.2/postfinancecheckout/models/customer_postal_address_create.py +0 -618
- postfinancecheckout-5.2.2/postfinancecheckout/models/customers_presence.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/data_collection_type.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/delivery_indication.py +0 -432
- postfinancecheckout-5.2.2/postfinancecheckout/models/delivery_indication_decision_reason.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/delivery_indication_state.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/displayable_day_of_week.py +0 -15
- postfinancecheckout-5.2.2/postfinancecheckout/models/displayable_month.py +0 -20
- postfinancecheckout-5.2.2/postfinancecheckout/models/document_template.py +0 -356
- postfinancecheckout-5.2.2/postfinancecheckout/models/document_template_type.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/document_template_type_group.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case.py +0 -406
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case_level.py +0 -510
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case_level_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_case_state.py +0 -14
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_condition.py +0 -252
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_condition_type.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow.py +0 -302
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow_level.py +0 -408
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow_level_processor.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/dunning_flow_type.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/entity_export_request.py +0 -123
- postfinancecheckout-5.2.2/postfinancecheckout/models/entity_query.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/entity_query_filter.py +0 -201
- postfinancecheckout-5.2.2/postfinancecheckout/models/entity_query_filter_type.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/entity_query_order_by.py +0 -126
- postfinancecheckout-5.2.2/postfinancecheckout/models/entity_query_order_by_type.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/environment.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/external_transfer_bank_transaction.py +0 -250
- postfinancecheckout-5.2.2/postfinancecheckout/models/failure_category.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/failure_reason.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/feature.py +0 -302
- postfinancecheckout-5.2.2/postfinancecheckout/models/feature_category.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/gender.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/human_user.py +0 -388
- postfinancecheckout-5.2.2/postfinancecheckout/models/human_user_create.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/human_user_update.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/internal_transfer_bank_transaction.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/invoice_reconciliation_record.py +0 -934
- postfinancecheckout-5.2.2/postfinancecheckout/models/invoice_reconciliation_record_invoice_link.py +0 -224
- postfinancecheckout-5.2.2/postfinancecheckout/models/invoice_reconciliation_record_rejection_status.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/invoice_reconciliation_record_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/invoice_reconciliation_record_type.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/invoice_reimbursement.py +0 -640
- postfinancecheckout-5.2.2/postfinancecheckout/models/invoice_reimbursement_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/invoice_reimbursement_with_refund_reference.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/item.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/label.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/label_descriptor.py +0 -276
- postfinancecheckout-5.2.2/postfinancecheckout/models/label_descriptor_category.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/label_descriptor_group.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/label_descriptor_type.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/legal_organization_form.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/line_item.py +0 -622
- postfinancecheckout-5.2.2/postfinancecheckout/models/line_item_attribute.py +0 -124
- postfinancecheckout-5.2.2/postfinancecheckout/models/line_item_attribute_create.py +0 -130
- postfinancecheckout-5.2.2/postfinancecheckout/models/line_item_create.py +0 -351
- postfinancecheckout-5.2.2/postfinancecheckout/models/line_item_reduction.py +0 -148
- postfinancecheckout-5.2.2/postfinancecheckout/models/line_item_reduction_create.py +0 -157
- postfinancecheckout-5.2.2/postfinancecheckout/models/line_item_type.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/localized_string.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/manual_task.py +0 -302
- postfinancecheckout-5.2.2/postfinancecheckout/models/manual_task_action.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/manual_task_action_style.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/manual_task_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/manual_task_type.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/one_click_payment_mode.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/pan_type.py +0 -16
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_adjustment.py +0 -224
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_adjustment_type.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_connector.py +0 -406
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_connector_configuration.py +0 -460
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_connector_feature.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_contract.py +0 -484
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_contract_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_contract_type.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_information_hash.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_information_hash_type.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_initiation_advice_file.py +0 -328
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_initiation_advice_file_state.py +0 -15
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_link.py +0 -590
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_link_active.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_link_address_handling_mode.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_link_create.py +0 -154
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_link_protection_mode.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_link_update.py +0 -440
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_method.py +0 -250
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_method_brand.py +0 -224
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_method_configuration.py +0 -512
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_primary_risk_taker.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_processor.py +0 -250
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_processor_configuration.py +0 -304
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal.py +0 -434
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_address.py +0 -442
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_configuration.py +0 -252
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_configuration_state.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_configuration_version.py +0 -432
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_configuration_version_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_dcc_transaction_sum.py +0 -276
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_location.py +0 -252
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_location_state.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_location_version.py +0 -354
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_location_version_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_receipt_type.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_state.py +0 -14
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_transaction_sum.py +0 -354
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_transaction_summary.py +0 -380
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_transaction_summary_fetch_request.py +0 -152
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_transaction_summary_reference.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/payment_terminal_type.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/permission.py +0 -354
- postfinancecheckout-5.2.2/postfinancecheckout/models/persistable_currency_amount.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/persistable_currency_amount_update.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_fee_type.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_fee.py +0 -302
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_fee_update.py +0 -256
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_tier_fee.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_tier_fee_update.py +0 -204
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_metered_tier_pricing.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_period_fee.py +0 -328
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_period_fee_update.py +0 -282
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_setup_fee.py +0 -328
- postfinancecheckout-5.2.2/postfinancecheckout/models/product_setup_fee_update.py +0 -282
- postfinancecheckout-5.2.2/postfinancecheckout/models/recurring_indicator.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/refund.py +0 -908
- postfinancecheckout-5.2.2/postfinancecheckout/models/refund_bank_transaction.py +0 -328
- postfinancecheckout-5.2.2/postfinancecheckout/models/refund_comment.py +0 -330
- postfinancecheckout-5.2.2/postfinancecheckout/models/refund_comment_active.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/refund_comment_create.py +0 -99
- postfinancecheckout-5.2.2/postfinancecheckout/models/refund_create.py +0 -262
- postfinancecheckout-5.2.2/postfinancecheckout/models/refund_recovery_bank_transaction.py +0 -354
- postfinancecheckout-5.2.2/postfinancecheckout/models/refund_state.py +0 -14
- postfinancecheckout-5.2.2/postfinancecheckout/models/refund_type.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/rendered_document.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/rendered_terminal_receipt.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/rendered_terminal_transaction_summary.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/resource_path.py +0 -254
- postfinancecheckout-5.2.2/postfinancecheckout/models/resource_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/rest_address_format.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/rest_address_format_field.py +0 -18
- postfinancecheckout-5.2.2/postfinancecheckout/models/rest_country.py +0 -224
- postfinancecheckout-5.2.2/postfinancecheckout/models/rest_country_state.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/rest_currency.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/rest_language.py +0 -250
- postfinancecheckout-5.2.2/postfinancecheckout/models/role.py +0 -276
- postfinancecheckout-5.2.2/postfinancecheckout/models/role_state.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/sales_channel.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/scope.py +0 -442
- postfinancecheckout-5.2.2/postfinancecheckout/models/server_error.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_additional_line_item_data.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_integration_payment_app_version.py +0 -9
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_integration_subscription_app_version.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_recurring_order.py +0 -562
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_recurring_order_state.py +0 -14
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_recurring_order_update_request.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscriber.py +0 -358
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscriber_active.py +0 -234
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscriber_creation.py +0 -175
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscriber_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription.py +0 -514
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_address.py +0 -70
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_address_create.py +0 -610
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_billing_interval_unit.py +0 -14
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_creation_request.py +0 -456
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_product.py +0 -874
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_product_create.py +0 -209
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_product_pricing_option.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_product_state.py +0 -14
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_product_update.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_state.py +0 -14
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_suspension.py +0 -406
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_suspension_create.py +0 -155
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_suspension_initiator.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_suspension_state.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_suspension_type.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_update_addresses_request.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_update_request.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_version.py +0 -796
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_version_item.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_version_item_price_strategy.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_version_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_subscription_weekday.py +0 -15
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_tax_line.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_transaction.py +0 -432
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_transaction_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/shopify_v1_integration.py +0 -724
- postfinancecheckout-5.2.2/postfinancecheckout/models/space.py +0 -592
- postfinancecheckout-5.2.2/postfinancecheckout/models/space_address.py +0 -476
- postfinancecheckout-5.2.2/postfinancecheckout/models/space_address_create.py +0 -476
- postfinancecheckout-5.2.2/postfinancecheckout/models/space_create.py +0 -125
- postfinancecheckout-5.2.2/postfinancecheckout/models/space_update.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/space_view.py +0 -254
- postfinancecheckout-5.2.2/postfinancecheckout/models/static_value.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber.py +0 -464
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber_active.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber_create.py +0 -125
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscriber_update.py +0 -366
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription.py +0 -592
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate.py +0 -336
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_create.py +0 -132
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_deleted.py +0 -70
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_deleting.py +0 -70
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_inactive.py +0 -70
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_affiliate_update.py +0 -234
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_change_request.py +0 -233
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge.py +0 -624
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_create.py +0 -269
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_processing_type.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_charge_type.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_component_configuration.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_component_reference_configuration.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_create_request.py +0 -207
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_ledger_entry.py +0 -646
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_ledger_entry_create.py +0 -295
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_ledger_entry_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric.py +0 -276
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_active.py +0 -70
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_create.py +0 -99
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_type.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_update.py +0 -178
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_usage_report.py +0 -356
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_metric_usage_report_create.py +0 -212
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_pending.py +0 -150
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_period_bill.py +0 -354
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_period_bill_state.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product.py +0 -384
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_active.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component.py +0 -432
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_group.py +0 -250
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_group_update.py +0 -230
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_reference.py +0 -254
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_reference_state.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_component_update.py +0 -412
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_create.py +0 -101
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_retirement.py +0 -250
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_retirement_create.py +0 -149
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version.py +0 -642
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_pending.py +0 -386
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_retirement.py +0 -250
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_retirement_create.py +0 -149
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_product_version_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_state.py +0 -16
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension.py +0 -434
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_action.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_create.py +0 -183
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_reason.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_running.py +0 -70
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_suspension_state.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_update.py +0 -206
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_update_request.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_version.py +0 -562
- postfinancecheckout-5.2.2/postfinancecheckout/models/subscription_version_state.py +0 -14
- postfinancecheckout-5.2.2/postfinancecheckout/models/tax.py +0 -124
- postfinancecheckout-5.2.2/postfinancecheckout/models/tax_calculation.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/tax_class.py +0 -226
- postfinancecheckout-5.2.2/postfinancecheckout/models/tax_create.py +0 -130
- postfinancecheckout-5.2.2/postfinancecheckout/models/tax_line.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/tenant_database.py +0 -148
- postfinancecheckout-5.2.2/postfinancecheckout/models/terminal_receipt_fetch_request.py +0 -152
- postfinancecheckout-5.2.2/postfinancecheckout/models/terminal_receipt_format.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/token.py +0 -410
- postfinancecheckout-5.2.2/postfinancecheckout/models/token_create.py +0 -125
- postfinancecheckout-5.2.2/postfinancecheckout/models/token_update.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/token_version.py +0 -670
- postfinancecheckout-5.2.2/postfinancecheckout/models/token_version_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/token_version_type.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/tokenization_mode.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/tokenized_card_data.py +0 -172
- postfinancecheckout-5.2.2/postfinancecheckout/models/tokenized_card_data_create.py +0 -317
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction.py +0 -1908
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_comment.py +0 -330
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_comment_active.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_comment_create.py +0 -99
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_completion.py +0 -882
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_completion_behavior.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_completion_mode.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_completion_request.py +0 -241
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_completion_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_create.py +0 -282
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_environment_selection_strategy.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_group.py +0 -278
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_group_state.py +0 -11
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_invoice.py +0 -672
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_invoice_comment.py +0 -330
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_invoice_comment_active.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_invoice_comment_create.py +0 -99
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_invoice_replacement.py +0 -236
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_invoice_state.py +0 -15
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_line_item_version.py +0 -640
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_line_item_version_create.py +0 -155
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_line_item_version_state.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_pending.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_state.py +0 -18
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_user_interface_type.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_void.py +0 -562
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_void_mode.py +0 -10
- postfinancecheckout-5.2.2/postfinancecheckout/models/transaction_void_state.py +0 -12
- postfinancecheckout-5.2.2/postfinancecheckout/models/two_factor_authentication_type.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/user.py +0 -224
- postfinancecheckout-5.2.2/postfinancecheckout/models/user_account_role.py +0 -224
- postfinancecheckout-5.2.2/postfinancecheckout/models/user_space_role.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/user_type.py +0 -13
- postfinancecheckout-5.2.2/postfinancecheckout/models/wallet_type.py +0 -224
- postfinancecheckout-5.2.2/postfinancecheckout/models/web_app_confirmation_request.py +0 -96
- postfinancecheckout-5.2.2/postfinancecheckout/models/web_app_confirmation_response.py +0 -198
- postfinancecheckout-5.2.2/postfinancecheckout/models/webhook_encryption_public_key.py +0 -120
- postfinancecheckout-5.2.2/postfinancecheckout/models/webhook_identity.py +0 -226
- postfinancecheckout-5.2.2/postfinancecheckout/models/webhook_listener.py +0 -382
- postfinancecheckout-5.2.2/postfinancecheckout/models/webhook_listener_create.py +0 -154
- postfinancecheckout-5.2.2/postfinancecheckout/models/webhook_listener_entity.py +0 -146
- postfinancecheckout-5.2.2/postfinancecheckout/models/webhook_listener_update.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/models/webhook_url.py +0 -282
- postfinancecheckout-5.2.2/postfinancecheckout/models/webhook_url_create.py +0 -70
- postfinancecheckout-5.2.2/postfinancecheckout/models/webhook_url_update.py +0 -128
- postfinancecheckout-5.2.2/postfinancecheckout/rest.py +0 -319
- postfinancecheckout-5.2.2/postfinancecheckout.egg-info/PKG-INFO +0 -180
- postfinancecheckout-5.2.2/postfinancecheckout.egg-info/SOURCES.txt +0 -528
- postfinancecheckout-5.2.2/postfinancecheckout.egg-info/requires.txt +0 -6
- postfinancecheckout-5.2.2/setup.cfg +0 -4
- postfinancecheckout-5.2.2/setup.py +0 -43
- postfinancecheckout-5.2.2/test/test_charge_attempt_service.py +0 -81
- postfinancecheckout-5.2.2/test/test_refund.py +0 -244
- postfinancecheckout-5.2.2/test/test_transaction_completion_service.py +0 -197
- postfinancecheckout-5.2.2/test/test_transaction_iframe_service.py +0 -40
- postfinancecheckout-5.2.2/test/test_transaction_invoice_service.py +0 -132
- postfinancecheckout-5.2.2/test/test_transaction_lightbox_service.py +0 -40
- postfinancecheckout-5.2.2/test/test_transaction_payment_page_service.py +0 -40
- postfinancecheckout-5.2.2/test/test_transaction_service.py +0 -361
- postfinancecheckout-5.2.2/test/test_webhook_encryption_service.py +0 -78
- {postfinancecheckout-5.2.2 → postfinancecheckout-6.0.0}/postfinancecheckout.egg-info/dependency_links.txt +0 -0
- {postfinancecheckout-5.2.2 → postfinancecheckout-6.0.0}/postfinancecheckout.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: postfinancecheckout
|
|
3
|
+
Version: 6.0.0
|
|
4
|
+
Summary: PostFinance Checkout API
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: postfinancecheckout
|
|
7
|
+
Author-email: team@openapitools.org
|
|
8
|
+
Keywords: OpenAPI,OpenAPI-Generator,PostFinance Checkout API
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
19
|
+
Classifier: Topic :: Office/Business :: Financial :: Point-Of-Sale
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
Requires-Dist: pydantic>=2.10.4
|
|
22
|
+
Requires-Dist: PyJWT>=2.10.1
|
|
23
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
24
|
+
Requires-Dist: typing-extensions>=4.12.2
|
|
25
|
+
Requires-Dist: urllib3<3,>=2.3
|
|
26
|
+
Requires-Dist: cryptography>=2.0
|
|
27
|
+
Provides-Extra: dev
|
|
28
|
+
Requires-Dist: flake8>=7.1.1; extra == "dev"
|
|
29
|
+
Requires-Dist: mypy>=1.14.1; extra == "dev"
|
|
30
|
+
Requires-Dist: pytest>=3.9; extra == "dev"
|
|
31
|
+
Requires-Dist: tox>=4.23.2; extra == "dev"
|
|
32
|
+
Requires-Dist: types-python-dateutil>=2.9.0.20241206; extra == "dev"
|
|
33
|
+
Dynamic: author
|
|
34
|
+
Dynamic: author-email
|
|
35
|
+
Dynamic: classifier
|
|
36
|
+
Dynamic: description
|
|
37
|
+
Dynamic: description-content-type
|
|
38
|
+
Dynamic: keywords
|
|
39
|
+
Dynamic: provides-extra
|
|
40
|
+
Dynamic: requires-dist
|
|
41
|
+
Dynamic: summary
|
|
42
|
+
|
|
43
|
+
The PostFinance Checkout API allows to create integrations, retrieve data and automate workflows.
|
|
44
|
+
|