You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SWI-8413 Update SDK Based on Recent Spec Changes (#180)
* Generate SDK with OpenAPI Generator Version
* update spec helper
* unit tests for new list message item fields
* add to smoke test
---------
Co-authored-by: DX-Bandwidth <[email protected]>
Co-authored-by: ckoegel <[email protected]>
Copy file name to clipboardExpand all lines: docs/ListMessageItem.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,11 @@
21
21
|**recipient_count**|**Integer**| The number of recipients the message has. |[optional]|
22
22
|**campaign_class**|**String**| The campaign class of the message if it has one. |[optional]|
23
23
|**campaign_id**|**String**| The campaign ID of the message if it has one. |[optional]|
24
+
|**bw_latency**|**Integer**| The Bandwidth latency of the message in seconds. Only available for accounts with the Advanced Quality Metrics feature enabled. |[optional]|
25
+
|**calling_number_country_a3**|**String**| The A3 country code of the calling number. |[optional]|
26
+
|**called_number_country_a3**|**String**| The A3 country code of the called number. |[optional]|
27
+
|**product**|**String**| The messaging product associated with the message. |[optional]|
28
+
|**location**|**String**| The location ID associated with this message. |[optional]|
Copy file name to clipboardExpand all lines: docs/MessagesApi.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,16 @@ opts = {
114
114
from_date_time:'2022-09-14T18:20:16.000Z', # String | The start of the date range to search in ISO 8601 format. Uses the message receive time. The date range to search in is currently 14 days.
115
115
to_date_time:'2022-09-14T18:20:16.000Z', # String | The end of the date range to search in ISO 8601 format. Uses the message receive time. The date range to search in is currently 14 days.
116
116
campaign_id:'CJEUMDK', # String | The campaign ID of the message.
117
+
from_bw_latency:5, # Integer | The minimum Bandwidth latency of the message in seconds. Only available for accounts with the Advanced Quality Metrics feature enabled.
118
+
bw_queued:true, # Boolean | A boolean value indicating whether the message is queued in the Bandwidth network.
119
+
product:Bandwidth::ProductTypeEnum::LOCAL_A2_P, # ProductTypeEnum | Messaging product associated with the message.
120
+
location:'123ABC', # String | Location Id associated with the message.
121
+
calling_number_country_a3:'USA', # String | Calling number country in A3 format.
122
+
called_number_country_a3:'USA', # String | Called number country in A3 format.
sort:'sourceTn:desc', # String | The field and direction to sort by combined with a colon. Direction is either asc or desc.
118
128
page_token:'gdEewhcJLQRB5', # String | A base64 encoded value used for pagination of results.
119
129
limit:50, # Integer | The maximum records requested in search result. Default 100. The sum of limit and after cannot be more than 10000.
@@ -163,6 +173,16 @@ end
163
173
|**from_date_time**|**String**| The start of the date range to search in ISO 8601 format. Uses the message receive time. The date range to search in is currently 14 days. |[optional]|
164
174
|**to_date_time**|**String**| The end of the date range to search in ISO 8601 format. Uses the message receive time. The date range to search in is currently 14 days. |[optional]|
165
175
|**campaign_id**|**String**| The campaign ID of the message. |[optional]|
176
+
|**from_bw_latency**|**Integer**| The minimum Bandwidth latency of the message in seconds. Only available for accounts with the Advanced Quality Metrics feature enabled. |[optional]|
177
+
|**bw_queued**|**Boolean**| A boolean value indicating whether the message is queued in the Bandwidth network. |[optional]|
178
+
|**product**|[**ProductTypeEnum**](.md)| Messaging product associated with the message. |[optional]|
179
+
|**location**|**String**| Location Id associated with the message. |[optional]|
180
+
|**calling_number_country_a3**|**String**| Calling number country in A3 format. |[optional]|
181
+
|**called_number_country_a3**|**String**| Called number country in A3 format. |[optional]|
|**sort**|**String**| The field and direction to sort by combined with a colon. Direction is either asc or desc. |[optional]|
167
187
|**page_token**|**String**| A base64 encoded value used for pagination of results. |[optional]|
168
188
|**limit**|**Integer**| The maximum records requested in search result. Default 100. The sum of limit and after cannot be more than 10000. |[optional]|
# @option opts [String] :from_date_time The start of the date range to search in ISO 8601 format. Uses the message receive time. The date range to search in is currently 14 days.
109
109
# @option opts [String] :to_date_time The end of the date range to search in ISO 8601 format. Uses the message receive time. The date range to search in is currently 14 days.
110
110
# @option opts [String] :campaign_id The campaign ID of the message.
111
+
# @option opts [Integer] :from_bw_latency The minimum Bandwidth latency of the message in seconds. Only available for accounts with the Advanced Quality Metrics feature enabled.
112
+
# @option opts [Boolean] :bw_queued A boolean value indicating whether the message is queued in the Bandwidth network.
113
+
# @option opts [ProductTypeEnum] :product Messaging product associated with the message.
114
+
# @option opts [String] :location Location Id associated with the message.
115
+
# @option opts [String] :calling_number_country_a3 Calling number country in A3 format.
116
+
# @option opts [String] :called_number_country_a3 Called number country in A3 format.
# @option opts [String] :from_date_time The start of the date range to search in ISO 8601 format. Uses the message receive time. The date range to search in is currently 14 days.
134
144
# @option opts [String] :to_date_time The end of the date range to search in ISO 8601 format. Uses the message receive time. The date range to search in is currently 14 days.
135
145
# @option opts [String] :campaign_id The campaign ID of the message.
146
+
# @option opts [Integer] :from_bw_latency The minimum Bandwidth latency of the message in seconds. Only available for accounts with the Advanced Quality Metrics feature enabled.
147
+
# @option opts [Boolean] :bw_queued A boolean value indicating whether the message is queued in the Bandwidth network.
148
+
# @option opts [ProductTypeEnum] :product Messaging product associated with the message.
149
+
# @option opts [String] :location Location Id associated with the message.
150
+
# @option opts [String] :calling_number_country_a3 Calling number country in A3 format.
151
+
# @option opts [String] :called_number_country_a3 Called number country in A3 format.
0 commit comments