Skip to content

Commit

Permalink
minor change string to object for country response
Browse files Browse the repository at this point in the history
  • Loading branch information
developersteve committed Aug 10, 2018
1 parent 4dca787 commit 6cb41ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Telstra_Messaging/models/message_sent_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class MessageSentResponse(object):
"""
openapi_types = {
'messages': 'list[Message]',
'country': 'list[str]',
'country': 'list[object]',
'message_type': 'str',
'number_segments': 'int'
}
Expand Down Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/MessageSentResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |

Expand Down

0 comments on commit 6cb41ed

Please sign in to comment.