@@ -45,29 +45,29 @@ def __init__(self, text: str, offset: int, duration: int):
4545class TranscriptionMetadata :
4646 """
4747 Metadata for Transcription Streaming.
48- :keyword subscriptionId : Transcription Subscription Id.
49- :paramtype subscriptionId : str
48+ :keyword subscription_id : Transcription Subscription Id.
49+ :paramtype subscription_id : str
5050 :keyword locale: The target locale in which the translated text needs to be.
5151 :paramtype locale: str
52- :keyword callConnectionId : call connection Id.
53- :paramtype callConnectionId : str
54- :keyword correlationId : correlation Id.
55- :paramtype correlationId : str
52+ :keyword callConnection_id : call connection Id.
53+ :paramtype callConnection_id : str
54+ :keyword correlation_id : correlation Id.
55+ :paramtype correlation_id : str
5656 """
5757
58- subscriptionId : str
58+ subscription_id : str
5959 """ Transcription Subscription Id. """
6060 locale : str
6161 """ The target locale in which the translated text needs to be. """
62- callConnectionId : str
62+ callConnection_id : str
6363 """ call connection Id. """
64- correlationId : str
64+ correlation_id : str
6565 """ correlation Id. """
66- def __init__ (self , subscriptionId : str , locale : str , callConnectionId : str , correlationId : str ):
67- self .subscriptionId = subscriptionId
66+ def __init__ (self , subscription_id : str , locale : str , callConnection_id : str , correlation_id : str ):
67+ self .subscriptionId = subscription_id
6868 self .locale = locale
69- self .callConnectionId = callConnectionId
70- self .correlationId = correlationId
69+ self .callConnection_id = callConnection_id
70+ self .correlation_id = correlation_id
7171
7272class TranscriptionData :
7373 """
@@ -103,15 +103,15 @@ class TranscriptionData:
103103 """ The result for each word of the phrase. """
104104 participant : CommunicationIdentifier
105105 """ The identified speaker based on participant raw ID. """
106- resultStatus : ResultStatus
106+ result_status : ResultStatus
107107 """ Status of the result of transcription. """
108108 def __init__ (self , text : str , format : TextFormat , confidence : float , offset : int , duration : int ,
109- words : List [WordData ], participant : CommunicationIdentifier , resultStatus : ResultStatus ):
109+ words : List [WordData ], participant : CommunicationIdentifier , result_status : ResultStatus ):
110110 self .text = text
111111 self .format = format
112112 self .confidence = confidence
113113 self .offset = offset
114114 self .duration = duration
115115 self .words = words
116116 self .participant = participant
117- self .resultStatus = resultStatus
117+ self .result_status = result_status
0 commit comments