diff --git a/README.md b/README.md index 49f71db..351c6ac 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Messente API Library -- Messente API version: 1.2.0 -- Python package version: 1.2.2 +- Messente API version: 1.3.0 +- Python package version: 1.3.0 [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram 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/ContactFields.md b/docs/ContactFields.md index 5242003..741552a 100644 --- a/docs/ContactFields.md +++ b/docs/ContactFields.md @@ -14,6 +14,7 @@ Name | Type | Description | Notes **custom2** | **str** | The second custom field | [optional] **custom3** | **str** | The third custom field | [optional] **custom4** | **str** | The fourth custom field | [optional] +**scheduled_deletion_date** | **date** | The date in ISO 8601 format, YYYY-MM-DD, on which the contact is going to be deleted because it has not belonged to a group for 30 days | [optional] [[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/ContactsApi.md b/docs/ContactsApi.md index a7a4f8b..9ac1d5c 100644 --- a/docs/ContactsApi.md +++ b/docs/ContactsApi.md @@ -127,7 +127,7 @@ configuration = messente_api.Configuration( with messente_api.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = messente_api.ContactsApi(api_client) - contact_fields = {"phoneNumber":"+37251000000","email":"anyone@messente.com","firstName":"Any","lastName":"One","company":"Messente","title":"Sir","custom":"Any custom","custom2":"Any custom two","custom3":"Any custom three","custom4":"Any custom four"} # ContactFields | + contact_fields = {"phoneNumber":"+37251000000","email":"anyone@messente.com","firstName":"Any","lastName":"One","company":"Messente","title":"Sir","custom":"Any custom","custom2":"Any custom two","custom3":"Any custom three","custom4":"Any custom four","scheduledDeletionDate":"2020-08-31"} # ContactFields | try: # Creates a new contact @@ -575,7 +575,7 @@ with messente_api.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = messente_api.ContactsApi(api_client) phone = '+37251000000' # str | A phone number -contact_update_fields = {"email":"anyone@messente.com","firstName":"Any","lastName":"One","company":"Messente","title":"Sir","custom":"Any custom","custom2":"Any custom two","custom3":"Any custom three","custom4":"Any custom four"} # ContactUpdateFields | +contact_update_fields = {"email":"anyone@messente.com","firstName":"Any","lastName":"One","company":"Messente","title":"Sir","custom":"Any custom","custom2":"Any custom two","custom3":"Any custom three","custom4":"Any custom four","scheduledDeletionDate":"2020-08-31"} # ContactUpdateFields | try: # Updates a contact diff --git a/docs/OmnimessageApi.md b/docs/OmnimessageApi.md index 06628b7..3bbe348 100644 --- a/docs/OmnimessageApi.md +++ b/docs/OmnimessageApi.md @@ -9,7 +9,7 @@ Method | HTTP request | Description # **cancel_scheduled_message** -> cancel_scheduled_message(omnimessage_id) +> object cancel_scheduled_message(omnimessage_id) Cancels a scheduled Omnimessage @@ -47,7 +47,8 @@ with messente_api.ApiClient(configuration) as api_client: try: # Cancels a scheduled Omnimessage - api_instance.cancel_scheduled_message(omnimessage_id) + api_response = api_instance.cancel_scheduled_message(omnimessage_id) + pprint(api_response) except ApiException as e: print("Exception when calling OmnimessageApi->cancel_scheduled_message: %s\n" % e) ``` @@ -60,7 +61,7 @@ Name | Type | Description | Notes ### Return type -void (empty response body) +**object** ### Authorization diff --git a/docs/StatisticsReportSettings.md b/docs/StatisticsReportSettings.md index 108ffcd..8c7fea4 100644 --- a/docs/StatisticsReportSettings.md +++ b/docs/StatisticsReportSettings.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **start_date** | **date** | Start date for the report | **end_date** | **date** | End date for the report | -**message_types** | **list[str]** | Optional list of message types (sms, viber, whatsapp, hlr) | [optional] +**message_types** | **list[str]** | Optional list of message types (sms, viber, whatsapp, hlr, telegram) | [optional] [[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 f86d0df..cec4bb2 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ @@ -15,7 +15,7 @@ from __future__ import absolute_import -__version__ = "1.2.2" +__version__ = "1.3.0" # import apis into sdk package from messente_api.api.blacklist_api import BlacklistApi diff --git a/messente_api/api/blacklist_api.py b/messente_api/api/blacklist_api.py index a860f26..9e67a8c 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/api/contacts_api.py b/messente_api/api/contacts_api.py index 3a7d328..501ad88 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/api/delivery_report_api.py b/messente_api/api/delivery_report_api.py index 6fb63a2..65c4783 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/api/groups_api.py b/messente_api/api/groups_api.py index a216009..7e6e25a 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/api/number_lookup_api.py b/messente_api/api/number_lookup_api.py index 72f63da..673e80a 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/api/omnimessage_api.py b/messente_api/api/omnimessage_api.py index cbc7f33..4d17d51 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ @@ -54,7 +54,7 @@ def cancel_scheduled_message(self, omnimessage_id, **kwargs): # noqa: E501 number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. - :return: None + :return: object If the method is called asynchronously, returns the request thread. """ @@ -80,7 +80,7 @@ def cancel_scheduled_message_with_http_info(self, omnimessage_id, **kwargs): # number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. - :return: None + :return: tuple(object, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ @@ -141,7 +141,7 @@ def cancel_scheduled_message_with_http_info(self, omnimessage_id, **kwargs): # body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='object', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 diff --git a/messente_api/api/statistics_api.py b/messente_api/api/statistics_api.py index 3b51b06..3001550 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/api_client.py b/messente_api/api_client.py index fcabb37..070b802 100644 --- a/messente_api/api_client.py +++ b/messente_api/api_client.py @@ -4,7 +4,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ @@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/1.2.2/python' + self.user_agent = 'OpenAPI-Generator/1.3.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 c9bcbe5..f0c27bb 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ @@ -349,8 +349,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 1.2.0\n"\ - "SDK Package Version: 1.2.2".\ + "Version of the API: 1.3.0\n"\ + "SDK Package Version: 1.3.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/messente_api/exceptions.py b/messente_api/exceptions.py index fc7556a..15de77f 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/__init__.py b/messente_api/models/__init__.py index 760d533..0e578ec 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/channel.py b/messente_api/models/channel.py index 1f79e65..446990c 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/contact_envelope.py b/messente_api/models/contact_envelope.py index 58642cc..86a7735 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/contact_fields.py b/messente_api/models/contact_fields.py index 5cfe7a7..30604c9 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ @@ -43,7 +43,8 @@ class ContactFields(object): 'custom': 'str', 'custom2': 'str', 'custom3': 'str', - 'custom4': 'str' + 'custom4': 'str', + 'scheduled_deletion_date': 'date' } attribute_map = { @@ -56,10 +57,11 @@ class ContactFields(object): 'custom': 'custom', 'custom2': 'custom2', 'custom3': 'custom3', - 'custom4': 'custom4' + 'custom4': 'custom4', + 'scheduled_deletion_date': 'scheduledDeletionDate' } - def __init__(self, phone_number=None, email=None, first_name=None, last_name=None, company=None, title=None, custom=None, custom2=None, custom3=None, custom4=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, phone_number=None, email=None, first_name=None, last_name=None, company=None, title=None, custom=None, custom2=None, custom3=None, custom4=None, scheduled_deletion_date=None, local_vars_configuration=None): # noqa: E501 """ContactFields - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration() @@ -75,6 +77,7 @@ def __init__(self, phone_number=None, email=None, first_name=None, last_name=Non self._custom2 = None self._custom3 = None self._custom4 = None + self._scheduled_deletion_date = None self.discriminator = None self.phone_number = phone_number @@ -87,6 +90,7 @@ def __init__(self, phone_number=None, email=None, first_name=None, last_name=Non self.custom2 = custom2 self.custom3 = custom3 self.custom4 = custom4 + self.scheduled_deletion_date = scheduled_deletion_date @property def phone_number(self): @@ -320,6 +324,29 @@ def custom4(self, custom4): self._custom4 = custom4 + @property + def scheduled_deletion_date(self): + """Gets the scheduled_deletion_date of this ContactFields. # noqa: E501 + + The date in ISO 8601 format, YYYY-MM-DD, on which the contact is going to be deleted because it has not belonged to a group for 30 days # noqa: E501 + + :return: The scheduled_deletion_date of this ContactFields. # noqa: E501 + :rtype: date + """ + return self._scheduled_deletion_date + + @scheduled_deletion_date.setter + def scheduled_deletion_date(self, scheduled_deletion_date): + """Sets the scheduled_deletion_date of this ContactFields. + + The date in ISO 8601 format, YYYY-MM-DD, on which the contact is going to be deleted because it has not belonged to a group for 30 days # noqa: E501 + + :param scheduled_deletion_date: The scheduled_deletion_date of this ContactFields. # noqa: E501 + :type: date + """ + + self._scheduled_deletion_date = scheduled_deletion_date + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/messente_api/models/contact_list_envelope.py b/messente_api/models/contact_list_envelope.py index f9f1e00..4974373 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/contact_update_fields.py b/messente_api/models/contact_update_fields.py index 9ac05bf..037f5d0 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/delivery_report_response.py b/messente_api/models/delivery_report_response.py index ed6f957..f4c5d7f 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/delivery_result.py b/messente_api/models/delivery_result.py index 21c0e8e..6c34b2c 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_code_omnichannel.py b/messente_api/models/error_code_omnichannel.py index 997accc..f7003af 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: 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 a2c0da9..5c78350 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_code_phonebook.py b/messente_api/models/error_code_phonebook.py index b9bea0a..7f77582 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_code_statistics.py b/messente_api/models/error_code_statistics.py index 11a3e86..ee89537 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: 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 ab58909..e86b290 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: 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 97d29f2..5133187 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_item_omnichannel.py b/messente_api/models/error_item_omnichannel.py index 59b4486..54b9a99 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ @@ -155,8 +155,6 @@ def source(self, source): :param source: The source of this ErrorItemOmnichannel. # noqa: E501 :type: str """ - if self.local_vars_configuration.client_side_validation and source is None: # noqa: E501 - raise ValueError("Invalid value for `source`, must not be `None`") # noqa: E501 self._source = source diff --git a/messente_api/models/error_item_phonebook.py b/messente_api/models/error_item_phonebook.py index d2e0921..8e706d1 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_item_statistics.py b/messente_api/models/error_item_statistics.py index dcc8801..85f747e 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_number_lookup.py b/messente_api/models/error_number_lookup.py index 91c89d9..f5ea6ab 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_omnichannel.py b/messente_api/models/error_omnichannel.py index d6a080d..98f5b1b 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_phonebook.py b/messente_api/models/error_phonebook.py index a3a6747..2e083e2 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_statistics.py b/messente_api/models/error_statistics.py index 8a7aa6a..fb3069d 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_title_omnichannel.py b/messente_api/models/error_title_omnichannel.py index 1b0cbb2..d8f95cd 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_title_phonebook.py b/messente_api/models/error_title_phonebook.py index ec9334f..49fb87c 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/fetch_blacklist_success.py b/messente_api/models/fetch_blacklist_success.py index 0488ac8..a9d1cff 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/group_envelope.py b/messente_api/models/group_envelope.py index 4c9a682..4bbe419 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/group_list_envelope.py b/messente_api/models/group_list_envelope.py index c79e5c6..1d8cbda 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/group_name.py b/messente_api/models/group_name.py index e473dea..796fcfd 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/group_response_fields.py b/messente_api/models/group_response_fields.py index d1b24c2..a64ee4c 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/message_result.py b/messente_api/models/message_result.py index d327dc7..afa0548 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/mobile_network.py b/messente_api/models/mobile_network.py index 35a1f6f..e465eeb 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/number_to_blacklist.py b/messente_api/models/number_to_blacklist.py index 8c08f28..a81aa14 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/numbers_to_investigate.py b/messente_api/models/numbers_to_investigate.py index 6b6fad0..9af720a 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: 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 73a01f7..8a3d094 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/omnimessage.py b/messente_api/models/omnimessage.py index 592a31d..bdf459f 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/sms.py b/messente_api/models/sms.py index 3d63b88..d61c244 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/statistics_report.py b/messente_api/models/statistics_report.py index d08c1c0..a461f60 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/statistics_report_settings.py b/messente_api/models/statistics_report_settings.py index 5ea830e..d7ba5e8 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ @@ -115,7 +115,7 @@ def end_date(self, end_date): def message_types(self): """Gets the message_types of this StatisticsReportSettings. # noqa: E501 - Optional list of message types (sms, viber, whatsapp, hlr) # noqa: E501 + Optional list of message types (sms, viber, whatsapp, hlr, telegram) # noqa: E501 :return: The message_types of this StatisticsReportSettings. # noqa: E501 :rtype: list[str] @@ -126,7 +126,7 @@ def message_types(self): def message_types(self, message_types): """Sets the message_types of this StatisticsReportSettings. - Optional list of message types (sms, viber, whatsapp, hlr) # noqa: E501 + Optional list of message types (sms, viber, whatsapp, hlr, telegram) # noqa: E501 :param message_types: The message_types of this StatisticsReportSettings. # noqa: E501 :type: list[str] diff --git a/messente_api/models/statistics_report_success.py b/messente_api/models/statistics_report_success.py index 4700726..1053df8 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/status.py b/messente_api/models/status.py index caa0057..4070c04 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: 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 c2f8b53..114082e 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/sync_number_lookup_success.py b/messente_api/models/sync_number_lookup_success.py index a151311..48ff3a9 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/telegram.py b/messente_api/models/telegram.py index cf85aab..e7d899e 100644 --- a/messente_api/models/telegram.py +++ b/messente_api/models/telegram.py @@ -5,7 +5,7 @@ [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/text_store.py b/messente_api/models/text_store.py index a1cfcba..00708bc 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/viber.py b/messente_api/models/viber.py index 2c24824..aab0b53 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/whats_app.py b/messente_api/models/whats_app.py index 003171a..6e56c74 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/whats_app_audio.py b/messente_api/models/whats_app_audio.py index c194423..1f922a8 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/whats_app_document.py b/messente_api/models/whats_app_document.py index e7f40ec..b095734 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/whats_app_image.py b/messente_api/models/whats_app_image.py index b62dae5..5832780 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/whats_app_text.py b/messente_api/models/whats_app_text.py index cf7f1e0..3256a7d 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/rest.py b/messente_api/rest.py index b93e90d..568de92 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/setup.py b/setup.py index 22bcb7c..e449c20 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, WhatsApp and Telegram 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. # noqa: E501 - The version of the OpenAPI document: 1.2.0 + The version of the OpenAPI document: 1.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ @@ -14,7 +14,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "messente-api" -VERSION = "1.2.2" +VERSION = "1.3.0" # To install the library, run the following # # python setup.py install @@ -31,7 +31,7 @@ author="Messente", author_email="messente@messente.com", url="https://github.com/messente/messente-api-python", - keywords=["viber", "sms", "whatsapp", "phonebook"], + keywords=["viber", "sms", "telegram", "whatsapp", "phonebook"], install_requires=REQUIRES, packages=find_packages(exclude=["test", "tests"]), include_package_data=True,