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
Copy file name to clipboardExpand all lines: bandwidth/models/call_transcription_metadata.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,9 +28,10 @@ class CallTranscriptionMetadata(BaseModel):
28
28
CallTranscriptionMetadata
29
29
"""# noqa: E501
30
30
transcription_id: Optional[StrictStr] =Field(default=None, description="The programmable voice API transcription ID.", alias="transcriptionId")
31
+
transcription_name: Optional[StrictStr] =Field(default=None, description="The programmable voice API transcription name. This name could be provided by the user when creating the transcription.", alias="transcriptionName")
31
32
transcription_url: Optional[StrictStr] =Field(default=None, description="A URL that may be used to retrieve the transcription itself. This points to the [Get Call Transcription](/apis/voice/#operation/getCallTranscription) endpoint.", alias="transcriptionUrl")
**transcription_id** | **str** | The programmable voice API transcription ID. | [optional]
9
+
**transcription_name** | **str** | The programmable voice API transcription name. This name could be provided by the user when creating the transcription. | [optional]
9
10
**transcription_url** | **str** | A URL that may be used to retrieve the transcription itself. This points to the [Get Call Transcription](/apis/voice/#operation/getCallTranscription) endpoint. | [optional]
0 commit comments