QuizQuestion

@JsonClass(generateAdapter = true)
data class QuizQuestion(    @Json(name = "id") val id: Int?,     @Json(name = "title") val title: String?,     @Json(name = "description") val description: String?,     @Json(name = "type") val type: String?,     @Json(name = "cta_text") val ctaText: String?,     @Json(name = "images") val images: QuizImages?,     @Json(name = "options") val options: List<QuizOption>?,     @Json(name = "input_placeholder") val inputPlaceholder: String?) : Serializable

Models quiz question data

Constructors

Link copied to clipboard
fun QuizQuestion(    @Json(name = "id") id: Int?,     @Json(name = "title") title: String?,     @Json(name = "description") description: String?,     @Json(name = "type") type: String?,     @Json(name = "cta_text") ctaText: String?,     @Json(name = "images") images: QuizImages?,     @Json(name = "options") options: List<QuizOption>?,     @Json(name = "input_placeholder") inputPlaceholder: String?)

Properties

Link copied to clipboard
val ctaText: String?
Link copied to clipboard
val description: String?
Link copied to clipboard
val id: Int?
Link copied to clipboard
val images: QuizImages?
Link copied to clipboard
val inputPlaceholder: String?
Link copied to clipboard
val options: List<QuizOption>?
Link copied to clipboard
val title: String?
Link copied to clipboard
val type: String?