diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 49e4e82..7e6a2c9 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -87,6 +87,10 @@ docs/SyncNumberLookupResult.md docs/SyncNumberLookupSuccess.md docs/TextStore.md docs/Viber.md +docs/ViberCarousel.md +docs/ViberCarouselButton.md +docs/ViberCarouselItem.md +docs/ViberTemplate.md docs/ViberVideo.md docs/WhatsApp.md docs/WhatsAppAudio.md @@ -212,6 +216,10 @@ messente_api/models/sync_number_lookup_result.py messente_api/models/sync_number_lookup_success.py messente_api/models/text_store.py messente_api/models/viber.py +messente_api/models/viber_carousel.py +messente_api/models/viber_carousel_button.py +messente_api/models/viber_carousel_item.py +messente_api/models/viber_template.py messente_api/models/viber_video.py messente_api/models/whats_app.py messente_api/models/whats_app_audio.py diff --git a/README.md b/README.md index d6a27b9..964ed3d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Messente API Library -- Messente API version: 2.0.0 -- Python package version: 2.6.0 +- Messente API version: 2.1.0 +- Python package version: 2.7.0 [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. diff --git a/docs/OmnimessageMessagesInner.md b/docs/OmnimessageMessagesInner.md index d03334f..6548fa0 100644 --- a/docs/OmnimessageMessagesInner.md +++ b/docs/OmnimessageMessagesInner.md @@ -9,14 +9,15 @@ Name | Type | Description | Notes **validity** | **int** | After how many minutes this channel is considered as failed and the next channel is attempted.Only one of \"ttl\" and \"validity\" can be used. | [optional] **ttl** | **int** | After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. | [optional] **text** | **str** | Text content of the RCS message | -**image_url** | **str** | URL for the embedded image Valid combinations: 1) image_url, 2) text, image_url, button_url, button_text | [optional] +**image_url** | **str** | URL for the embedded image. | [optional] **button_url** | **str** | URL of the button, must be specified along with ''text'', ''button_text'' and ''image_url'' (optional) | [optional] **button_text** | **str** | Must be specified along with ''text'', ''button_url'', ''button_text'', ''image_url'' (optional) | [optional] **channel** | **str** | The channel used to deliver the message | [optional] [default to 'rcs'] **video** | [**WhatsAppVideo**](WhatsAppVideo.md) | | [optional] +**template** | [**WhatsAppTemplate**](WhatsAppTemplate.md) | | [optional] +**carousel** | [**ViberCarousel**](ViberCarousel.md) | | [optional] **autoconvert** | **str** | Defines how non-GSM characters will be treated: - \"on\" Use replacement settings from the account's [API Auto Replace settings page](https://dashboard.messente.com/api-settings/auto-replace) (default) - \"full\" All non GSM 03.38 characters will be replaced with suitable alternatives - \"off\" Message content is not modified in any way | [optional] **udh** | **str** | hex-encoded string containing SMS UDH | [optional] -**template** | [**WhatsAppTemplate**](WhatsAppTemplate.md) | | [optional] **image** | [**WhatsAppImage**](WhatsAppImage.md) | | [optional] **audio** | [**WhatsAppAudio**](WhatsAppAudio.md) | | [optional] **document** | [**WhatsAppDocument**](WhatsAppDocument.md) | | [optional] diff --git a/docs/Viber.md b/docs/Viber.md index 4463196..e493166 100644 --- a/docs/Viber.md +++ b/docs/Viber.md @@ -1,6 +1,6 @@ # Viber -Viber message content +Viber message content. You must provide one of these combinations: * image_url * text * text, button_text and button_url * text, image_url, button_text and button_url * video * video, text * video, text, button_text * video, text, button_text and button_url * carousel and text ## Properties @@ -10,11 +10,13 @@ Name | Type | Description | Notes **validity** | **int** | After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. | [optional] **ttl** | **int** | After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. | [optional] **text** | **str** | Plaintext content for Viber | [optional] -**image_url** | **str** | URL for the embedded image Valid combinations: 1) image_url, 2) text, image_url, button_url, button_text | [optional] +**image_url** | **str** | URL for the embedded image. | [optional] **button_url** | **str** | URL of the button, must be specified along with ''text'', ''button_text'' and ''image_url'' (optional) | [optional] **button_text** | **str** | Must be specified along with ''text'', ''button_url'', ''button_text'', ''image_url'' (optional) | [optional] **channel** | **str** | The channel used to deliver the message | [optional] [default to 'viber'] **video** | [**ViberVideo**](ViberVideo.md) | | [optional] +**template** | [**ViberTemplate**](ViberTemplate.md) | | [optional] +**carousel** | [**ViberCarousel**](ViberCarousel.md) | | [optional] ## Example diff --git a/docs/ViberCarousel.md b/docs/ViberCarousel.md new file mode 100644 index 0000000..6d57667 --- /dev/null +++ b/docs/ViberCarousel.md @@ -0,0 +1,30 @@ +# ViberCarousel + +Viber carousel object. + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**List[ViberCarouselItem]**](ViberCarouselItem.md) | Carousel items. Must contain between 2 and 5 items. | + +## Example + +```python +from messente_api.models.viber_carousel import ViberCarousel + +# TODO update the JSON string below +json = "{}" +# create an instance of ViberCarousel from a JSON string +viber_carousel_instance = ViberCarousel.from_json(json) +# print the JSON string representation of the object +print(ViberCarousel.to_json()) + +# convert the object into a dict +viber_carousel_dict = viber_carousel_instance.to_dict() +# create an instance of ViberCarousel from a dict +viber_carousel_from_dict = ViberCarousel.from_dict(viber_carousel_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ViberCarouselButton.md b/docs/ViberCarouselButton.md new file mode 100644 index 0000000..0ab44af --- /dev/null +++ b/docs/ViberCarouselButton.md @@ -0,0 +1,31 @@ +# ViberCarouselButton + +Viber carousel button object. + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**label** | **str** | Button label text. | +**action_url** | **str** | URL opened when the button is clicked. | + +## Example + +```python +from messente_api.models.viber_carousel_button import ViberCarouselButton + +# TODO update the JSON string below +json = "{}" +# create an instance of ViberCarouselButton from a JSON string +viber_carousel_button_instance = ViberCarouselButton.from_json(json) +# print the JSON string representation of the object +print(ViberCarouselButton.to_json()) + +# convert the object into a dict +viber_carousel_button_dict = viber_carousel_button_instance.to_dict() +# create an instance of ViberCarouselButton from a dict +viber_carousel_button_from_dict = ViberCarouselButton.from_dict(viber_carousel_button_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ViberCarouselItem.md b/docs/ViberCarouselItem.md new file mode 100644 index 0000000..44e6c51 --- /dev/null +++ b/docs/ViberCarouselItem.md @@ -0,0 +1,33 @@ +# ViberCarouselItem + +Viber carousel item object. + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**title** | **str** | Carousel item title. | +**image_url** | **str** | URL of the carousel item image. | +**primary_button** | [**ViberCarouselButton**](ViberCarouselButton.md) | | +**secondary_button** | [**ViberCarouselButton**](ViberCarouselButton.md) | | [optional] + +## Example + +```python +from messente_api.models.viber_carousel_item import ViberCarouselItem + +# TODO update the JSON string below +json = "{}" +# create an instance of ViberCarouselItem from a JSON string +viber_carousel_item_instance = ViberCarouselItem.from_json(json) +# print the JSON string representation of the object +print(ViberCarouselItem.to_json()) + +# convert the object into a dict +viber_carousel_item_dict = viber_carousel_item_instance.to_dict() +# create an instance of ViberCarouselItem from a dict +viber_carousel_item_from_dict = ViberCarouselItem.from_dict(viber_carousel_item_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ViberTemplate.md b/docs/ViberTemplate.md new file mode 100644 index 0000000..61574eb --- /dev/null +++ b/docs/ViberTemplate.md @@ -0,0 +1,32 @@ +# ViberTemplate + +Viber template object. + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **str** | Template ID. | +**lang** | **str** | Template language code. | +**params** | **Dict[str, str]** | Optional template parameters as key-value string pairs. | [optional] + +## Example + +```python +from messente_api.models.viber_template import ViberTemplate + +# TODO update the JSON string below +json = "{}" +# create an instance of ViberTemplate from a JSON string +viber_template_instance = ViberTemplate.from_json(json) +# print the JSON string representation of the object +print(ViberTemplate.to_json()) + +# convert the object into a dict +viber_template_dict = viber_template_instance.to_dict() +# create an instance of ViberTemplate from a dict +viber_template_from_dict = ViberTemplate.from_dict(viber_template_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/messente_api/__init__.py b/messente_api/__init__.py index 5fa5fb2..3411849 100644 --- a/messente_api/__init__.py +++ b/messente_api/__init__.py @@ -7,7 +7,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "2.6.0" +__version__ = "2.7.0" # import apis into sdk package from messente_api.api.account_balance_api import AccountBalanceApi @@ -115,6 +115,10 @@ from messente_api.models.sync_number_lookup_success import SyncNumberLookupSuccess from messente_api.models.text_store import TextStore from messente_api.models.viber import Viber +from messente_api.models.viber_carousel import ViberCarousel +from messente_api.models.viber_carousel_button import ViberCarouselButton +from messente_api.models.viber_carousel_item import ViberCarouselItem +from messente_api.models.viber_template import ViberTemplate from messente_api.models.viber_video import ViberVideo from messente_api.models.whats_app import WhatsApp from messente_api.models.whats_app_audio import WhatsAppAudio diff --git a/messente_api/api/account_balance_api.py b/messente_api/api/account_balance_api.py index e8c5ee1..dcd4721 100644 --- a/messente_api/api/account_balance_api.py +++ b/messente_api/api/account_balance_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/blacklist_api.py b/messente_api/api/blacklist_api.py index f6c6e04..f8b5f64 100644 --- a/messente_api/api/blacklist_api.py +++ b/messente_api/api/blacklist_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/bulk_messaging_api.py b/messente_api/api/bulk_messaging_api.py index 0b1bf85..4b3af32 100644 --- a/messente_api/api/bulk_messaging_api.py +++ b/messente_api/api/bulk_messaging_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/contacts_api.py b/messente_api/api/contacts_api.py index 8edff61..8e65393 100644 --- a/messente_api/api/contacts_api.py +++ b/messente_api/api/contacts_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/delivery_report_api.py b/messente_api/api/delivery_report_api.py index 327e5a5..b618d1b 100644 --- a/messente_api/api/delivery_report_api.py +++ b/messente_api/api/delivery_report_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/groups_api.py b/messente_api/api/groups_api.py index b7fa3a1..d206fb6 100644 --- a/messente_api/api/groups_api.py +++ b/messente_api/api/groups_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/number_lookup_api.py b/messente_api/api/number_lookup_api.py index b1f9e0e..9770e41 100644 --- a/messente_api/api/number_lookup_api.py +++ b/messente_api/api/number_lookup_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/number_verification_api.py b/messente_api/api/number_verification_api.py index f43910c..fdaf06e 100644 --- a/messente_api/api/number_verification_api.py +++ b/messente_api/api/number_verification_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/omnimessage_api.py b/messente_api/api/omnimessage_api.py index c22f256..b4a1009 100644 --- a/messente_api/api/omnimessage_api.py +++ b/messente_api/api/omnimessage_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/pricing_api.py b/messente_api/api/pricing_api.py index 59daf0b..7012321 100644 --- a/messente_api/api/pricing_api.py +++ b/messente_api/api/pricing_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/statistics_api.py b/messente_api/api/statistics_api.py index b191d2b..aa21e35 100644 --- a/messente_api/api/statistics_api.py +++ b/messente_api/api/statistics_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api/whats_app_templates_api.py b/messente_api/api/whats_app_templates_api.py index 3ea23b9..00e3c9c 100644 --- a/messente_api/api/whats_app_templates_api.py +++ b/messente_api/api/whats_app_templates_api.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/api_client.py b/messente_api/api_client.py index 72caaa4..21f18c6 100644 --- a/messente_api/api_client.py +++ b/messente_api/api_client.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -91,7 +91,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/2.6.0/python' + self.user_agent = 'OpenAPI-Generator/2.7.0/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/messente_api/configuration.py b/messente_api/configuration.py index 3bbd535..0147b7a 100644 --- a/messente_api/configuration.py +++ b/messente_api/configuration.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -558,8 +558,8 @@ def to_debug_report(self) -> str: return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 2.0.0\n"\ - "SDK Package Version: 2.6.0".\ + "Version of the API: 2.1.0\n"\ + "SDK Package Version: 2.7.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self) -> List[HostSetting]: diff --git a/messente_api/exceptions.py b/messente_api/exceptions.py index 0d8f6dc..e28bac4 100644 --- a/messente_api/exceptions.py +++ b/messente_api/exceptions.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/__init__.py b/messente_api/models/__init__.py index f6a890f..c504bff 100644 --- a/messente_api/models/__init__.py +++ b/messente_api/models/__init__.py @@ -6,7 +6,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -87,6 +87,10 @@ from messente_api.models.sync_number_lookup_success import SyncNumberLookupSuccess from messente_api.models.text_store import TextStore from messente_api.models.viber import Viber +from messente_api.models.viber_carousel import ViberCarousel +from messente_api.models.viber_carousel_button import ViberCarouselButton +from messente_api.models.viber_carousel_item import ViberCarouselItem +from messente_api.models.viber_template import ViberTemplate from messente_api.models.viber_video import ViberVideo from messente_api.models.whats_app import WhatsApp from messente_api.models.whats_app_audio import WhatsAppAudio diff --git a/messente_api/models/bulk_omni_message_create_success_response.py b/messente_api/models/bulk_omni_message_create_success_response.py index d25b69a..ac17416 100644 --- a/messente_api/models/bulk_omni_message_create_success_response.py +++ b/messente_api/models/bulk_omni_message_create_success_response.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/bulk_omni_message_create_success_response_messages_inner.py b/messente_api/models/bulk_omni_message_create_success_response_messages_inner.py index 7ed4301..8897f6e 100644 --- a/messente_api/models/bulk_omni_message_create_success_response_messages_inner.py +++ b/messente_api/models/bulk_omni_message_create_success_response_messages_inner.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/bulk_omnimessage.py b/messente_api/models/bulk_omnimessage.py index 56f2593..3a07b9b 100644 --- a/messente_api/models/bulk_omnimessage.py +++ b/messente_api/models/bulk_omnimessage.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/channel.py b/messente_api/models/channel.py index d26f635..fe68cec 100644 --- a/messente_api/models/channel.py +++ b/messente_api/models/channel.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/contact_envelope.py b/messente_api/models/contact_envelope.py index ad8d462..d1dae58 100644 --- a/messente_api/models/contact_envelope.py +++ b/messente_api/models/contact_envelope.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/contact_fields.py b/messente_api/models/contact_fields.py index f016583..8c4baa7 100644 --- a/messente_api/models/contact_fields.py +++ b/messente_api/models/contact_fields.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/contact_list_envelope.py b/messente_api/models/contact_list_envelope.py index a07fbf8..8ced550 100644 --- a/messente_api/models/contact_list_envelope.py +++ b/messente_api/models/contact_list_envelope.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/contact_response_fields.py b/messente_api/models/contact_response_fields.py index 1f48ae6..53f5af8 100644 --- a/messente_api/models/contact_response_fields.py +++ b/messente_api/models/contact_response_fields.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/contact_update_fields.py b/messente_api/models/contact_update_fields.py index 936abba..f3c92a1 100644 --- a/messente_api/models/contact_update_fields.py +++ b/messente_api/models/contact_update_fields.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/delivery_report_response.py b/messente_api/models/delivery_report_response.py index 281bbc8..ecf474a 100644 --- a/messente_api/models/delivery_report_response.py +++ b/messente_api/models/delivery_report_response.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/delivery_result.py b/messente_api/models/delivery_result.py index 235a920..2a95e61 100644 --- a/messente_api/models/delivery_result.py +++ b/messente_api/models/delivery_result.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_code_omnichannel.py b/messente_api/models/error_code_omnichannel.py index 19668c1..a2fab63 100644 --- a/messente_api/models/error_code_omnichannel.py +++ b/messente_api/models/error_code_omnichannel.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_code_omnichannel_machine.py b/messente_api/models/error_code_omnichannel_machine.py index 14ea24a..6a49eb0 100644 --- a/messente_api/models/error_code_omnichannel_machine.py +++ b/messente_api/models/error_code_omnichannel_machine.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_code_phonebook.py b/messente_api/models/error_code_phonebook.py index 40805a5..5842e43 100644 --- a/messente_api/models/error_code_phonebook.py +++ b/messente_api/models/error_code_phonebook.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_code_statistics.py b/messente_api/models/error_code_statistics.py index 39de01e..8446c67 100644 --- a/messente_api/models/error_code_statistics.py +++ b/messente_api/models/error_code_statistics.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_item_number_lookup.py b/messente_api/models/error_item_number_lookup.py index 7f8df20..e200e6f 100644 --- a/messente_api/models/error_item_number_lookup.py +++ b/messente_api/models/error_item_number_lookup.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_item_number_lookup_error.py b/messente_api/models/error_item_number_lookup_error.py index 09c6a1f..8e08293 100644 --- a/messente_api/models/error_item_number_lookup_error.py +++ b/messente_api/models/error_item_number_lookup_error.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_item_omnichannel.py b/messente_api/models/error_item_omnichannel.py index 112997f..6a192ea 100644 --- a/messente_api/models/error_item_omnichannel.py +++ b/messente_api/models/error_item_omnichannel.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_item_phonebook.py b/messente_api/models/error_item_phonebook.py index 33af1d4..ad39d27 100644 --- a/messente_api/models/error_item_phonebook.py +++ b/messente_api/models/error_item_phonebook.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_item_statistics.py b/messente_api/models/error_item_statistics.py index 60c548d..a413a8f 100644 --- a/messente_api/models/error_item_statistics.py +++ b/messente_api/models/error_item_statistics.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_number_lookup.py b/messente_api/models/error_number_lookup.py index b10d600..f714374 100644 --- a/messente_api/models/error_number_lookup.py +++ b/messente_api/models/error_number_lookup.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_omnichannel.py b/messente_api/models/error_omnichannel.py index b5ad944..85b48d4 100644 --- a/messente_api/models/error_omnichannel.py +++ b/messente_api/models/error_omnichannel.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_phonebook.py b/messente_api/models/error_phonebook.py index 3e30024..8d97052 100644 --- a/messente_api/models/error_phonebook.py +++ b/messente_api/models/error_phonebook.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_statistics.py b/messente_api/models/error_statistics.py index d719bb2..9668ec3 100644 --- a/messente_api/models/error_statistics.py +++ b/messente_api/models/error_statistics.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_title_omnichannel.py b/messente_api/models/error_title_omnichannel.py index 2a662b7..b694fa3 100644 --- a/messente_api/models/error_title_omnichannel.py +++ b/messente_api/models/error_title_omnichannel.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/error_title_phonebook.py b/messente_api/models/error_title_phonebook.py index ef3f823..fe445ef 100644 --- a/messente_api/models/error_title_phonebook.py +++ b/messente_api/models/error_title_phonebook.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/fetch_blacklist_success.py b/messente_api/models/fetch_blacklist_success.py index b43016f..571e1ba 100644 --- a/messente_api/models/fetch_blacklist_success.py +++ b/messente_api/models/fetch_blacklist_success.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/group_envelope.py b/messente_api/models/group_envelope.py index 4745f29..409cb1e 100644 --- a/messente_api/models/group_envelope.py +++ b/messente_api/models/group_envelope.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/group_list_envelope.py b/messente_api/models/group_list_envelope.py index ae0c553..6eeae60 100644 --- a/messente_api/models/group_list_envelope.py +++ b/messente_api/models/group_list_envelope.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/group_name.py b/messente_api/models/group_name.py index dd6daa5..7f35ebd 100644 --- a/messente_api/models/group_name.py +++ b/messente_api/models/group_name.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/group_response_fields.py b/messente_api/models/group_response_fields.py index 0b16471..b96d126 100644 --- a/messente_api/models/group_response_fields.py +++ b/messente_api/models/group_response_fields.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/message_result.py b/messente_api/models/message_result.py index f53b80b..f4a78cf 100644 --- a/messente_api/models/message_result.py +++ b/messente_api/models/message_result.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/mobile_network.py b/messente_api/models/mobile_network.py index 8ff57bb..31f6716 100644 --- a/messente_api/models/mobile_network.py +++ b/messente_api/models/mobile_network.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/number_to_blacklist.py b/messente_api/models/number_to_blacklist.py index ac26f1f..e5bd2a4 100644 --- a/messente_api/models/number_to_blacklist.py +++ b/messente_api/models/number_to_blacklist.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/numbers_to_investigate.py b/messente_api/models/numbers_to_investigate.py index 3cea6dd..783bde8 100644 --- a/messente_api/models/numbers_to_investigate.py +++ b/messente_api/models/numbers_to_investigate.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/omni_message_create_success_response.py b/messente_api/models/omni_message_create_success_response.py index b676c7c..5782e39 100644 --- a/messente_api/models/omni_message_create_success_response.py +++ b/messente_api/models/omni_message_create_success_response.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/omnimessage.py b/messente_api/models/omnimessage.py index 8a56e3d..cc2d2f5 100644 --- a/messente_api/models/omnimessage.py +++ b/messente_api/models/omnimessage.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/omnimessage_messages_inner.py b/messente_api/models/omnimessage_messages_inner.py index f1f6473..1813500 100644 --- a/messente_api/models/omnimessage_messages_inner.py +++ b/messente_api/models/omnimessage_messages_inner.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/price.py b/messente_api/models/price.py index 905083e..0119cf7 100644 --- a/messente_api/models/price.py +++ b/messente_api/models/price.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/price_info.py b/messente_api/models/price_info.py index 35f1008..9d85be2 100644 --- a/messente_api/models/price_info.py +++ b/messente_api/models/price_info.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/price_networks_inner.py b/messente_api/models/price_networks_inner.py index ad0985c..c247964 100644 --- a/messente_api/models/price_networks_inner.py +++ b/messente_api/models/price_networks_inner.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/priority.py b/messente_api/models/priority.py index b31877b..d614d03 100644 --- a/messente_api/models/priority.py +++ b/messente_api/models/priority.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs.py b/messente_api/models/rcs.py index db8c417..e0e7456 100644 --- a/messente_api/models/rcs.py +++ b/messente_api/models/rcs.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_card_content.py b/messente_api/models/rcs_card_content.py index 38ef1ba..163c6ea 100644 --- a/messente_api/models/rcs_card_content.py +++ b/messente_api/models/rcs_card_content.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_card_orientation.py b/messente_api/models/rcs_card_orientation.py index 1435ba4..8269e19 100644 --- a/messente_api/models/rcs_card_orientation.py +++ b/messente_api/models/rcs_card_orientation.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_card_width.py b/messente_api/models/rcs_card_width.py index 913e3be..2fd804e 100644 --- a/messente_api/models/rcs_card_width.py +++ b/messente_api/models/rcs_card_width.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_carousel_card.py b/messente_api/models/rcs_carousel_card.py index 28221f8..7fefc4c 100644 --- a/messente_api/models/rcs_carousel_card.py +++ b/messente_api/models/rcs_carousel_card.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_content_info.py b/messente_api/models/rcs_content_info.py index efbf753..8c84e87 100644 --- a/messente_api/models/rcs_content_info.py +++ b/messente_api/models/rcs_content_info.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_create_calendar_event_action.py b/messente_api/models/rcs_create_calendar_event_action.py index e5ee496..59be2df 100644 --- a/messente_api/models/rcs_create_calendar_event_action.py +++ b/messente_api/models/rcs_create_calendar_event_action.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_dial_action.py b/messente_api/models/rcs_dial_action.py index 1154706..761b915 100644 --- a/messente_api/models/rcs_dial_action.py +++ b/messente_api/models/rcs_dial_action.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_image_alignment.py b/messente_api/models/rcs_image_alignment.py index d458fd6..2fbc9be 100644 --- a/messente_api/models/rcs_image_alignment.py +++ b/messente_api/models/rcs_image_alignment.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_lat_lng.py b/messente_api/models/rcs_lat_lng.py index c4d40c9..81f6f95 100644 --- a/messente_api/models/rcs_lat_lng.py +++ b/messente_api/models/rcs_lat_lng.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_media.py b/messente_api/models/rcs_media.py index 9760819..9a1ff5a 100644 --- a/messente_api/models/rcs_media.py +++ b/messente_api/models/rcs_media.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_media_height.py b/messente_api/models/rcs_media_height.py index 0ee5ce9..6094aba 100644 --- a/messente_api/models/rcs_media_height.py +++ b/messente_api/models/rcs_media_height.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_open_url_action.py b/messente_api/models/rcs_open_url_action.py index d8ddfc0..6ebf667 100644 --- a/messente_api/models/rcs_open_url_action.py +++ b/messente_api/models/rcs_open_url_action.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_open_url_application.py b/messente_api/models/rcs_open_url_application.py index 1a4b65d..6e2013d 100644 --- a/messente_api/models/rcs_open_url_application.py +++ b/messente_api/models/rcs_open_url_application.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_rich_card.py b/messente_api/models/rcs_rich_card.py index f596099..0a5ac3f 100644 --- a/messente_api/models/rcs_rich_card.py +++ b/messente_api/models/rcs_rich_card.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_standalone_card.py b/messente_api/models/rcs_standalone_card.py index 7dddd57..0e85ab1 100644 --- a/messente_api/models/rcs_standalone_card.py +++ b/messente_api/models/rcs_standalone_card.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_suggested_action.py b/messente_api/models/rcs_suggested_action.py index ed7939b..d936389 100644 --- a/messente_api/models/rcs_suggested_action.py +++ b/messente_api/models/rcs_suggested_action.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_suggested_reply.py b/messente_api/models/rcs_suggested_reply.py index 3cbb302..e554320 100644 --- a/messente_api/models/rcs_suggested_reply.py +++ b/messente_api/models/rcs_suggested_reply.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_suggestion.py b/messente_api/models/rcs_suggestion.py index e9f4381..556a70a 100644 --- a/messente_api/models/rcs_suggestion.py +++ b/messente_api/models/rcs_suggestion.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_view_location_action.py b/messente_api/models/rcs_view_location_action.py index ce85983..4a45be3 100644 --- a/messente_api/models/rcs_view_location_action.py +++ b/messente_api/models/rcs_view_location_action.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/rcs_webview_view_mode.py b/messente_api/models/rcs_webview_view_mode.py index 4771f6b..09a1fe7 100644 --- a/messente_api/models/rcs_webview_view_mode.py +++ b/messente_api/models/rcs_webview_view_mode.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/sms.py b/messente_api/models/sms.py index a857777..a3362c7 100644 --- a/messente_api/models/sms.py +++ b/messente_api/models/sms.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -43,8 +43,8 @@ def autoconvert_validate_enum(cls, value): if value is None: return value - if value not in set(['full', 'on', 'off']): - raise ValueError("must be one of enum values ('full', 'on', 'off')") + if value not in set(['full', 'true', 'false']): + raise ValueError("must be one of enum values ('full', 'true', 'false')") return value @field_validator('channel') diff --git a/messente_api/models/statistics_report.py b/messente_api/models/statistics_report.py index dccf197..c995e72 100644 --- a/messente_api/models/statistics_report.py +++ b/messente_api/models/statistics_report.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/statistics_report_settings.py b/messente_api/models/statistics_report_settings.py index b672115..35ea61c 100644 --- a/messente_api/models/statistics_report_settings.py +++ b/messente_api/models/statistics_report_settings.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/statistics_report_success.py b/messente_api/models/statistics_report_success.py index 766dde2..4576a04 100644 --- a/messente_api/models/statistics_report_success.py +++ b/messente_api/models/statistics_report_success.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/status.py b/messente_api/models/status.py index 688c67b..7a7a4e1 100644 --- a/messente_api/models/status.py +++ b/messente_api/models/status.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/sync_number_lookup_result.py b/messente_api/models/sync_number_lookup_result.py index 67ce650..e2d4f71 100644 --- a/messente_api/models/sync_number_lookup_result.py +++ b/messente_api/models/sync_number_lookup_result.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -46,8 +46,8 @@ def status_validate_enum(cls, value): if value is None: return value - if value not in set(['ON', 'OFF', 'INVALID', 'UNKNOWN']): - raise ValueError("must be one of enum values ('ON', 'OFF', 'INVALID', 'UNKNOWN')") + if value not in set(['true', 'false', 'INVALID', 'UNKNOWN']): + raise ValueError("must be one of enum values ('true', 'false', 'INVALID', 'UNKNOWN')") return value model_config = ConfigDict( diff --git a/messente_api/models/sync_number_lookup_success.py b/messente_api/models/sync_number_lookup_success.py index 70d4817..d581115 100644 --- a/messente_api/models/sync_number_lookup_success.py +++ b/messente_api/models/sync_number_lookup_success.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/text_store.py b/messente_api/models/text_store.py index c0d528e..66f0764 100644 --- a/messente_api/models/text_store.py +++ b/messente_api/models/text_store.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/viber.py b/messente_api/models/viber.py index 23f7c31..556a5f0 100644 --- a/messente_api/models/viber.py +++ b/messente_api/models/viber.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -20,25 +20,29 @@ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, field_validator from typing import Any, ClassVar, Dict, List, Optional +from messente_api.models.viber_carousel import ViberCarousel +from messente_api.models.viber_template import ViberTemplate from messente_api.models.viber_video import ViberVideo from typing import Optional, Set from typing_extensions import Self class Viber(BaseModel): """ - Viber message content + Viber message content. You must provide one of these combinations: * image_url * text * text, button_text and button_url * text, image_url, button_text and button_url * video * video, text * video, text, button_text * video, text, button_text and button_url * carousel and text """ # noqa: E501 sender: Optional[StrictStr] = Field(default=None, description="Phone number or alphanumeric sender name") validity: Optional[StrictInt] = Field(default=None, description="After how many minutes this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.") ttl: Optional[StrictInt] = Field(default=None, description="After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used.") text: Optional[StrictStr] = Field(default=None, description="Plaintext content for Viber") - image_url: Optional[StrictStr] = Field(default=None, description="URL for the embedded image Valid combinations: 1) image_url, 2) text, image_url, button_url, button_text") + image_url: Optional[StrictStr] = Field(default=None, description="URL for the embedded image.") button_url: Optional[StrictStr] = Field(default=None, description="URL of the button, must be specified along with ''text'', ''button_text'' and ''image_url'' (optional)") button_text: Optional[StrictStr] = Field(default=None, description="Must be specified along with ''text'', ''button_url'', ''button_text'', ''image_url'' (optional)") channel: Optional[StrictStr] = Field(default='viber', description="The channel used to deliver the message") video: Optional[ViberVideo] = None + template: Optional[ViberTemplate] = None + carousel: Optional[ViberCarousel] = None additional_properties: Dict[str, Any] = {} - __properties: ClassVar[List[str]] = ["sender", "validity", "ttl", "text", "image_url", "button_url", "button_text", "channel", "video"] + __properties: ClassVar[List[str]] = ["sender", "validity", "ttl", "text", "image_url", "button_url", "button_text", "channel", "video", "template", "carousel"] @field_validator('channel') def channel_validate_enum(cls, value): @@ -94,6 +98,12 @@ def to_dict(self) -> Dict[str, Any]: # override the default output from pydantic by calling `to_dict()` of video if self.video: _dict['video'] = self.video.to_dict() + # override the default output from pydantic by calling `to_dict()` of template + if self.template: + _dict['template'] = self.template.to_dict() + # override the default output from pydantic by calling `to_dict()` of carousel + if self.carousel: + _dict['carousel'] = self.carousel.to_dict() # puts key-value pairs in additional_properties in the top level if self.additional_properties is not None: for _key, _value in self.additional_properties.items(): @@ -119,7 +129,9 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "button_url": obj.get("button_url"), "button_text": obj.get("button_text"), "channel": obj.get("channel") if obj.get("channel") is not None else 'viber', - "video": ViberVideo.from_dict(obj["video"]) if obj.get("video") is not None else None + "video": ViberVideo.from_dict(obj["video"]) if obj.get("video") is not None else None, + "template": ViberTemplate.from_dict(obj["template"]) if obj.get("template") is not None else None, + "carousel": ViberCarousel.from_dict(obj["carousel"]) if obj.get("carousel") is not None else None }) # store additional fields in additional_properties for _key in obj.keys(): diff --git a/messente_api/models/viber_carousel.py b/messente_api/models/viber_carousel.py new file mode 100644 index 0000000..e73debe --- /dev/null +++ b/messente_api/models/viber_carousel.py @@ -0,0 +1,110 @@ +# coding: utf-8 + +""" + Messente API + + [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. + + The version of the OpenAPI document: 2.1.0 + Contact: messente@messente.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field +from typing import Any, ClassVar, Dict, List +from typing_extensions import Annotated +from messente_api.models.viber_carousel_item import ViberCarouselItem +from typing import Optional, Set +from typing_extensions import Self + +class ViberCarousel(BaseModel): + """ + Viber carousel object. + """ # noqa: E501 + items: Annotated[List[ViberCarouselItem], Field(min_length=2, max_length=5)] = Field(description="Carousel items. Must contain between 2 and 5 items.") + additional_properties: Dict[str, Any] = {} + __properties: ClassVar[List[str]] = ["items"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of ViberCarousel from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + * Fields in `self.additional_properties` are added to the output dict. + """ + excluded_fields: Set[str] = set([ + "additional_properties", + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of each item in items (list) + _items = [] + if self.items: + for _item_items in self.items: + if _item_items: + _items.append(_item_items.to_dict()) + _dict['items'] = _items + # puts key-value pairs in additional_properties in the top level + if self.additional_properties is not None: + for _key, _value in self.additional_properties.items(): + _dict[_key] = _value + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of ViberCarousel from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "items": [ViberCarouselItem.from_dict(_item) for _item in obj["items"]] if obj.get("items") is not None else None + }) + # store additional fields in additional_properties + for _key in obj.keys(): + if _key not in cls.__properties: + _obj.additional_properties[_key] = obj.get(_key) + + return _obj + + diff --git a/messente_api/models/viber_carousel_button.py b/messente_api/models/viber_carousel_button.py new file mode 100644 index 0000000..1b685ef --- /dev/null +++ b/messente_api/models/viber_carousel_button.py @@ -0,0 +1,104 @@ +# coding: utf-8 + +""" + Messente API + + [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. + + The version of the OpenAPI document: 2.1.0 + Contact: messente@messente.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List +from typing_extensions import Annotated +from typing import Optional, Set +from typing_extensions import Self + +class ViberCarouselButton(BaseModel): + """ + Viber carousel button object. + """ # noqa: E501 + label: Annotated[str, Field(min_length=1, strict=True)] = Field(description="Button label text.") + action_url: StrictStr = Field(description="URL opened when the button is clicked.") + additional_properties: Dict[str, Any] = {} + __properties: ClassVar[List[str]] = ["label", "action_url"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of ViberCarouselButton from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + * Fields in `self.additional_properties` are added to the output dict. + """ + excluded_fields: Set[str] = set([ + "additional_properties", + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # puts key-value pairs in additional_properties in the top level + if self.additional_properties is not None: + for _key, _value in self.additional_properties.items(): + _dict[_key] = _value + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of ViberCarouselButton from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "label": obj.get("label"), + "action_url": obj.get("action_url") + }) + # store additional fields in additional_properties + for _key in obj.keys(): + if _key not in cls.__properties: + _obj.additional_properties[_key] = obj.get(_key) + + return _obj + + diff --git a/messente_api/models/viber_carousel_item.py b/messente_api/models/viber_carousel_item.py new file mode 100644 index 0000000..447363e --- /dev/null +++ b/messente_api/models/viber_carousel_item.py @@ -0,0 +1,115 @@ +# coding: utf-8 + +""" + Messente API + + [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. + + The version of the OpenAPI document: 2.1.0 + Contact: messente@messente.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing_extensions import Annotated +from messente_api.models.viber_carousel_button import ViberCarouselButton +from typing import Optional, Set +from typing_extensions import Self + +class ViberCarouselItem(BaseModel): + """ + Viber carousel item object. + """ # noqa: E501 + title: Annotated[str, Field(min_length=2, strict=True, max_length=38)] = Field(description="Carousel item title.") + image_url: StrictStr = Field(description="URL of the carousel item image.") + primary_button: ViberCarouselButton + secondary_button: Optional[ViberCarouselButton] = None + additional_properties: Dict[str, Any] = {} + __properties: ClassVar[List[str]] = ["title", "image_url", "primary_button", "secondary_button"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of ViberCarouselItem from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + * Fields in `self.additional_properties` are added to the output dict. + """ + excluded_fields: Set[str] = set([ + "additional_properties", + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of primary_button + if self.primary_button: + _dict['primary_button'] = self.primary_button.to_dict() + # override the default output from pydantic by calling `to_dict()` of secondary_button + if self.secondary_button: + _dict['secondary_button'] = self.secondary_button.to_dict() + # puts key-value pairs in additional_properties in the top level + if self.additional_properties is not None: + for _key, _value in self.additional_properties.items(): + _dict[_key] = _value + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of ViberCarouselItem from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "title": obj.get("title"), + "image_url": obj.get("image_url"), + "primary_button": ViberCarouselButton.from_dict(obj["primary_button"]) if obj.get("primary_button") is not None else None, + "secondary_button": ViberCarouselButton.from_dict(obj["secondary_button"]) if obj.get("secondary_button") is not None else None + }) + # store additional fields in additional_properties + for _key in obj.keys(): + if _key not in cls.__properties: + _obj.additional_properties[_key] = obj.get(_key) + + return _obj + + diff --git a/messente_api/models/viber_template.py b/messente_api/models/viber_template.py new file mode 100644 index 0000000..71c2e0e --- /dev/null +++ b/messente_api/models/viber_template.py @@ -0,0 +1,105 @@ +# coding: utf-8 + +""" + Messente API + + [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. + + The version of the OpenAPI document: 2.1.0 + Contact: messente@messente.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class ViberTemplate(BaseModel): + """ + Viber template object. + """ # noqa: E501 + id: StrictStr = Field(description="Template ID.") + lang: StrictStr = Field(description="Template language code.") + params: Optional[Dict[str, StrictStr]] = Field(default=None, description="Optional template parameters as key-value string pairs.") + additional_properties: Dict[str, Any] = {} + __properties: ClassVar[List[str]] = ["id", "lang", "params"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of ViberTemplate from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + * Fields in `self.additional_properties` are added to the output dict. + """ + excluded_fields: Set[str] = set([ + "additional_properties", + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # puts key-value pairs in additional_properties in the top level + if self.additional_properties is not None: + for _key, _value in self.additional_properties.items(): + _dict[_key] = _value + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of ViberTemplate from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "id": obj.get("id"), + "lang": obj.get("lang"), + "params": obj.get("params") + }) + # store additional fields in additional_properties + for _key in obj.keys(): + if _key not in cls.__properties: + _obj.additional_properties[_key] = obj.get(_key) + + return _obj + + diff --git a/messente_api/models/viber_video.py b/messente_api/models/viber_video.py index 21243b7..0c44e76 100644 --- a/messente_api/models/viber_video.py +++ b/messente_api/models/viber_video.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app.py b/messente_api/models/whats_app.py index ea4de02..9a7fa70 100644 --- a/messente_api/models/whats_app.py +++ b/messente_api/models/whats_app.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_audio.py b/messente_api/models/whats_app_audio.py index dc6352d..c9e029b 100644 --- a/messente_api/models/whats_app_audio.py +++ b/messente_api/models/whats_app_audio.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_component.py b/messente_api/models/whats_app_component.py index 698bbe6..e3dfae9 100644 --- a/messente_api/models/whats_app_component.py +++ b/messente_api/models/whats_app_component.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_currency.py b/messente_api/models/whats_app_currency.py index a53c18b..c6dec7d 100644 --- a/messente_api/models/whats_app_currency.py +++ b/messente_api/models/whats_app_currency.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_datetime.py b/messente_api/models/whats_app_datetime.py index b45e86d..06215df 100644 --- a/messente_api/models/whats_app_datetime.py +++ b/messente_api/models/whats_app_datetime.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_document.py b/messente_api/models/whats_app_document.py index a2c457a..56adb6e 100644 --- a/messente_api/models/whats_app_document.py +++ b/messente_api/models/whats_app_document.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_image.py b/messente_api/models/whats_app_image.py index 3678721..9f347c7 100644 --- a/messente_api/models/whats_app_image.py +++ b/messente_api/models/whats_app_image.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_language.py b/messente_api/models/whats_app_language.py index 18ab604..5779093 100644 --- a/messente_api/models/whats_app_language.py +++ b/messente_api/models/whats_app_language.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_media.py b/messente_api/models/whats_app_media.py index 2d398fc..a21311e 100644 --- a/messente_api/models/whats_app_media.py +++ b/messente_api/models/whats_app_media.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_parameter.py b/messente_api/models/whats_app_parameter.py index f91b12b..5f35d7d 100644 --- a/messente_api/models/whats_app_parameter.py +++ b/messente_api/models/whats_app_parameter.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_sticker.py b/messente_api/models/whats_app_sticker.py index 995f14a..f8c3ee4 100644 --- a/messente_api/models/whats_app_sticker.py +++ b/messente_api/models/whats_app_sticker.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_template.py b/messente_api/models/whats_app_template.py index 636206e..1d1a253 100644 --- a/messente_api/models/whats_app_template.py +++ b/messente_api/models/whats_app_template.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_text.py b/messente_api/models/whats_app_text.py index 9a8b6a8..3479d5f 100644 --- a/messente_api/models/whats_app_text.py +++ b/messente_api/models/whats_app_text.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whats_app_video.py b/messente_api/models/whats_app_video.py index fac3246..d072d18 100644 --- a/messente_api/models/whats_app_video.py +++ b/messente_api/models/whats_app_video.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_button_type.py b/messente_api/models/whatsapp_button_type.py index 8cb1f38..dc2b6ba 100644 --- a/messente_api/models/whatsapp_button_type.py +++ b/messente_api/models/whatsapp_button_type.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_component_type.py b/messente_api/models/whatsapp_component_type.py index 063c257..1403432 100644 --- a/messente_api/models/whatsapp_component_type.py +++ b/messente_api/models/whatsapp_component_type.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_create_template_request.py b/messente_api/models/whatsapp_create_template_request.py index b45427c..e9ae769 100644 --- a/messente_api/models/whatsapp_create_template_request.py +++ b/messente_api/models/whatsapp_create_template_request.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_create_template_response.py b/messente_api/models/whatsapp_create_template_response.py index 471f3a3..187b51b 100644 --- a/messente_api/models/whatsapp_create_template_response.py +++ b/messente_api/models/whatsapp_create_template_response.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_header_format.py b/messente_api/models/whatsapp_header_format.py index 4058010..7366696 100644 --- a/messente_api/models/whatsapp_header_format.py +++ b/messente_api/models/whatsapp_header_format.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_list_templates_response.py b/messente_api/models/whatsapp_list_templates_response.py index 7a8f9e4..34de1a5 100644 --- a/messente_api/models/whatsapp_list_templates_response.py +++ b/messente_api/models/whatsapp_list_templates_response.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_otp_button_type.py b/messente_api/models/whatsapp_otp_button_type.py index 3a7281b..5894c1e 100644 --- a/messente_api/models/whatsapp_otp_button_type.py +++ b/messente_api/models/whatsapp_otp_button_type.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_pagination.py b/messente_api/models/whatsapp_pagination.py index 5373e3d..2dd44f2 100644 --- a/messente_api/models/whatsapp_pagination.py +++ b/messente_api/models/whatsapp_pagination.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_paging_cursors.py b/messente_api/models/whatsapp_paging_cursors.py index a464884..fd90574 100644 --- a/messente_api/models/whatsapp_paging_cursors.py +++ b/messente_api/models/whatsapp_paging_cursors.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_supported_app.py b/messente_api/models/whatsapp_supported_app.py index 27d0105..0b409b0 100644 --- a/messente_api/models/whatsapp_supported_app.py +++ b/messente_api/models/whatsapp_supported_app.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_template_button.py b/messente_api/models/whatsapp_template_button.py index 9547252..2eeb3b7 100644 --- a/messente_api/models/whatsapp_template_button.py +++ b/messente_api/models/whatsapp_template_button.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_template_category.py b/messente_api/models/whatsapp_template_category.py index 5909864..91e2ab1 100644 --- a/messente_api/models/whatsapp_template_category.py +++ b/messente_api/models/whatsapp_template_category.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_template_component.py b/messente_api/models/whatsapp_template_component.py index f907ace..ce16d7d 100644 --- a/messente_api/models/whatsapp_template_component.py +++ b/messente_api/models/whatsapp_template_component.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_template_example.py b/messente_api/models/whatsapp_template_example.py index 82f8735..c09824d 100644 --- a/messente_api/models/whatsapp_template_example.py +++ b/messente_api/models/whatsapp_template_example.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_template_response.py b/messente_api/models/whatsapp_template_response.py index e55db73..948bf33 100644 --- a/messente_api/models/whatsapp_template_response.py +++ b/messente_api/models/whatsapp_template_response.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_template_status.py b/messente_api/models/whatsapp_template_status.py index 9023cb5..d534930 100644 --- a/messente_api/models/whatsapp_template_status.py +++ b/messente_api/models/whatsapp_template_status.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/models/whatsapp_update_template_request.py b/messente_api/models/whatsapp_update_template_request.py index a892d9f..6b7924c 100644 --- a/messente_api/models/whatsapp_update_template_request.py +++ b/messente_api/models/whatsapp_update_template_request.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/messente_api/rest.py b/messente_api/rest.py index 29d6463..1f6d15b 100644 --- a/messente_api/rest.py +++ b/messente_api/rest.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/pyproject.toml b/pyproject.toml index 8efd334..d4ab8f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "messente_api" -version = "2.6.0" +version = "2.7.0" description = "Messente API" authors = ["Messente "] license = "Apache-2.0" diff --git a/setup.py b/setup.py index 72aa28a..c367b54 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. - The version of the OpenAPI document: 2.0.0 + The version of the OpenAPI document: 2.1.0 Contact: messente@messente.com Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -22,7 +22,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "messente-api" -VERSION = "2.6.0" +VERSION = "2.7.0" PYTHON_REQUIRES = ">= 3.8" REQUIRES = [ "urllib3 >= 1.25.3, < 3.0.0",