Segment

@Serializable
data class Segment(val startIndex: Int? = null, val endIndex: Int? = null, val text: String? = null)

Segment of the content.

Constructors

Link copied to clipboard
constructor(startIndex: Int? = null, endIndex: Int? = null, text: String? = null)

Properties

Link copied to clipboard
val endIndex: Int?

Optional. The index of a character in the content.

Link copied to clipboard
val startIndex: Int?

Optional. The index of a character in the content.

Link copied to clipboard
val text: String?

Optional. The text of the segment.