diff --git a/Telstra_Messaging/models/message_sent_response.py b/Telstra_Messaging/models/message_sent_response.py index 14e6ace..ae0e2c7 100644 --- a/Telstra_Messaging/models/message_sent_response.py +++ b/Telstra_Messaging/models/message_sent_response.py @@ -32,7 +32,7 @@ class MessageSentResponse(object): """ openapi_types = { 'messages': 'list[Message]', - 'country': 'list[str]', + 'country': 'list[object]', 'message_type': 'str', 'number_segments': 'int' } @@ -91,7 +91,7 @@ def country(self): An array of the countries to which the destination MSISDNs belong. # noqa: E501 :return: The country of this MessageSentResponse. # noqa: E501 - :rtype: list[str] + :rtype: list[object] """ return self._country @@ -102,7 +102,7 @@ def country(self, country): An array of the countries to which the destination MSISDNs belong. # noqa: E501 :param country: The country of this MessageSentResponse. # noqa: E501 - :type: list[str] + :type: list[object] """ self._country = country diff --git a/docs/MessageSentResponse.md b/docs/MessageSentResponse.md index 0676e0f..8f30799 100644 --- a/docs/MessageSentResponse.md +++ b/docs/MessageSentResponse.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **messages** | [**list[Message]**](Message.md) | An array of messages. | -**country** | **list[str]** | An array of the countries to which the destination MSISDNs belong. | [optional] +**country** | **list[object]** | An array of the countries to which the destination MSISDNs belong. | [optional] **message_type** | **str** | This returns whether the message sent was a SMS or MMS. | **number_segments** | **int** | For SMS messages only, the value indicates the number of 160 character message segments sent. |