Struct Transcription
Represents the transcription properties attached to an archive.
public struct Transcription
- Inherited Members
Properties
HasSummary
Whether the transcription should include a summary of the session (true) or not (false, the default).
public bool HasSummary { readonly get; set; }
Property Value
PrimaryLanguageCode
The primary language spoken in the archive to be transcribed, in BCP-47 format, e.g. en-US, es-ES or pt-BR.
public string PrimaryLanguageCode { readonly get; set; }
Property Value
Reason
The reason for a failed or stopped transcription, if applicable.
public string Reason { readonly get; set; }
Property Value
Status
The current status of the transcription.
[JsonConverter(typeof(JsonStringEnumConverter<Transcription.TranscriptionStatus>))]
public Transcription.TranscriptionStatus Status { readonly get; set; }
Property Value
Url
The URL of the transcription file, when available.
public string Url { readonly get; set; }