Dropbox .NET SDK
Show / Hide Table of Contents

Class ApiTranscriptSegment

Transcript segment for APIv2

Inheritance
object
ApiTranscriptSegment
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 ApiTranscriptSegment

Constructors

View Source

ApiTranscriptSegment(string, double, double)

Initializes a new instance of the ApiTranscriptSegment class.

Declaration
public ApiTranscriptSegment(string text = "", double startTime = 0, double endTime = 0)
Parameters
Type Name Description
string text

The text

double startTime

The start time

double endTime

The end time

Properties

View Source

EndTime

Gets the end time of the api transcript segment

Declaration
public double EndTime { get; protected set; }
Property Value
Type Description
double
View Source

StartTime

Gets the start time of the api transcript segment

Declaration
public double StartTime { get; protected set; }
Property Value
Type Description
double
View Source

Text

Gets the text of the api transcript segment

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