brevo-python 4.0.7__tar.gz → 4.0.9__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.
- {brevo_python-4.0.7 → brevo_python-4.0.9}/PKG-INFO +1 -1
- {brevo_python-4.0.7 → brevo_python-4.0.9}/pyproject.toml +1 -1
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/__init__.py +33 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/__init__.py +12 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/client.py +96 -18
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/raw_client.py +113 -18
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/__init__.py +18 -0
- brevo_python-4.0.9/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_request_status.py +7 -0
- brevo_python-4.0.9/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_request_transaction_type.py +7 -0
- brevo_python-4.0.9/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_meta.py +30 -0
- brevo_python-4.0.9/src/brevo/balance/types/update_balance_definition_request_meta.py +30 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/client.py +6 -6
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/raw_client.py +14 -10
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/client_wrapper.py +2 -2
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/pydantic_utilities.py +70 -13
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/unchecked_base_model.py +4 -2
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/client.py +30 -10
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/raw_client.py +46 -18
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_batch_order_response.py +5 -5
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_products_request_products_item.py +11 -1
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/client.py +158 -4
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/raw_client.py +257 -6
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/client.py +10 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/raw_client.py +10 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/__init__.py +6 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/client.py +22 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/raw_client.py +30 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/__init__.py +6 -0
- brevo_python-4.0.9/src/brevo/tier/types/create_tier_group_request_meta.py +30 -0
- brevo_python-4.0.9/src/brevo/tier/types/update_tier_group_request_meta.py +30 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/__init__.py +15 -0
- brevo_python-4.0.9/src/brevo/types/batch_accepted_response.py +32 -0
- brevo_python-4.0.9/src/brevo/types/get_events_list.py +33 -0
- brevo_python-4.0.9/src/brevo/types/get_events_list_events_item.py +59 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_product_details.py +10 -0
- brevo_python-4.0.9/src/brevo/types/internal_server_error_body.py +29 -0
- brevo_python-4.0.9/src/brevo/types/internal_server_error_body_code.py +45 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/README.md +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_activity_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_activity_response_logs_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_address.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_date_time_preferences.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_marketing_automation.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_item_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_verticals_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_verticals_item_plan_category.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_verticals_item_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_plan_verticals_item_users.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_relay.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/account/types/get_account_response_relay_data.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/create_balance_limit_request_constraint_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/create_balance_limit_request_duration_unit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/create_balance_limit_request_transaction_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/create_balance_order_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_list_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_list_request_sort_field.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_list_request_version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_list_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_definition_request_version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_balance_limit_request_version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_contact_balances_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_contact_balances_response_balances_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_loyalty_balance_programs_pid_transaction_history_response_transaction_history_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_subscription_balances_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/get_subscription_balances_response_balance_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_availability_duration_modifier.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_availability_duration_unit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_option_amount_overtaking_strategy.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_option_credit_rounding.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_balance_option_debit_rounding.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_balance_definitions_request_unit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/post_loyalty_balance_programs_pid_subscriptions_cid_balances_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_availability_duration_modifier.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_availability_duration_unit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_option_amount_overtaking_strategy.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_option_credit_rounding.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_balance_option_debit_rounding.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_definition_request_unit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_limit_request_constraint_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_limit_request_duration_unit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/balance/types/update_balance_limit_request_transaction_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/get_companies_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/get_companies_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/get_crm_attributes_companies_response_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/patch_crm_attributes_id_request_object_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/patch_crm_attributes_id_request_options_labels_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_companies_import_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_companies_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_crm_attributes_request_attribute_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_crm_attributes_request_object_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/companies/types/post_crm_attributes_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/add_contact_to_list_request_body.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/add_contact_to_list_request_body_emails.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/add_contact_to_list_request_body_ext_ids.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/add_contact_to_list_request_body_ids.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_attribute_request_attribute_category.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_attribute_request_enumeration_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_attribute_request_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_contact_request_attributes_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_contact_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_doi_contact_request_attributes_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_folder_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/create_list_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/delete_attribute_request_attribute_category.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/delete_contact_request_identifier.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/delete_contact_request_identifier_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response_attributes_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response_attributes_item_category.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response_attributes_item_enumeration_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_attributes_response_attributes_item_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_request_identifier.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_request_identifier_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_attributes.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_clicked_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_clicked_item_links_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_complaints_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_delivered_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_hard_bounces_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_messages_sent_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_opened_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_soft_bounces_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_transac_attributes_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_unsubscriptions.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_unsubscriptions_admin_unsubscription_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_info_response_statistics_unsubscriptions_user_unsubscription_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_request_identifier.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_clicked_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_clicked_item_links_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_complaints_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_delivered_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_hard_bounces_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_messages_sent_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_opened_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_soft_bounces_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_transac_attributes_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_unsubscriptions.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_unsubscriptions_admin_unsubscription_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contact_stats_response_unsubscriptions_user_unsubscription_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contacts_from_list_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_contacts_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_folder_lists_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_folder_lists_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_folders_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_folders_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_list_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_list_response_campaign_stats_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_lists_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_lists_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_lists_response_lists_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_segments_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_segments_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/get_segments_response_segments_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/import_contacts_request_json_body_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/import_contacts_request_new_list.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/import_contacts_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body_all.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body_emails.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body_ext_ids.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/remove_contact_from_list_request_body_ids.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_request_custom_contact_filter.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_request_custom_contact_filter_action_for_contacts.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_request_custom_contact_filter_action_for_email_campaigns.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_request_custom_contact_filter_action_for_sms_campaigns.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/request_contact_export_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_attribute_request_attribute_category.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_attribute_request_enumeration_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_batch_contacts_request_contacts_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_contact_request_attributes_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_contact_request_identifier.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/contacts/types/update_contact_request_identifier_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/conversations/types/put_conversations_visitor_group_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/api_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/datetime_utils.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/file.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/force_multipart.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/_api.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/_decoders.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/_exceptions.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/http_sse/_models.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/jsonable_encoder.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/logging.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/parse_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/query_encoder.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/remove_none_from_dict.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/request_options.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/core/serialization.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/create_coupon_collection_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/get_coupon_collections_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/get_coupon_collections_request_sort_by.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/coupons/types/update_coupon_collection_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/batch_delete_object_records_request_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/batch_delete_object_records_request_identifiers_ext_ids.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/batch_delete_object_records_request_identifiers_ids.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/batch_delete_object_records_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_request_association.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item_one.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item_one_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item_zero.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_one_records_item_zero_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item_one.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item_one_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item_zero.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_associations_item_zero_records_item_zero_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/getrecords_response_records_item_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one_records_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one_records_item_one.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one_records_item_zero.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_one_records_item_zero_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_zero.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_zero_records_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_associations_item_zero_records_item_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_request_records_item_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/custom_objects/types/upsertrecords_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/get_crm_attributes_deals_response_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/get_crm_deals_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/get_crm_deals_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/post_crm_deals_import_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/deals/types/post_crm_deals_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/authenticate_domain_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response_dns_records.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response_dns_records_brevo_code.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response_dns_records_dkim_record.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/create_domain_response_dns_records_dmarc_record.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response_dns_records.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response_dns_records_brevo_code.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response_dns_records_dkim_record.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domain_configuration_response_dns_records_dmarc_record.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domains_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domains_response_domains_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/domains/types/get_domains_response_domains_item_creator.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_product_alert_request_contact_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_category_request_categories_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_category_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_products_request_products_item_meta_info_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_batch_products_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_category_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_product_request_meta_info_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/create_update_product_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_categories_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_categories_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_conversion_source_conversion_source_id_request_conversion_source.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_conversion_source_conversion_source_id_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_conversion_source_conversion_source_id_response_conversion_source.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_metrics_response_totals.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_products_conversion_source_conversion_source_id_request_conversion_source.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_products_conversion_source_conversion_source_id_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_attribution_products_conversion_source_conversion_source_id_response_products_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_ecommerce_config_display_currency_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_orders_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_products_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/get_products_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/ecommerce/types/set_config_display_currency_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_email_expiration_date.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_email_expiration_date_unit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_recipients.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_sender.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_request_winner_criteria.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/create_email_campaign_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/email_export_recipients_request_recipients_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/email_export_recipients_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response_clicked_links.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response_statistics.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response_winning_criteria.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_ab_test_campaign_result_response_winning_version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_request_statistics.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_response_sender.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_response_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaign_response_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_request_statistics.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_request_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_request_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response_campaigns_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response_campaigns_item_sender.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response_campaigns_item_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_email_campaigns_response_campaigns_item_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/get_shared_template_url_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_email_expiration_date.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_email_expiration_date_unit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_recipients.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_sender.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/update_email_campaign_request_winner_criteria.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/email_campaigns/types/upload_image_to_gallery_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/environment.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/bad_request_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/conflict_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/expectation_failed_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/failed_dependency_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/forbidden_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/internal_server_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/method_not_allowed_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/not_found_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/payment_required_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/precondition_failed_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/too_early_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/too_many_requests_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/unauthorized_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/unprocessable_entity_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/errors/unsupported_media_type_error.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_contact_properties_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_event_properties_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_object.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_batch_events_request_item_object_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_contact_properties_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_event_properties_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_object.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/event/types/create_event_request_object_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/create_external_feed_request_auth_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/create_external_feed_request_headers_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/create_external_feed_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_request_auth_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_response_feeds_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_response_feeds_item_auth_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_all_external_feeds_response_feeds_item_headers_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_external_feed_by_uuid_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_external_feed_by_uuid_response_auth_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/get_external_feed_by_uuid_response_headers_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/update_external_feed_request_auth_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/external_feeds/types/update_external_feed_request_headers_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/types/get_crm_files_id_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/types/get_crm_files_request_entity.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/files/types/get_crm_files_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_by_uuid_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_by_uuid_response_attachments_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_by_uuid_response_logs_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_by_uuid_response_logs_item_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/inbound_parsing/types/get_inbound_email_events_response_events_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_group_id_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_group_id_response_group.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_group_id_response_sub_accounts_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_group_id_response_users_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_invited_users_list_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_invited_users_list_response_users_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_invited_users_list_response_users_item_feature_access.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_invited_users_list_response_users_item_groups.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_ip_response_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_billing_info.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_billing_info_address.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_billing_info_name.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_plan_info.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_plan_info_features_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_master_account_response_plan_info_plan_period.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_groups_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_emails.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_external_feeds.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_sms.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_whatsapp.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_credits_wp_subscribers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features_inbox.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features_landing_page.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features_sales_users.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_id_response_plan_info_features_users.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_response_sub_accounts_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_sub_account_response_sub_accounts_item_groups_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_user_permission_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_user_permission_response_feature_access.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_corporate_user_permission_response_groups_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/get_sub_account_groups_response_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/invite_admin_user_request_privileges_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/invite_admin_user_request_privileges_item_feature.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/invite_admin_user_request_privileges_item_permissions_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/invite_admin_user_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_group_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_sub_account_key_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_sub_account_request_language.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_sub_account_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/post_corporate_sub_account_sso_token_request_target.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_sub_account_id_plan_request_credits.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_sub_account_id_plan_request_features.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_sub_accounts_plan_request_credits.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_sub_accounts_plan_request_features.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_email_permissions_request_privileges_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_email_permissions_request_privileges_item_feature.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_email_permissions_request_privileges_item_permissions_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_invitation_action_email_request_action.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/master_account/types/put_corporate_user_invitation_action_email_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/types/get_crm_notes_request_entity.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/types/get_crm_notes_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/notes/types/post_crm_notes_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/types/create_payment_request_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/types/get_payment_request_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/payments/types/get_payment_request_response_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_info.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_info_export.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_info_import.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_name.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_process_response_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_info.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_info_export.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_info_import.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_name.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/process/types/get_processes_response_processes_item_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_lp_list_request_sort_field.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_lp_list_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_balance.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_balance_balances_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_members_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_reward_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/get_parameter_subscription_info_response_tier_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/subscribe_member_to_a_subscription_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/program/types/subscribe_to_loyalty_program_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/py.typed +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/create_reward_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/create_voucher_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_code_count_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_offers_request_version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_offers_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_offers_response_items_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_request_version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_expiration_modifier.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_generator.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_limits_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_products_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_reward_configs.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_rule.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_rule_event.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_rule_results_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_rewards_rid_response_rule_results_item_parameters_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_vouchers_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_vouchers_request_sort_field.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_vouchers_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/get_loyalty_offer_programs_pid_vouchers_response_contact_rewards_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/redeem_voucher_request_order.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/redeem_voucher_request_order_billing.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/redeem_voucher_request_order_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/redeem_voucher_request_order_products_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/reward/types/validate_reward_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/create_sender_request_ips_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/create_sender_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_ips_from_sender_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_ips_from_sender_response_ips_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_ips_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_ips_response_ips_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_senders_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_senders_response_senders_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/get_senders_response_senders_item_ips_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/senders/types/update_sender_request_ips_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/create_sms_campaign_request_recipients.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/create_sms_campaign_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaign_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaign_response_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_request_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_response_campaigns_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/get_sms_campaigns_response_campaigns_item_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/request_sms_recipient_export_request_recipients_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/request_sms_recipient_export_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_campaigns/types/update_sms_campaign_request_recipients.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/get_sms_templates_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/get_sms_templates_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/get_sms_templates_response_templates_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/sms_templates/types/get_sms_templates_response_templates_item_compliance.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasks_request_filter_date.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasks_request_filter_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasks_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasks_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/get_crm_tasktypes_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tasks/types/post_crm_tasks_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/add_subscription_to_tier_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/create_tier_for_tier_group_request_access_conditions_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/create_tier_for_tier_group_request_tier_rewards_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/create_tier_group_request_downgrade_strategy.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/create_tier_group_request_upgrade_strategy.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_list_of_tier_groups_request_version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_list_of_tier_groups_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_loyalty_program_tier_request_version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_loyalty_program_tier_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/get_tier_group_request_version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/update_tier_group_request_downgrade_strategy.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/update_tier_group_request_upgrade_strategy.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/update_tier_request_access_conditions_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/tier/types/update_tier_request_tier_rewards_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/create_smtp_template_request_sender.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/create_smtp_template_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_aggregated_smtp_report_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_blocked_domains_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_request_event.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_response_events_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_email_event_report_response_events_item_event.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_request_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_batches.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_batches_batches_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_batches_batches_item_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_created_at.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_scheduled_email_by_id_response_created_at_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_report_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_report_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_report_response_reports_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_templates_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_smtp_templates_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_response_contacts_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_response_contacts_item_reason.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_blocked_contacts_response_contacts_item_reason_code.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_email_content_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_email_content_response_events_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_emails_list_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_emails_list_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/get_transac_emails_list_response_transactional_emails_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/post_preview_smtp_email_templates_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_attachment_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_bcc_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_cc_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item_bcc_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item_cc_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item_reply_to.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_message_versions_item_to_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_reply_to.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_sender.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_request_to_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/send_transac_email_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_emails/types/update_smtp_template_request_sender.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_request_event.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_response_events_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_sms_events_response_events_item_event.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_transac_aggregated_sms_report_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_transac_sms_report_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_transac_sms_report_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/get_transac_sms_report_response_reports_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/send_async_transactional_sms_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_sms/types/send_transac_sms_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_request_event.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_response_events_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/get_whatsapp_event_report_response_events_item_event.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/send_whatsapp_message_request.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/send_whatsapp_message_request_params.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/send_whatsapp_message_request_text.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/transactional_whats_app/types/send_whatsapp_message_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/ab_test_version_clicks.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/ab_test_version_clicks_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/ab_test_version_stats.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/bad_request_error_body.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/bad_request_error_body_code.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/balance_definition.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/balance_definition_balance_availability_duration_modifier.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/balance_limit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/batch_events_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/batch_events_response_errors_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/cart.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/company.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/configuration.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/contact_error_model.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/contact_error_model_code.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_attachments_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_bcc_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_cc_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_file.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_file_image_info.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_forwarded_to_source_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_from.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_reply_to.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_to_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversations_message_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversion_source_metrics.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/conversion_source_metrics_conversion_source.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/create_update_folder.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/deal.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/error_model.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/file_data.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/forbidden_error_body.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/forbidden_error_body_code.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_campaign_recipients.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_campaign_stats.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_category_details.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_contact_details.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_contact_details_attributes.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_contacts.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_coupon_collection.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_device_browser_stats.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_overview.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_overview_sender.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_overview_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_overview_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_stats.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_stats_links_stats.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_extended_campaign_stats_stats_by_device.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_folder.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_list.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_sms_campaign_overview.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_sms_campaign_overview_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_sms_campaign_stats.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_smtp_template_overview.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_smtp_template_overview_sender.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_sso_token.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_webhook.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_webhook_channel.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/get_webhook_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/inviteuser.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/inviteuser_privileges_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/inviteuser_privileges_item_feature.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/inviteuser_privileges_item_permissions_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/loyalty_program.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/loyalty_program_state.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/node_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/not_found_error_body.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/not_found_error_body_code.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/note.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/note_data.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/notification.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order_billing.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order_identifiers.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order_meta_info_value.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/order_products_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/pipeline.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/pipeline_stages_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/pipelines.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_contact_info.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_contact_info_contacts.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_contact_info_contacts_failure.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_contact_info_contacts_success.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/post_send_failed.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/redeem.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/rule_condition_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_report.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_report_email.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_report_language.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_test_email.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_transac_sms.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_transac_sms_tag.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_transac_sms_tag_field.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/send_transac_sms_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/task.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/task_reminder.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/task_reminder_types_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/task_reminder_unit.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_access_conditions_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_group.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_group_downgrade_strategy.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_group_upgrade_strategy.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/tier_tier_rewards_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/transaction.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/unauthorized_error_body.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/unauthorized_error_body_code.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/update_campaign_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/update_campaign_status_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/value_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/variables_items.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/types/whatsapp_camp_stats.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/edit_user_permission_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_invited_users_list_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_invited_users_list_response_users_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_invited_users_list_response_users_item_feature_access.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_user_permission_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/get_user_permission_response_privileges_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/inviteuser_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/put_revoke_user_permission_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/putresendcancelinvitation_request_action.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/user/types/putresendcancelinvitation_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/version.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_auth.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_channel.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_events_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_headers_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_request_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/create_webhook_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/export_webhooks_history_request_event.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/export_webhooks_history_request_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/export_webhooks_history_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/get_webhooks_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/get_webhooks_request_type.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/get_webhooks_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/update_webhook_request_auth.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/update_webhook_request_events_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/webhooks/types/update_webhook_request_headers_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/raw_client.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/__init__.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_campaign_request_recipients.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_campaign_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_template_request_category.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_template_request_source.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/create_whats_app_template_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaign_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaign_response_campaign_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaign_response_template.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaign_response_template_components_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaigns_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaigns_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaigns_response_campaigns_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_campaigns_response_campaigns_item_campaign_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_config_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_config_response_phone_number_name_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_config_response_phone_number_quality.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_config_response_whatsapp_business_account_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_templates_request_sort.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_templates_request_source.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_templates_response.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/get_whats_app_templates_response_templates_item.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/update_whats_app_campaign_request_campaign_status.py +0 -0
- {brevo_python-4.0.7 → brevo_python-4.0.9}/src/brevo/whats_app_campaigns/types/update_whats_app_campaign_request_recipients.py +0 -0
|
@@ -15,6 +15,7 @@ if typing.TYPE_CHECKING:
|
|
|
15
15
|
BalanceDefinition,
|
|
16
16
|
BalanceDefinitionBalanceAvailabilityDurationModifier,
|
|
17
17
|
BalanceLimit,
|
|
18
|
+
BatchAcceptedResponse,
|
|
18
19
|
BatchEventsResponse,
|
|
19
20
|
BatchEventsResponseErrorsItem,
|
|
20
21
|
BrevoError,
|
|
@@ -50,6 +51,8 @@ if typing.TYPE_CHECKING:
|
|
|
50
51
|
GetContacts,
|
|
51
52
|
GetCouponCollection,
|
|
52
53
|
GetDeviceBrowserStats,
|
|
54
|
+
GetEventsList,
|
|
55
|
+
GetEventsListEventsItem,
|
|
53
56
|
GetExtendedCampaignOverview,
|
|
54
57
|
GetExtendedCampaignOverviewSender,
|
|
55
58
|
GetExtendedCampaignOverviewStatus,
|
|
@@ -69,6 +72,8 @@ if typing.TYPE_CHECKING:
|
|
|
69
72
|
GetWebhook,
|
|
70
73
|
GetWebhookChannel,
|
|
71
74
|
GetWebhookType,
|
|
75
|
+
InternalServerErrorBody,
|
|
76
|
+
InternalServerErrorBodyCode,
|
|
72
77
|
Inviteuser,
|
|
73
78
|
InviteuserPrivilegesItem,
|
|
74
79
|
InviteuserPrivilegesItemFeature,
|
|
@@ -204,6 +209,8 @@ if typing.TYPE_CHECKING:
|
|
|
204
209
|
GetContactBalancesResponse,
|
|
205
210
|
GetContactBalancesResponseBalancesItem,
|
|
206
211
|
GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort,
|
|
212
|
+
GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus,
|
|
213
|
+
GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType,
|
|
207
214
|
GetLoyaltyBalanceProgramsPidTransactionHistoryResponse,
|
|
208
215
|
GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem,
|
|
209
216
|
GetSubscriptionBalancesResponse,
|
|
@@ -213,6 +220,7 @@ if typing.TYPE_CHECKING:
|
|
|
213
220
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy,
|
|
214
221
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding,
|
|
215
222
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding,
|
|
223
|
+
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta,
|
|
216
224
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit,
|
|
217
225
|
PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse,
|
|
218
226
|
UpdateBalanceDefinitionRequestBalanceAvailabilityDurationModifier,
|
|
@@ -220,6 +228,7 @@ if typing.TYPE_CHECKING:
|
|
|
220
228
|
UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy,
|
|
221
229
|
UpdateBalanceDefinitionRequestBalanceOptionCreditRounding,
|
|
222
230
|
UpdateBalanceDefinitionRequestBalanceOptionDebitRounding,
|
|
231
|
+
UpdateBalanceDefinitionRequestMeta,
|
|
223
232
|
UpdateBalanceDefinitionRequestUnit,
|
|
224
233
|
UpdateBalanceLimitRequestConstraintType,
|
|
225
234
|
UpdateBalanceLimitRequestDurationUnit,
|
|
@@ -653,6 +662,7 @@ if typing.TYPE_CHECKING:
|
|
|
653
662
|
CreateTierForTierGroupRequestAccessConditionsItem,
|
|
654
663
|
CreateTierForTierGroupRequestTierRewardsItem,
|
|
655
664
|
CreateTierGroupRequestDowngradeStrategy,
|
|
665
|
+
CreateTierGroupRequestMeta,
|
|
656
666
|
CreateTierGroupRequestUpgradeStrategy,
|
|
657
667
|
GetListOfTierGroupsRequestVersion,
|
|
658
668
|
GetListOfTierGroupsResponse,
|
|
@@ -660,6 +670,7 @@ if typing.TYPE_CHECKING:
|
|
|
660
670
|
GetLoyaltyProgramTierResponse,
|
|
661
671
|
GetTierGroupRequestVersion,
|
|
662
672
|
UpdateTierGroupRequestDowngradeStrategy,
|
|
673
|
+
UpdateTierGroupRequestMeta,
|
|
663
674
|
UpdateTierGroupRequestUpgradeStrategy,
|
|
664
675
|
UpdateTierRequestAccessConditionsItem,
|
|
665
676
|
UpdateTierRequestTierRewardsItem,
|
|
@@ -808,6 +819,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
808
819
|
"BalanceDefinition": ".types",
|
|
809
820
|
"BalanceDefinitionBalanceAvailabilityDurationModifier": ".types",
|
|
810
821
|
"BalanceLimit": ".types",
|
|
822
|
+
"BatchAcceptedResponse": ".types",
|
|
811
823
|
"BatchDeleteObjectRecordsRequestIdentifiers": ".custom_objects",
|
|
812
824
|
"BatchDeleteObjectRecordsRequestIdentifiersExtIds": ".custom_objects",
|
|
813
825
|
"BatchDeleteObjectRecordsRequestIdentifiersIds": ".custom_objects",
|
|
@@ -887,6 +899,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
887
899
|
"CreateTierForTierGroupRequestAccessConditionsItem": ".tier",
|
|
888
900
|
"CreateTierForTierGroupRequestTierRewardsItem": ".tier",
|
|
889
901
|
"CreateTierGroupRequestDowngradeStrategy": ".tier",
|
|
902
|
+
"CreateTierGroupRequestMeta": ".tier",
|
|
890
903
|
"CreateTierGroupRequestUpgradeStrategy": ".tier",
|
|
891
904
|
"CreateUpdateBatchCategoryRequestCategoriesItem": ".ecommerce",
|
|
892
905
|
"CreateUpdateBatchCategoryResponse": ".ecommerce",
|
|
@@ -1100,6 +1113,8 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
1100
1113
|
"GetEmailEventReportResponse": ".transactional_emails",
|
|
1101
1114
|
"GetEmailEventReportResponseEventsItem": ".transactional_emails",
|
|
1102
1115
|
"GetEmailEventReportResponseEventsItemEvent": ".transactional_emails",
|
|
1116
|
+
"GetEventsList": ".types",
|
|
1117
|
+
"GetEventsListEventsItem": ".types",
|
|
1103
1118
|
"GetExtendedCampaignOverview": ".types",
|
|
1104
1119
|
"GetExtendedCampaignOverviewSender": ".types",
|
|
1105
1120
|
"GetExtendedCampaignOverviewStatus": ".types",
|
|
@@ -1138,6 +1153,8 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
1138
1153
|
"GetListsResponse": ".contacts",
|
|
1139
1154
|
"GetListsResponseListsItem": ".contacts",
|
|
1140
1155
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort": ".balance",
|
|
1156
|
+
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus": ".balance",
|
|
1157
|
+
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType": ".balance",
|
|
1141
1158
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryResponse": ".balance",
|
|
1142
1159
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem": ".balance",
|
|
1143
1160
|
"GetLoyaltyOfferProgramsPidOffersRequestVersion": ".reward",
|
|
@@ -1299,6 +1316,8 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
1299
1316
|
"ImportContactsRequestNewList": ".contacts",
|
|
1300
1317
|
"ImportContactsResponse": ".contacts",
|
|
1301
1318
|
"InternalServerError": ".errors",
|
|
1319
|
+
"InternalServerErrorBody": ".types",
|
|
1320
|
+
"InternalServerErrorBodyCode": ".types",
|
|
1302
1321
|
"InviteAdminUserRequestPrivilegesItem": ".master_account",
|
|
1303
1322
|
"InviteAdminUserRequestPrivilegesItemFeature": ".master_account",
|
|
1304
1323
|
"InviteAdminUserRequestPrivilegesItemPermissionsItem": ".master_account",
|
|
@@ -1352,6 +1371,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
1352
1371
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy": ".balance",
|
|
1353
1372
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding": ".balance",
|
|
1354
1373
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding": ".balance",
|
|
1374
|
+
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta": ".balance",
|
|
1355
1375
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit": ".balance",
|
|
1356
1376
|
"PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse": ".balance",
|
|
1357
1377
|
"PostPreviewSmtpEmailTemplatesResponse": ".transactional_emails",
|
|
@@ -1442,6 +1462,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
1442
1462
|
"UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy": ".balance",
|
|
1443
1463
|
"UpdateBalanceDefinitionRequestBalanceOptionCreditRounding": ".balance",
|
|
1444
1464
|
"UpdateBalanceDefinitionRequestBalanceOptionDebitRounding": ".balance",
|
|
1465
|
+
"UpdateBalanceDefinitionRequestMeta": ".balance",
|
|
1445
1466
|
"UpdateBalanceDefinitionRequestUnit": ".balance",
|
|
1446
1467
|
"UpdateBalanceLimitRequestConstraintType": ".balance",
|
|
1447
1468
|
"UpdateBalanceLimitRequestDurationUnit": ".balance",
|
|
@@ -1464,6 +1485,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
1464
1485
|
"UpdateSmsCampaignRequestRecipients": ".sms_campaigns",
|
|
1465
1486
|
"UpdateSmtpTemplateRequestSender": ".transactional_emails",
|
|
1466
1487
|
"UpdateTierGroupRequestDowngradeStrategy": ".tier",
|
|
1488
|
+
"UpdateTierGroupRequestMeta": ".tier",
|
|
1467
1489
|
"UpdateTierGroupRequestUpgradeStrategy": ".tier",
|
|
1468
1490
|
"UpdateTierRequestAccessConditionsItem": ".tier",
|
|
1469
1491
|
"UpdateTierRequestTierRewardsItem": ".tier",
|
|
@@ -1563,6 +1585,7 @@ __all__ = [
|
|
|
1563
1585
|
"BalanceDefinition",
|
|
1564
1586
|
"BalanceDefinitionBalanceAvailabilityDurationModifier",
|
|
1565
1587
|
"BalanceLimit",
|
|
1588
|
+
"BatchAcceptedResponse",
|
|
1566
1589
|
"BatchDeleteObjectRecordsRequestIdentifiers",
|
|
1567
1590
|
"BatchDeleteObjectRecordsRequestIdentifiersExtIds",
|
|
1568
1591
|
"BatchDeleteObjectRecordsRequestIdentifiersIds",
|
|
@@ -1642,6 +1665,7 @@ __all__ = [
|
|
|
1642
1665
|
"CreateTierForTierGroupRequestAccessConditionsItem",
|
|
1643
1666
|
"CreateTierForTierGroupRequestTierRewardsItem",
|
|
1644
1667
|
"CreateTierGroupRequestDowngradeStrategy",
|
|
1668
|
+
"CreateTierGroupRequestMeta",
|
|
1645
1669
|
"CreateTierGroupRequestUpgradeStrategy",
|
|
1646
1670
|
"CreateUpdateBatchCategoryRequestCategoriesItem",
|
|
1647
1671
|
"CreateUpdateBatchCategoryResponse",
|
|
@@ -1855,6 +1879,8 @@ __all__ = [
|
|
|
1855
1879
|
"GetEmailEventReportResponse",
|
|
1856
1880
|
"GetEmailEventReportResponseEventsItem",
|
|
1857
1881
|
"GetEmailEventReportResponseEventsItemEvent",
|
|
1882
|
+
"GetEventsList",
|
|
1883
|
+
"GetEventsListEventsItem",
|
|
1858
1884
|
"GetExtendedCampaignOverview",
|
|
1859
1885
|
"GetExtendedCampaignOverviewSender",
|
|
1860
1886
|
"GetExtendedCampaignOverviewStatus",
|
|
@@ -1893,6 +1919,8 @@ __all__ = [
|
|
|
1893
1919
|
"GetListsResponse",
|
|
1894
1920
|
"GetListsResponseListsItem",
|
|
1895
1921
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort",
|
|
1922
|
+
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus",
|
|
1923
|
+
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType",
|
|
1896
1924
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryResponse",
|
|
1897
1925
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem",
|
|
1898
1926
|
"GetLoyaltyOfferProgramsPidOffersRequestVersion",
|
|
@@ -2054,6 +2082,8 @@ __all__ = [
|
|
|
2054
2082
|
"ImportContactsRequestNewList",
|
|
2055
2083
|
"ImportContactsResponse",
|
|
2056
2084
|
"InternalServerError",
|
|
2085
|
+
"InternalServerErrorBody",
|
|
2086
|
+
"InternalServerErrorBodyCode",
|
|
2057
2087
|
"InviteAdminUserRequestPrivilegesItem",
|
|
2058
2088
|
"InviteAdminUserRequestPrivilegesItemFeature",
|
|
2059
2089
|
"InviteAdminUserRequestPrivilegesItemPermissionsItem",
|
|
@@ -2107,6 +2137,7 @@ __all__ = [
|
|
|
2107
2137
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy",
|
|
2108
2138
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding",
|
|
2109
2139
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding",
|
|
2140
|
+
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta",
|
|
2110
2141
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit",
|
|
2111
2142
|
"PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse",
|
|
2112
2143
|
"PostPreviewSmtpEmailTemplatesResponse",
|
|
@@ -2197,6 +2228,7 @@ __all__ = [
|
|
|
2197
2228
|
"UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy",
|
|
2198
2229
|
"UpdateBalanceDefinitionRequestBalanceOptionCreditRounding",
|
|
2199
2230
|
"UpdateBalanceDefinitionRequestBalanceOptionDebitRounding",
|
|
2231
|
+
"UpdateBalanceDefinitionRequestMeta",
|
|
2200
2232
|
"UpdateBalanceDefinitionRequestUnit",
|
|
2201
2233
|
"UpdateBalanceLimitRequestConstraintType",
|
|
2202
2234
|
"UpdateBalanceLimitRequestDurationUnit",
|
|
@@ -2219,6 +2251,7 @@ __all__ = [
|
|
|
2219
2251
|
"UpdateSmsCampaignRequestRecipients",
|
|
2220
2252
|
"UpdateSmtpTemplateRequestSender",
|
|
2221
2253
|
"UpdateTierGroupRequestDowngradeStrategy",
|
|
2254
|
+
"UpdateTierGroupRequestMeta",
|
|
2222
2255
|
"UpdateTierGroupRequestUpgradeStrategy",
|
|
2223
2256
|
"UpdateTierRequestAccessConditionsItem",
|
|
2224
2257
|
"UpdateTierRequestTierRewardsItem",
|
|
@@ -20,6 +20,8 @@ if typing.TYPE_CHECKING:
|
|
|
20
20
|
GetContactBalancesResponse,
|
|
21
21
|
GetContactBalancesResponseBalancesItem,
|
|
22
22
|
GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort,
|
|
23
|
+
GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus,
|
|
24
|
+
GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType,
|
|
23
25
|
GetLoyaltyBalanceProgramsPidTransactionHistoryResponse,
|
|
24
26
|
GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem,
|
|
25
27
|
GetSubscriptionBalancesResponse,
|
|
@@ -29,6 +31,7 @@ if typing.TYPE_CHECKING:
|
|
|
29
31
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy,
|
|
30
32
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding,
|
|
31
33
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding,
|
|
34
|
+
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta,
|
|
32
35
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit,
|
|
33
36
|
PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse,
|
|
34
37
|
UpdateBalanceDefinitionRequestBalanceAvailabilityDurationModifier,
|
|
@@ -36,6 +39,7 @@ if typing.TYPE_CHECKING:
|
|
|
36
39
|
UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy,
|
|
37
40
|
UpdateBalanceDefinitionRequestBalanceOptionCreditRounding,
|
|
38
41
|
UpdateBalanceDefinitionRequestBalanceOptionDebitRounding,
|
|
42
|
+
UpdateBalanceDefinitionRequestMeta,
|
|
39
43
|
UpdateBalanceDefinitionRequestUnit,
|
|
40
44
|
UpdateBalanceLimitRequestConstraintType,
|
|
41
45
|
UpdateBalanceLimitRequestDurationUnit,
|
|
@@ -55,6 +59,8 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
55
59
|
"GetContactBalancesResponse": ".types",
|
|
56
60
|
"GetContactBalancesResponseBalancesItem": ".types",
|
|
57
61
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort": ".types",
|
|
62
|
+
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus": ".types",
|
|
63
|
+
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType": ".types",
|
|
58
64
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryResponse": ".types",
|
|
59
65
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem": ".types",
|
|
60
66
|
"GetSubscriptionBalancesResponse": ".types",
|
|
@@ -64,6 +70,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
64
70
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy": ".types",
|
|
65
71
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding": ".types",
|
|
66
72
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding": ".types",
|
|
73
|
+
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta": ".types",
|
|
67
74
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit": ".types",
|
|
68
75
|
"PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse": ".types",
|
|
69
76
|
"UpdateBalanceDefinitionRequestBalanceAvailabilityDurationModifier": ".types",
|
|
@@ -71,6 +78,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
71
78
|
"UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy": ".types",
|
|
72
79
|
"UpdateBalanceDefinitionRequestBalanceOptionCreditRounding": ".types",
|
|
73
80
|
"UpdateBalanceDefinitionRequestBalanceOptionDebitRounding": ".types",
|
|
81
|
+
"UpdateBalanceDefinitionRequestMeta": ".types",
|
|
74
82
|
"UpdateBalanceDefinitionRequestUnit": ".types",
|
|
75
83
|
"UpdateBalanceLimitRequestConstraintType": ".types",
|
|
76
84
|
"UpdateBalanceLimitRequestDurationUnit": ".types",
|
|
@@ -113,6 +121,8 @@ __all__ = [
|
|
|
113
121
|
"GetContactBalancesResponse",
|
|
114
122
|
"GetContactBalancesResponseBalancesItem",
|
|
115
123
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort",
|
|
124
|
+
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus",
|
|
125
|
+
"GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType",
|
|
116
126
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryResponse",
|
|
117
127
|
"GetLoyaltyBalanceProgramsPidTransactionHistoryResponseTransactionHistoryItem",
|
|
118
128
|
"GetSubscriptionBalancesResponse",
|
|
@@ -122,6 +132,7 @@ __all__ = [
|
|
|
122
132
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionAmountOvertakingStrategy",
|
|
123
133
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionCreditRounding",
|
|
124
134
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding",
|
|
135
|
+
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta",
|
|
125
136
|
"PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit",
|
|
126
137
|
"PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse",
|
|
127
138
|
"UpdateBalanceDefinitionRequestBalanceAvailabilityDurationModifier",
|
|
@@ -129,6 +140,7 @@ __all__ = [
|
|
|
129
140
|
"UpdateBalanceDefinitionRequestBalanceOptionAmountOvertakingStrategy",
|
|
130
141
|
"UpdateBalanceDefinitionRequestBalanceOptionCreditRounding",
|
|
131
142
|
"UpdateBalanceDefinitionRequestBalanceOptionDebitRounding",
|
|
143
|
+
"UpdateBalanceDefinitionRequestMeta",
|
|
132
144
|
"UpdateBalanceDefinitionRequestUnit",
|
|
133
145
|
"UpdateBalanceLimitRequestConstraintType",
|
|
134
146
|
"UpdateBalanceLimitRequestDurationUnit",
|
|
@@ -23,6 +23,12 @@ from .types.get_contact_balances_response import GetContactBalancesResponse
|
|
|
23
23
|
from .types.get_loyalty_balance_programs_pid_transaction_history_request_sort import (
|
|
24
24
|
GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort,
|
|
25
25
|
)
|
|
26
|
+
from .types.get_loyalty_balance_programs_pid_transaction_history_request_status import (
|
|
27
|
+
GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus,
|
|
28
|
+
)
|
|
29
|
+
from .types.get_loyalty_balance_programs_pid_transaction_history_request_transaction_type import (
|
|
30
|
+
GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType,
|
|
31
|
+
)
|
|
26
32
|
from .types.get_loyalty_balance_programs_pid_transaction_history_response import (
|
|
27
33
|
GetLoyaltyBalanceProgramsPidTransactionHistoryResponse,
|
|
28
34
|
)
|
|
@@ -42,6 +48,9 @@ from .types.post_loyalty_balance_programs_pid_balance_definitions_request_balanc
|
|
|
42
48
|
from .types.post_loyalty_balance_programs_pid_balance_definitions_request_balance_option_debit_rounding import (
|
|
43
49
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestBalanceOptionDebitRounding,
|
|
44
50
|
)
|
|
51
|
+
from .types.post_loyalty_balance_programs_pid_balance_definitions_request_meta import (
|
|
52
|
+
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta,
|
|
53
|
+
)
|
|
45
54
|
from .types.post_loyalty_balance_programs_pid_balance_definitions_request_unit import (
|
|
46
55
|
PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestUnit,
|
|
47
56
|
)
|
|
@@ -63,6 +72,7 @@ from .types.update_balance_definition_request_balance_option_credit_rounding imp
|
|
|
63
72
|
from .types.update_balance_definition_request_balance_option_debit_rounding import (
|
|
64
73
|
UpdateBalanceDefinitionRequestBalanceOptionDebitRounding,
|
|
65
74
|
)
|
|
75
|
+
from .types.update_balance_definition_request_meta import UpdateBalanceDefinitionRequestMeta
|
|
66
76
|
from .types.update_balance_definition_request_unit import UpdateBalanceDefinitionRequestUnit
|
|
67
77
|
from .types.update_balance_limit_request_constraint_type import UpdateBalanceLimitRequestConstraintType
|
|
68
78
|
from .types.update_balance_limit_request_duration_unit import UpdateBalanceLimitRequestDurationUnit
|
|
@@ -97,6 +107,7 @@ class BalanceClient:
|
|
|
97
107
|
offset: typing.Optional[int] = None,
|
|
98
108
|
sort_field: typing.Optional[str] = None,
|
|
99
109
|
sort: typing.Optional[str] = None,
|
|
110
|
+
include_internal: typing.Optional[bool] = None,
|
|
100
111
|
request_options: typing.Optional[RequestOptions] = None,
|
|
101
112
|
) -> BalanceLimit:
|
|
102
113
|
"""
|
|
@@ -125,6 +136,9 @@ class BalanceClient:
|
|
|
125
136
|
sort : typing.Optional[str]
|
|
126
137
|
Sort Order
|
|
127
138
|
|
|
139
|
+
include_internal : typing.Optional[bool]
|
|
140
|
+
Include balances tied to internal definitions.
|
|
141
|
+
|
|
128
142
|
request_options : typing.Optional[RequestOptions]
|
|
129
143
|
Request-specific configuration.
|
|
130
144
|
|
|
@@ -154,6 +168,7 @@ class BalanceClient:
|
|
|
154
168
|
offset=offset,
|
|
155
169
|
sort_field=sort_field,
|
|
156
170
|
sort=sort,
|
|
171
|
+
include_internal=include_internal,
|
|
157
172
|
request_options=request_options,
|
|
158
173
|
)
|
|
159
174
|
return _response.data
|
|
@@ -250,7 +265,7 @@ class BalanceClient:
|
|
|
250
265
|
max_amount: typing.Optional[float] = OMIT,
|
|
251
266
|
max_credit_amount_limit: typing.Optional[float] = OMIT,
|
|
252
267
|
max_debit_amount_limit: typing.Optional[float] = OMIT,
|
|
253
|
-
meta: typing.Optional[
|
|
268
|
+
meta: typing.Optional[PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta] = OMIT,
|
|
254
269
|
min_amount: typing.Optional[float] = OMIT,
|
|
255
270
|
request_options: typing.Optional[RequestOptions] = None,
|
|
256
271
|
) -> BalanceDefinition:
|
|
@@ -304,7 +319,7 @@ class BalanceClient:
|
|
|
304
319
|
max_debit_amount_limit : typing.Optional[float]
|
|
305
320
|
Maximum debit allowed per operation.
|
|
306
321
|
|
|
307
|
-
meta : typing.Optional[
|
|
322
|
+
meta : typing.Optional[PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta]
|
|
308
323
|
Additional metadata for the balance definition.
|
|
309
324
|
|
|
310
325
|
min_amount : typing.Optional[float]
|
|
@@ -425,7 +440,7 @@ class BalanceClient:
|
|
|
425
440
|
max_amount: typing.Optional[float] = OMIT,
|
|
426
441
|
max_credit_amount_limit: typing.Optional[float] = OMIT,
|
|
427
442
|
max_debit_amount_limit: typing.Optional[float] = OMIT,
|
|
428
|
-
meta: typing.Optional[
|
|
443
|
+
meta: typing.Optional[UpdateBalanceDefinitionRequestMeta] = OMIT,
|
|
429
444
|
min_amount: typing.Optional[float] = OMIT,
|
|
430
445
|
request_options: typing.Optional[RequestOptions] = None,
|
|
431
446
|
) -> BalanceDefinition:
|
|
@@ -482,7 +497,7 @@ class BalanceClient:
|
|
|
482
497
|
max_debit_amount_limit : typing.Optional[float]
|
|
483
498
|
Maximum debit allowed per operation.
|
|
484
499
|
|
|
485
|
-
meta : typing.Optional[
|
|
500
|
+
meta : typing.Optional[UpdateBalanceDefinitionRequestMeta]
|
|
486
501
|
Optional metadata for the balance definition.
|
|
487
502
|
|
|
488
503
|
min_amount : typing.Optional[float]
|
|
@@ -828,7 +843,11 @@ class BalanceClient:
|
|
|
828
843
|
return _response.data
|
|
829
844
|
|
|
830
845
|
def get_contact_balances(
|
|
831
|
-
self,
|
|
846
|
+
self,
|
|
847
|
+
pid: str,
|
|
848
|
+
*,
|
|
849
|
+
include_internal: typing.Optional[bool] = None,
|
|
850
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
832
851
|
) -> GetContactBalancesResponse:
|
|
833
852
|
"""
|
|
834
853
|
Returns balance list
|
|
@@ -838,6 +857,9 @@ class BalanceClient:
|
|
|
838
857
|
pid : str
|
|
839
858
|
Loyalty Program Id
|
|
840
859
|
|
|
860
|
+
include_internal : typing.Optional[bool]
|
|
861
|
+
Include balances tied to internal definitions.
|
|
862
|
+
|
|
841
863
|
request_options : typing.Optional[RequestOptions]
|
|
842
864
|
Request-specific configuration.
|
|
843
865
|
|
|
@@ -857,7 +879,9 @@ class BalanceClient:
|
|
|
857
879
|
pid="pid",
|
|
858
880
|
)
|
|
859
881
|
"""
|
|
860
|
-
_response = self._raw_client.get_contact_balances(
|
|
882
|
+
_response = self._raw_client.get_contact_balances(
|
|
883
|
+
pid, include_internal=include_internal, request_options=request_options
|
|
884
|
+
)
|
|
861
885
|
return _response.data
|
|
862
886
|
|
|
863
887
|
def create_balance_order(
|
|
@@ -940,7 +964,12 @@ class BalanceClient:
|
|
|
940
964
|
return _response.data
|
|
941
965
|
|
|
942
966
|
def get_subscription_balances(
|
|
943
|
-
self,
|
|
967
|
+
self,
|
|
968
|
+
pid: str,
|
|
969
|
+
cid: str,
|
|
970
|
+
*,
|
|
971
|
+
include_internal: typing.Optional[bool] = None,
|
|
972
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
944
973
|
) -> GetSubscriptionBalancesResponse:
|
|
945
974
|
"""
|
|
946
975
|
Returns subscription balances
|
|
@@ -953,6 +982,9 @@ class BalanceClient:
|
|
|
953
982
|
cid : str
|
|
954
983
|
Contact Id
|
|
955
984
|
|
|
985
|
+
include_internal : typing.Optional[bool]
|
|
986
|
+
Include balances tied to internal definitions.
|
|
987
|
+
|
|
956
988
|
request_options : typing.Optional[RequestOptions]
|
|
957
989
|
Request-specific configuration.
|
|
958
990
|
|
|
@@ -973,7 +1005,9 @@ class BalanceClient:
|
|
|
973
1005
|
cid="cid",
|
|
974
1006
|
)
|
|
975
1007
|
"""
|
|
976
|
-
_response = self._raw_client.get_subscription_balances(
|
|
1008
|
+
_response = self._raw_client.get_subscription_balances(
|
|
1009
|
+
pid, cid, include_internal=include_internal, request_options=request_options
|
|
1010
|
+
)
|
|
977
1011
|
return _response.data
|
|
978
1012
|
|
|
979
1013
|
def create_subscription_balances(
|
|
@@ -1030,6 +1064,8 @@ class BalanceClient:
|
|
|
1030
1064
|
sort_field: typing.Optional[typing.Literal["createdAt"]] = None,
|
|
1031
1065
|
sort: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort] = None,
|
|
1032
1066
|
filters: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
1067
|
+
status: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus] = None,
|
|
1068
|
+
transaction_type: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType] = None,
|
|
1033
1069
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1034
1070
|
) -> GetLoyaltyBalanceProgramsPidTransactionHistoryResponse:
|
|
1035
1071
|
"""
|
|
@@ -1050,7 +1086,7 @@ class BalanceClient:
|
|
|
1050
1086
|
Limit the number of records returned
|
|
1051
1087
|
|
|
1052
1088
|
offset : typing.Optional[int]
|
|
1053
|
-
|
|
1089
|
+
Page number to retrieve
|
|
1054
1090
|
|
|
1055
1091
|
sort_field : typing.Optional[typing.Literal["createdAt"]]
|
|
1056
1092
|
Field to sort by
|
|
@@ -1061,6 +1097,12 @@ class BalanceClient:
|
|
|
1061
1097
|
filters : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
1062
1098
|
Filters to apply
|
|
1063
1099
|
|
|
1100
|
+
status : typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus]
|
|
1101
|
+
Transaction status filter. Allowed values: draft, completed, rejected, cancelled, expired
|
|
1102
|
+
|
|
1103
|
+
transaction_type : typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType]
|
|
1104
|
+
Transaction type filter. Allowed values: credit, debit
|
|
1105
|
+
|
|
1064
1106
|
request_options : typing.Optional[RequestOptions]
|
|
1065
1107
|
Request-specific configuration.
|
|
1066
1108
|
|
|
@@ -1091,6 +1133,8 @@ class BalanceClient:
|
|
|
1091
1133
|
sort_field=sort_field,
|
|
1092
1134
|
sort=sort,
|
|
1093
1135
|
filters=filters,
|
|
1136
|
+
status=status,
|
|
1137
|
+
transaction_type=transaction_type,
|
|
1094
1138
|
request_options=request_options,
|
|
1095
1139
|
)
|
|
1096
1140
|
return _response.data
|
|
@@ -1281,6 +1325,7 @@ class AsyncBalanceClient:
|
|
|
1281
1325
|
offset: typing.Optional[int] = None,
|
|
1282
1326
|
sort_field: typing.Optional[str] = None,
|
|
1283
1327
|
sort: typing.Optional[str] = None,
|
|
1328
|
+
include_internal: typing.Optional[bool] = None,
|
|
1284
1329
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1285
1330
|
) -> BalanceLimit:
|
|
1286
1331
|
"""
|
|
@@ -1309,6 +1354,9 @@ class AsyncBalanceClient:
|
|
|
1309
1354
|
sort : typing.Optional[str]
|
|
1310
1355
|
Sort Order
|
|
1311
1356
|
|
|
1357
|
+
include_internal : typing.Optional[bool]
|
|
1358
|
+
Include balances tied to internal definitions.
|
|
1359
|
+
|
|
1312
1360
|
request_options : typing.Optional[RequestOptions]
|
|
1313
1361
|
Request-specific configuration.
|
|
1314
1362
|
|
|
@@ -1346,6 +1394,7 @@ class AsyncBalanceClient:
|
|
|
1346
1394
|
offset=offset,
|
|
1347
1395
|
sort_field=sort_field,
|
|
1348
1396
|
sort=sort,
|
|
1397
|
+
include_internal=include_internal,
|
|
1349
1398
|
request_options=request_options,
|
|
1350
1399
|
)
|
|
1351
1400
|
return _response.data
|
|
@@ -1450,7 +1499,7 @@ class AsyncBalanceClient:
|
|
|
1450
1499
|
max_amount: typing.Optional[float] = OMIT,
|
|
1451
1500
|
max_credit_amount_limit: typing.Optional[float] = OMIT,
|
|
1452
1501
|
max_debit_amount_limit: typing.Optional[float] = OMIT,
|
|
1453
|
-
meta: typing.Optional[
|
|
1502
|
+
meta: typing.Optional[PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta] = OMIT,
|
|
1454
1503
|
min_amount: typing.Optional[float] = OMIT,
|
|
1455
1504
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1456
1505
|
) -> BalanceDefinition:
|
|
@@ -1504,7 +1553,7 @@ class AsyncBalanceClient:
|
|
|
1504
1553
|
max_debit_amount_limit : typing.Optional[float]
|
|
1505
1554
|
Maximum debit allowed per operation.
|
|
1506
1555
|
|
|
1507
|
-
meta : typing.Optional[
|
|
1556
|
+
meta : typing.Optional[PostLoyaltyBalanceProgramsPidBalanceDefinitionsRequestMeta]
|
|
1508
1557
|
Additional metadata for the balance definition.
|
|
1509
1558
|
|
|
1510
1559
|
min_amount : typing.Optional[float]
|
|
@@ -1643,7 +1692,7 @@ class AsyncBalanceClient:
|
|
|
1643
1692
|
max_amount: typing.Optional[float] = OMIT,
|
|
1644
1693
|
max_credit_amount_limit: typing.Optional[float] = OMIT,
|
|
1645
1694
|
max_debit_amount_limit: typing.Optional[float] = OMIT,
|
|
1646
|
-
meta: typing.Optional[
|
|
1695
|
+
meta: typing.Optional[UpdateBalanceDefinitionRequestMeta] = OMIT,
|
|
1647
1696
|
min_amount: typing.Optional[float] = OMIT,
|
|
1648
1697
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1649
1698
|
) -> BalanceDefinition:
|
|
@@ -1700,7 +1749,7 @@ class AsyncBalanceClient:
|
|
|
1700
1749
|
max_debit_amount_limit : typing.Optional[float]
|
|
1701
1750
|
Maximum debit allowed per operation.
|
|
1702
1751
|
|
|
1703
|
-
meta : typing.Optional[
|
|
1752
|
+
meta : typing.Optional[UpdateBalanceDefinitionRequestMeta]
|
|
1704
1753
|
Optional metadata for the balance definition.
|
|
1705
1754
|
|
|
1706
1755
|
min_amount : typing.Optional[float]
|
|
@@ -2094,7 +2143,11 @@ class AsyncBalanceClient:
|
|
|
2094
2143
|
return _response.data
|
|
2095
2144
|
|
|
2096
2145
|
async def get_contact_balances(
|
|
2097
|
-
self,
|
|
2146
|
+
self,
|
|
2147
|
+
pid: str,
|
|
2148
|
+
*,
|
|
2149
|
+
include_internal: typing.Optional[bool] = None,
|
|
2150
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
2098
2151
|
) -> GetContactBalancesResponse:
|
|
2099
2152
|
"""
|
|
2100
2153
|
Returns balance list
|
|
@@ -2104,6 +2157,9 @@ class AsyncBalanceClient:
|
|
|
2104
2157
|
pid : str
|
|
2105
2158
|
Loyalty Program Id
|
|
2106
2159
|
|
|
2160
|
+
include_internal : typing.Optional[bool]
|
|
2161
|
+
Include balances tied to internal definitions.
|
|
2162
|
+
|
|
2107
2163
|
request_options : typing.Optional[RequestOptions]
|
|
2108
2164
|
Request-specific configuration.
|
|
2109
2165
|
|
|
@@ -2131,7 +2187,9 @@ class AsyncBalanceClient:
|
|
|
2131
2187
|
|
|
2132
2188
|
asyncio.run(main())
|
|
2133
2189
|
"""
|
|
2134
|
-
_response = await self._raw_client.get_contact_balances(
|
|
2190
|
+
_response = await self._raw_client.get_contact_balances(
|
|
2191
|
+
pid, include_internal=include_internal, request_options=request_options
|
|
2192
|
+
)
|
|
2135
2193
|
return _response.data
|
|
2136
2194
|
|
|
2137
2195
|
async def create_balance_order(
|
|
@@ -2222,7 +2280,12 @@ class AsyncBalanceClient:
|
|
|
2222
2280
|
return _response.data
|
|
2223
2281
|
|
|
2224
2282
|
async def get_subscription_balances(
|
|
2225
|
-
self,
|
|
2283
|
+
self,
|
|
2284
|
+
pid: str,
|
|
2285
|
+
cid: str,
|
|
2286
|
+
*,
|
|
2287
|
+
include_internal: typing.Optional[bool] = None,
|
|
2288
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
2226
2289
|
) -> GetSubscriptionBalancesResponse:
|
|
2227
2290
|
"""
|
|
2228
2291
|
Returns subscription balances
|
|
@@ -2235,6 +2298,9 @@ class AsyncBalanceClient:
|
|
|
2235
2298
|
cid : str
|
|
2236
2299
|
Contact Id
|
|
2237
2300
|
|
|
2301
|
+
include_internal : typing.Optional[bool]
|
|
2302
|
+
Include balances tied to internal definitions.
|
|
2303
|
+
|
|
2238
2304
|
request_options : typing.Optional[RequestOptions]
|
|
2239
2305
|
Request-specific configuration.
|
|
2240
2306
|
|
|
@@ -2263,7 +2329,9 @@ class AsyncBalanceClient:
|
|
|
2263
2329
|
|
|
2264
2330
|
asyncio.run(main())
|
|
2265
2331
|
"""
|
|
2266
|
-
_response = await self._raw_client.get_subscription_balances(
|
|
2332
|
+
_response = await self._raw_client.get_subscription_balances(
|
|
2333
|
+
pid, cid, include_internal=include_internal, request_options=request_options
|
|
2334
|
+
)
|
|
2267
2335
|
return _response.data
|
|
2268
2336
|
|
|
2269
2337
|
async def create_subscription_balances(
|
|
@@ -2328,6 +2396,8 @@ class AsyncBalanceClient:
|
|
|
2328
2396
|
sort_field: typing.Optional[typing.Literal["createdAt"]] = None,
|
|
2329
2397
|
sort: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestSort] = None,
|
|
2330
2398
|
filters: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
2399
|
+
status: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus] = None,
|
|
2400
|
+
transaction_type: typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType] = None,
|
|
2331
2401
|
request_options: typing.Optional[RequestOptions] = None,
|
|
2332
2402
|
) -> GetLoyaltyBalanceProgramsPidTransactionHistoryResponse:
|
|
2333
2403
|
"""
|
|
@@ -2348,7 +2418,7 @@ class AsyncBalanceClient:
|
|
|
2348
2418
|
Limit the number of records returned
|
|
2349
2419
|
|
|
2350
2420
|
offset : typing.Optional[int]
|
|
2351
|
-
|
|
2421
|
+
Page number to retrieve
|
|
2352
2422
|
|
|
2353
2423
|
sort_field : typing.Optional[typing.Literal["createdAt"]]
|
|
2354
2424
|
Field to sort by
|
|
@@ -2359,6 +2429,12 @@ class AsyncBalanceClient:
|
|
|
2359
2429
|
filters : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
2360
2430
|
Filters to apply
|
|
2361
2431
|
|
|
2432
|
+
status : typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestStatus]
|
|
2433
|
+
Transaction status filter. Allowed values: draft, completed, rejected, cancelled, expired
|
|
2434
|
+
|
|
2435
|
+
transaction_type : typing.Optional[GetLoyaltyBalanceProgramsPidTransactionHistoryRequestTransactionType]
|
|
2436
|
+
Transaction type filter. Allowed values: credit, debit
|
|
2437
|
+
|
|
2362
2438
|
request_options : typing.Optional[RequestOptions]
|
|
2363
2439
|
Request-specific configuration.
|
|
2364
2440
|
|
|
@@ -2397,6 +2473,8 @@ class AsyncBalanceClient:
|
|
|
2397
2473
|
sort_field=sort_field,
|
|
2398
2474
|
sort=sort,
|
|
2399
2475
|
filters=filters,
|
|
2476
|
+
status=status,
|
|
2477
|
+
transaction_type=transaction_type,
|
|
2400
2478
|
request_options=request_options,
|
|
2401
2479
|
)
|
|
2402
2480
|
return _response.data
|