Chapter

data class Chapter(val id: String? = null, val title: String? = null, val timeOffset: Float? = null, val steps: List<Step>? = null)

Constructors

Link copied to clipboard
constructor(id: String? = null, title: String? = null, timeOffset: Float? = null, steps: List<Step>? = null)

Properties

Link copied to clipboard
val id: String? = null
Link copied to clipboard
val steps: List<Step>? = null
Link copied to clipboard
val timeOffset: Float? = null
Link copied to clipboard
val title: String? = null