TranscriptConversationItem Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of TranscriptConversationItem.
public TranscriptConversationItem (string id, string participantId, string inverseTextNormalized, string maskedInverseTextNormalized, string text, string lexical);
new Azure.AI.Language.Conversations.Models.TranscriptConversationItem : string * string * string * string * string * string -> Azure.AI.Language.Conversations.Models.TranscriptConversationItem
Public Sub New (id As String, participantId As String, inverseTextNormalized As String, maskedInverseTextNormalized As String, text As String, lexical As String)
Parameters
- id
- String
The ID of a conversation item.
- participantId
- String
The participant ID of a conversation item.
- inverseTextNormalized
- String
Inverse text normalization (ITN) representation of input. The inverse-text-normalized form is the recognized text from Microsoft's speech-to-text API, with phone numbers, numbers, abbreviations, and other transformations applied.
- maskedInverseTextNormalized
- String
Inverse-text-normalized format with profanity masking applied.
- text
- String
Display form of the recognized text from the speech-to-text API, with punctuation and capitalization added.
- lexical
- String
Lexical form of the recognized text from the speech-to-text API, with the actual words recognized.
Exceptions
id
, participantId
, inverseTextNormalized
, maskedInverseTextNormalized
, text
or lexical
is null.
Applies to
Azure SDK for .NET