Skip to content

Commit 6cb41ed

Browse files
minor change string to object for country response
1 parent 4dca787 commit 6cb41ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Telstra_Messaging/models/message_sent_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class MessageSentResponse(object):
3232
"""
3333
openapi_types = {
3434
'messages': 'list[Message]',
35-
'country': 'list[str]',
35+
'country': 'list[object]',
3636
'message_type': 'str',
3737
'number_segments': 'int'
3838
}
@@ -91,7 +91,7 @@ def country(self):
9191
An array of the countries to which the destination MSISDNs belong. # noqa: E501
9292
9393
:return: The country of this MessageSentResponse. # noqa: E501
94-
:rtype: list[str]
94+
:rtype: list[object]
9595
"""
9696
return self._country
9797

@@ -102,7 +102,7 @@ def country(self, country):
102102
An array of the countries to which the destination MSISDNs belong. # noqa: E501
103103
104104
:param country: The country of this MessageSentResponse. # noqa: E501
105-
:type: list[str]
105+
:type: list[object]
106106
"""
107107

108108
self._country = country

docs/MessageSentResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**messages** | [**list[Message]**](Message.md) | An array of messages. |
7-
**country** | **list[str]** | An array of the countries to which the destination MSISDNs belong. | [optional]
7+
**country** | **list[object]** | An array of the countries to which the destination MSISDNs belong. | [optional]
88
**message_type** | **str** | This returns whether the message sent was a SMS or MMS. |
99
**number_segments** | **int** | For SMS messages only, the value indicates the number of 160 character message segments sent. |
1010

0 commit comments

Comments
 (0)