From 548c09d2a7efc88c4b1a42bfe9482a47ee3b7c81 Mon Sep 17 00:00:00 2001 From: api-librarian Date: Fri, 9 Oct 2020 10:40:19 +0000 Subject: [PATCH 1/3] Travis update: Oct 2020 (Build 647) [skip ci] --- docs/Omnimessage.md | 1 + docs/Priority.md | 10 +++ messente_api/__init__.py | 1 + messente_api/models/__init__.py | 1 + messente_api/models/omnimessage.py | 32 ++++++++- messente_api/models/priority.py | 102 +++++++++++++++++++++++++++++ 6 files changed, 144 insertions(+), 3 deletions(-) create mode 100644 docs/Priority.md create mode 100644 messente_api/models/priority.py diff --git a/docs/Omnimessage.md b/docs/Omnimessage.md index 9103cd5..8f7c0dd 100644 --- a/docs/Omnimessage.md +++ b/docs/Omnimessage.md @@ -9,6 +9,7 @@ Name | Type | Description | Notes **dlr_url** | **str** | URL where the delivery report will be sent | [optional] **text_store** | [**TextStore**](TextStore.md) | | [optional] **time_to_send** | **datetime** | Optional parameter for sending messages at some specific time in the future. Time must be specified in the ISO-8601 format. If no timezone is specified, then the timezone is assumed to be UTC Examples: * Time specified with timezone: 2018-06-22T09:05:07+00:00 Time specified in UTC: 2018-06-22T09:05:07Z * Time specified without timezone: 2018-06-22T09:05 (equivalent to 2018-06-22T09:05+00:00) | [optional] +**priority** | [**Priority**](Priority.md) | | [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/Priority.md b/docs/Priority.md new file mode 100644 index 0000000..fc0f567 --- /dev/null +++ b/docs/Priority.md @@ -0,0 +1,10 @@ +# Priority + +Set the priority of the message. Messages are processed starting with in highest priority queue first and lowest priority queue last. This for example allows to prioritize OTP messages over marketing traffic. Possible values: - low - regular - high +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- + +[[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 5a7100e..333f0ac 100644 --- a/messente_api/__init__.py +++ b/messente_api/__init__.py @@ -69,6 +69,7 @@ from messente_api.models.numbers_to_investigate import NumbersToInvestigate from messente_api.models.omni_message_create_success_response import OmniMessageCreateSuccessResponse from messente_api.models.omnimessage import Omnimessage +from messente_api.models.priority import Priority from messente_api.models.sms import SMS from messente_api.models.statistics_report import StatisticsReport from messente_api.models.statistics_report_settings import StatisticsReportSettings diff --git a/messente_api/models/__init__.py b/messente_api/models/__init__.py index 656fd58..aa22465 100644 --- a/messente_api/models/__init__.py +++ b/messente_api/models/__init__.py @@ -49,6 +49,7 @@ from messente_api.models.numbers_to_investigate import NumbersToInvestigate from messente_api.models.omni_message_create_success_response import OmniMessageCreateSuccessResponse from messente_api.models.omnimessage import Omnimessage +from messente_api.models.priority import Priority from messente_api.models.sms import SMS from messente_api.models.statistics_report import StatisticsReport from messente_api.models.statistics_report_settings import StatisticsReportSettings diff --git a/messente_api/models/omnimessage.py b/messente_api/models/omnimessage.py index bdf459f..e5eb44e 100644 --- a/messente_api/models/omnimessage.py +++ b/messente_api/models/omnimessage.py @@ -38,7 +38,8 @@ class Omnimessage(object): 'messages': 'list[OneOfViberSMSWhatsAppTelegram]', 'dlr_url': 'str', 'text_store': 'TextStore', - 'time_to_send': 'datetime' + 'time_to_send': 'datetime', + 'priority': 'Priority' } attribute_map = { @@ -46,10 +47,11 @@ class Omnimessage(object): 'messages': 'messages', 'dlr_url': 'dlr_url', 'text_store': 'text_store', - 'time_to_send': 'time_to_send' + 'time_to_send': 'time_to_send', + 'priority': 'priority' } - def __init__(self, to=None, messages=None, dlr_url=None, text_store=None, time_to_send=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, to=None, messages=None, dlr_url=None, text_store=None, time_to_send=None, priority=None, local_vars_configuration=None): # noqa: E501 """Omnimessage - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration() @@ -60,6 +62,7 @@ def __init__(self, to=None, messages=None, dlr_url=None, text_store=None, time_t self._dlr_url = None self._text_store = None self._time_to_send = None + self._priority = None self.discriminator = None self.to = to @@ -70,6 +73,8 @@ def __init__(self, to=None, messages=None, dlr_url=None, text_store=None, time_t self.text_store = text_store if time_to_send is not None: self.time_to_send = time_to_send + if priority is not None: + self.priority = priority @property def to(self): @@ -188,6 +193,27 @@ def time_to_send(self, time_to_send): self._time_to_send = time_to_send + @property + def priority(self): + """Gets the priority of this Omnimessage. # noqa: E501 + + + :return: The priority of this Omnimessage. # noqa: E501 + :rtype: Priority + """ + return self._priority + + @priority.setter + def priority(self, priority): + """Sets the priority of this Omnimessage. + + + :param priority: The priority of this Omnimessage. # noqa: E501 + :type: Priority + """ + + self._priority = priority + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/messente_api/models/priority.py b/messente_api/models/priority.py new file mode 100644 index 0000000..f73b8a0 --- /dev/null +++ b/messente_api/models/priority.py @@ -0,0 +1,102 @@ +# coding: utf-8 + +""" + Messente API + + [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.3.0 + Contact: messente@messente.com + Generated by: https://openapi-generator.tech +""" + + +import pprint +import re # noqa: F401 + +import six + +from messente_api.configuration import Configuration + + +class Priority(object): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + """ + + """ + allowed enum values + """ + LOW = "low" + REGULAR = "regular" + HIGH = "high" + + allowable_values = [LOW, REGULAR, HIGH] # noqa: E501 + + """ + Attributes: + openapi_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + openapi_types = { + } + + attribute_map = { + } + + def __init__(self, local_vars_configuration=None): # noqa: E501 + """Priority - a model defined in OpenAPI""" # noqa: E501 + if local_vars_configuration is None: + local_vars_configuration = Configuration() + self.local_vars_configuration = local_vars_configuration + self.discriminator = None + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.openapi_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, Priority): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, Priority): + return True + + return self.to_dict() != other.to_dict() From 713f6726fdbe5b1c4c72aacf5a579a0197e1845c Mon Sep 17 00:00:00 2001 From: api-librarian Date: Fri, 9 Oct 2020 11:08:30 +0000 Subject: [PATCH 2/3] Travis update: Oct 2020 (Build 648) [skip ci] --- README.md | 4 ++-- messente_api/__init__.py | 4 ++-- messente_api/api/blacklist_api.py | 2 +- messente_api/api/contacts_api.py | 2 +- messente_api/api/delivery_report_api.py | 2 +- messente_api/api/groups_api.py | 2 +- messente_api/api/number_lookup_api.py | 2 +- messente_api/api/omnimessage_api.py | 2 +- messente_api/api/statistics_api.py | 2 +- messente_api/api_client.py | 4 ++-- messente_api/configuration.py | 6 +++--- messente_api/exceptions.py | 2 +- messente_api/models/__init__.py | 2 +- messente_api/models/channel.py | 2 +- messente_api/models/contact_envelope.py | 2 +- messente_api/models/contact_fields.py | 2 +- messente_api/models/contact_list_envelope.py | 2 +- messente_api/models/contact_response_fields.py | 2 +- messente_api/models/contact_update_fields.py | 2 +- messente_api/models/delivery_report_response.py | 2 +- messente_api/models/delivery_result.py | 2 +- messente_api/models/error_code_omnichannel.py | 2 +- messente_api/models/error_code_omnichannel_machine.py | 2 +- messente_api/models/error_code_phonebook.py | 2 +- messente_api/models/error_code_statistics.py | 2 +- messente_api/models/error_item_number_lookup.py | 2 +- messente_api/models/error_item_number_lookup_error.py | 2 +- messente_api/models/error_item_omnichannel.py | 2 +- messente_api/models/error_item_phonebook.py | 2 +- messente_api/models/error_item_statistics.py | 2 +- messente_api/models/error_number_lookup.py | 2 +- messente_api/models/error_omnichannel.py | 2 +- messente_api/models/error_phonebook.py | 2 +- messente_api/models/error_statistics.py | 2 +- messente_api/models/error_title_omnichannel.py | 2 +- messente_api/models/error_title_phonebook.py | 2 +- messente_api/models/fetch_blacklist_success.py | 2 +- messente_api/models/group_envelope.py | 2 +- messente_api/models/group_list_envelope.py | 2 +- messente_api/models/group_name.py | 2 +- messente_api/models/group_response_fields.py | 2 +- messente_api/models/message_result.py | 2 +- messente_api/models/mobile_network.py | 2 +- messente_api/models/number_to_blacklist.py | 2 +- messente_api/models/numbers_to_investigate.py | 2 +- messente_api/models/omni_message_create_success_response.py | 2 +- messente_api/models/omnimessage.py | 2 +- messente_api/models/priority.py | 2 +- messente_api/models/sms.py | 2 +- messente_api/models/statistics_report.py | 2 +- messente_api/models/statistics_report_settings.py | 2 +- messente_api/models/statistics_report_success.py | 2 +- messente_api/models/status.py | 2 +- messente_api/models/sync_number_lookup_result.py | 2 +- messente_api/models/sync_number_lookup_success.py | 2 +- messente_api/models/telegram.py | 2 +- messente_api/models/text_store.py | 2 +- messente_api/models/viber.py | 2 +- messente_api/models/whats_app.py | 2 +- messente_api/models/whats_app_audio.py | 2 +- messente_api/models/whats_app_document.py | 2 +- messente_api/models/whats_app_image.py | 2 +- messente_api/models/whats_app_text.py | 2 +- messente_api/rest.py | 2 +- setup.py | 4 ++-- 65 files changed, 71 insertions(+), 71 deletions(-) diff --git a/README.md b/README.md index 43239f1..b2022f4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Messente API Library -- Messente API version: 1.3.0 -- Python package version: 1.3.1 +- Messente API version: 1.4.0 +- Python package version: 1.4.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/messente_api/__init__.py b/messente_api/__init__.py index 333f0ac..a728795 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.3.0 + The version of the OpenAPI document: 1.4.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ @@ -15,7 +15,7 @@ from __future__ import absolute_import -__version__ = "1.3.1" +__version__ = "1.4.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 9e67a8c..c1598a4 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.3.0 + The version of the OpenAPI document: 1.4.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 501ad88..a6f676b 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.3.0 + The version of the OpenAPI document: 1.4.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 65c4783..acd185a 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.3.0 + The version of the OpenAPI document: 1.4.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 7e6e25a..1e391f1 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.3.0 + The version of the OpenAPI document: 1.4.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 673e80a..5a21db0 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.3.0 + The version of the OpenAPI document: 1.4.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 4d17d51..1179a9c 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.3.0 + The version of the OpenAPI document: 1.4.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/api/statistics_api.py b/messente_api/api/statistics_api.py index 3001550..3c194ec 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.3.0 + The version of the OpenAPI document: 1.4.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 df05f6b..31b5762 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.3.0 + The version of the OpenAPI document: 1.4.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.3.1/python' + self.user_agent = 'OpenAPI-Generator/1.4.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 524c832..55a0cd4 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.3.0 + The version of the OpenAPI document: 1.4.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.3.0\n"\ - "SDK Package Version: 1.3.1".\ + "Version of the API: 1.4.0\n"\ + "SDK Package Version: 1.4.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 15de77f..29c935b 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.3.0 + The version of the OpenAPI document: 1.4.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 aa22465..66eb1a2 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.3.0 + The version of the OpenAPI document: 1.4.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 446990c..94ffa2b 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.3.0 + The version of the OpenAPI document: 1.4.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 bc435f2..84f72de 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.3.0 + The version of the OpenAPI document: 1.4.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 9964a63..017137c 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.3.0 + The version of the OpenAPI document: 1.4.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/contact_list_envelope.py b/messente_api/models/contact_list_envelope.py index b69e795..50edd7d 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.3.0 + The version of the OpenAPI document: 1.4.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/contact_response_fields.py b/messente_api/models/contact_response_fields.py index 46504ee..e4883bf 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, 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.3.0 + The version of the OpenAPI document: 1.4.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 037f5d0..fadb941 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.3.0 + The version of the OpenAPI document: 1.4.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 f4c5d7f..e724055 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.3.0 + The version of the OpenAPI document: 1.4.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 6c34b2c..9249bab 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.3.0 + The version of the OpenAPI document: 1.4.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 f7003af..42b210b 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.3.0 + The version of the OpenAPI document: 1.4.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 5c78350..41edf08 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.3.0 + The version of the OpenAPI document: 1.4.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 7f77582..1319385 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.3.0 + The version of the OpenAPI document: 1.4.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 ee89537..943e4a4 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.3.0 + The version of the OpenAPI document: 1.4.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 e86b290..2d086f4 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.3.0 + The version of the OpenAPI document: 1.4.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 5133187..002f87f 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.3.0 + The version of the OpenAPI document: 1.4.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 54b9a99..639b362 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.3.0 + The version of the OpenAPI document: 1.4.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/error_item_phonebook.py b/messente_api/models/error_item_phonebook.py index 8e706d1..b55cb51 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.3.0 + The version of the OpenAPI document: 1.4.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 85f747e..74a6e40 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.3.0 + The version of the OpenAPI document: 1.4.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 f5ea6ab..33d7395 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.3.0 + The version of the OpenAPI document: 1.4.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 98f5b1b..c842220 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.3.0 + The version of the OpenAPI document: 1.4.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 2e083e2..c17d2f9 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.3.0 + The version of the OpenAPI document: 1.4.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 fb3069d..04cd36b 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.3.0 + The version of the OpenAPI document: 1.4.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 d8f95cd..d132c2f 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.3.0 + The version of the OpenAPI document: 1.4.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 49fb87c..ebae83b 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.3.0 + The version of the OpenAPI document: 1.4.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 a9d1cff..22c2e1a 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.3.0 + The version of the OpenAPI document: 1.4.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 4bbe419..e7b4789 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.3.0 + The version of the OpenAPI document: 1.4.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 1d8cbda..5ee4544 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.3.0 + The version of the OpenAPI document: 1.4.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 796fcfd..40b652f 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.3.0 + The version of the OpenAPI document: 1.4.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 a64ee4c..61c724e 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.3.0 + The version of the OpenAPI document: 1.4.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 afa0548..3f905e6 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.3.0 + The version of the OpenAPI document: 1.4.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 e465eeb..b798a96 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.3.0 + The version of the OpenAPI document: 1.4.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 a81aa14..a815487 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.3.0 + The version of the OpenAPI document: 1.4.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 9af720a..99d168c 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.3.0 + The version of the OpenAPI document: 1.4.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 8a3d094..c5cd28d 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.3.0 + The version of the OpenAPI document: 1.4.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 e5eb44e..697af2e 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.3.0 + The version of the OpenAPI document: 1.4.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/priority.py b/messente_api/models/priority.py index f73b8a0..f176b93 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, 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.3.0 + The version of the OpenAPI document: 1.4.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 d61c244..7883772 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.3.0 + The version of the OpenAPI document: 1.4.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 a461f60..70778d6 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.3.0 + The version of the OpenAPI document: 1.4.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 d7ba5e8..72ef8d7 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.3.0 + The version of the OpenAPI document: 1.4.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/models/statistics_report_success.py b/messente_api/models/statistics_report_success.py index 1053df8..2a70c9b 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.3.0 + The version of the OpenAPI document: 1.4.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 4070c04..4a98719 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.3.0 + The version of the OpenAPI document: 1.4.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 114082e..7f62e49 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.3.0 + The version of the OpenAPI document: 1.4.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 48ff3a9..52be5be 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.3.0 + The version of the OpenAPI document: 1.4.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 e7d899e..0a750f6 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.3.0 + The version of the OpenAPI document: 1.4.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 00708bc..0576d65 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.3.0 + The version of the OpenAPI document: 1.4.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 aab0b53..f0dd1c0 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.3.0 + The version of the OpenAPI document: 1.4.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 6e56c74..4148876 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.3.0 + The version of the OpenAPI document: 1.4.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 1f922a8..ba2b766 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.3.0 + The version of the OpenAPI document: 1.4.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 b095734..24263ff 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.3.0 + The version of the OpenAPI document: 1.4.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 5832780..f0b05d8 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.3.0 + The version of the OpenAPI document: 1.4.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 3256a7d..feb102b 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.3.0 + The version of the OpenAPI document: 1.4.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/messente_api/rest.py b/messente_api/rest.py index 568de92..9fd2031 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.3.0 + The version of the OpenAPI document: 1.4.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech """ diff --git a/setup.py b/setup.py index d1a7fc1..12f0c98 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.3.0 + The version of the OpenAPI document: 1.4.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.3.1" +VERSION = "1.4.0" # To install the library, run the following # # python setup.py install From dbe05262f3991653ef22421e32a792e83f84c6da Mon Sep 17 00:00:00 2001 From: api-librarian Date: Fri, 9 Oct 2020 12:43:01 +0000 Subject: [PATCH 3/3] Travis update: Oct 2020 (Build 650) [skip ci] --- docs/Priority.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Priority.md b/docs/Priority.md index fc0f567..39e78b7 100644 --- a/docs/Priority.md +++ b/docs/Priority.md @@ -1,6 +1,6 @@ # Priority -Set the priority of the message. Messages are processed starting with in highest priority queue first and lowest priority queue last. This for example allows to prioritize OTP messages over marketing traffic. Possible values: - low - regular - high +Set the priority of the message. Messages are processed starting with in highest priority queue first and lowest priority queue last. This for example allows to prioritize OTP messages over marketing traffic. ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | -------------