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-5724 Update SDK Based on Recent Spec Changes (#144)
* Generate SDK with OpenAPI Generator Version 7.7.0
* Clean SDK using Rubocop
* update tests
* skip test to avoid prism error for now
* ruby is too fast
---------
Co-authored-by: DX-Bandwidth <[email protected]>
Co-authored-by: ckoegel <[email protected]>
Copy file name to clipboardExpand all lines: docs/CallTranscriptionMetadata.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
| Name | Type | Description | Notes |
6
6
| ---- | ---- | ----------- | ----- |
7
7
|**transcription_id**|**String**| The programmable voice API transcription ID. |[optional]|
8
+
|**transcription_name**|**String**| The programmable voice API transcription name. This name could be provided by the user when creating the transcription. |[optional]|
8
9
|**transcription_url**|**String**| A URL that may be used to retrieve the transcription itself. This points to the [Get Call Transcription](/apis/voice/#operation/getCallTranscription) endpoint. |[optional]|
Copy file name to clipboardExpand all lines: lib/bandwidth-sdk/models/call_transcription_metadata.rb
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,13 +18,17 @@ class CallTranscriptionMetadata
18
18
# The programmable voice API transcription ID.
19
19
attr_accessor:transcription_id
20
20
21
+
# The programmable voice API transcription name. This name could be provided by the user when creating the transcription.
22
+
attr_accessor:transcription_name
23
+
21
24
# A URL that may be used to retrieve the transcription itself. This points to the [Get Call Transcription](/apis/voice/#operation/getCallTranscription) endpoint.
22
25
attr_accessor:transcription_url
23
26
24
27
# Attribute mapping from ruby-style variable name to JSON key.
0 commit comments