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-11476 Update SDK Based on Recent Spec Changes (#194)
* Generate SDK with OpenAPI Generator Version
* unit test
---------
Co-authored-by: DX-Bandwidth <dx@bandwidth.com>
Co-authored-by: ckoegel <ckoegel1006@gmail.com>
Copy file name to clipboardExpand all lines: api/openapi.yaml
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6343,8 +6343,8 @@ components:
6343
6343
<p>This Inbound Message Webhook is an envelope containing either a received (MO) message to your
6344
6344
message-enabled Bandwidth telephone number or a multichannel client's response to a suggestion response
6345
6345
or location request.
6346
-
<p>The payload type will be one of <code>message-received</code>, <code>suggestion-response</code>, or <code>location-request-response</code>.
6347
-
<p>Note that <code>suggestion-response</code> and <code>location-request-response</code> callback types are pertinent only for RBM messages sent from the <code>/messages/multiChannel</code> endpoint.
6346
+
<p>The payload type will be one of <code>message-received</code>, <code>suggestion-response</code>, or <code>requested-location-response</code>.
6347
+
<p>Note that <code>suggestion-response</code> and <code>requested-location-response</code> callback types are pertinent only for RBM messages sent from the <code>/messages/multiChannel</code> endpoint.
The possible inbound callback types originating from MO messages or multichannel message client responses: - `message-received` indicates an MO message from a Bandwidth user's client to a Bandwidth number. - `request-location-response` indicates a response to a location request sent by the Bandwidth user's client after receiving an RBM message. - `suggestion-response` indicates a response to a suggestion sent by the Bandwidth user's client after receiving an RBM message.
2
+
The possible inbound callback types originating from MO messages or multichannel message client responses: - `message-received` indicates an MO message from a Bandwidth user's client to a Bandwidth number. - `requested-location-response` indicates a response to a location request sent by the Bandwidth user's client after receiving an RBM message. - `suggestion-response` indicates a response to a suggestion sent by the Bandwidth user's client after receiving an RBM message.
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: src/Bandwidth.Standard/Model/InboundCallbackTypeEnum.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,9 @@
27
27
namespaceBandwidth.Standard.Model
28
28
{
29
29
/// <summary>
30
-
/// The possible inbound callback types originating from MO messages or multichannel message client responses: - `message-received` indicates an MO message from a Bandwidth user's client to a Bandwidth number. - `request-location-response` indicates a response to a location request sent by the Bandwidth user's client after receiving an RBM message. - `suggestion-response` indicates a response to a suggestion sent by the Bandwidth user's client after receiving an RBM message.
30
+
/// The possible inbound callback types originating from MO messages or multichannel message client responses: - `message-received` indicates an MO message from a Bandwidth user's client to a Bandwidth number. - `requested-location-response` indicates a response to a location request sent by the Bandwidth user's client after receiving an RBM message. - `suggestion-response` indicates a response to a suggestion sent by the Bandwidth user's client after receiving an RBM message.
31
31
/// </summary>
32
-
/// <value>The possible inbound callback types originating from MO messages or multichannel message client responses: - `message-received` indicates an MO message from a Bandwidth user's client to a Bandwidth number. - `request-location-response` indicates a response to a location request sent by the Bandwidth user's client after receiving an RBM message. - `suggestion-response` indicates a response to a suggestion sent by the Bandwidth user's client after receiving an RBM message.</value>
32
+
/// <value>The possible inbound callback types originating from MO messages or multichannel message client responses: - `message-received` indicates an MO message from a Bandwidth user's client to a Bandwidth number. - `requested-location-response` indicates a response to a location request sent by the Bandwidth user's client after receiving an RBM message. - `suggestion-response` indicates a response to a suggestion sent by the Bandwidth user's client after receiving an RBM message.</value>
33
33
[JsonConverter(typeof(StringEnumConverter))]
34
34
publicenumInboundCallbackTypeEnum
35
35
{
@@ -40,10 +40,10 @@ public enum InboundCallbackTypeEnum
40
40
MessageReceived=1,
41
41
42
42
/// <summary>
43
-
/// Enum RequestLocationResponse for value: request-location-response
43
+
/// Enum RequestedLocationResponse for value: requested-location-response
44
44
/// </summary>
45
-
[EnumMember(Value="request-location-response")]
46
-
RequestLocationResponse=2,
45
+
[EnumMember(Value="requested-location-response")]
46
+
RequestedLocationResponse=2,
47
47
48
48
/// <summary>
49
49
/// Enum SuggestionResponse for value: suggestion-response
0 commit comments