Dropbox .NET SDK
Show / Hide Table of Contents

Class ApiStructuredTranscript

A transcript, split into segments.

Inheritance
object
ApiStructuredTranscript
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class ApiStructuredTranscript

Constructors

View Source

ApiStructuredTranscript(IEnumerable<ApiTranscriptSegment>, string)

Initializes a new instance of the ApiStructuredTranscript class.

Declaration
public ApiStructuredTranscript(IEnumerable<ApiTranscriptSegment> segments = null, string transcriptLocale = "")
Parameters
Type Name Description
IEnumerable<ApiTranscriptSegment> segments

The segments of the transcript, in playback order.

string transcriptLocale

The language of the transcript, as an ISO 639-1 code (e.g. "en"). This is the language detected in the audio, or the one supplied in AudioLanguage.

Properties

View Source

Segments

The segments of the transcript, in playback order.

Declaration
public IList<ApiTranscriptSegment> Segments { get; protected set; }
Property Value
Type Description
IList<ApiTranscriptSegment>
View Source

TranscriptLocale

The language of the transcript, as an ISO 639-1 code (e.g. "en"). This is the language detected in the audio, or the one supplied in AudioLanguage.

Declaration
public string TranscriptLocale { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK