QuizOption

@JsonClass(generateAdapter = true)
data class QuizOption(    @Json(name = "id") val id: Int?,     @Json(name = "value") val value: String?,     @Json(name = "attribute") val attribute: QuizOptionAttribute?,     @Json(name = "images") val images: QuizImages?) : Serializable

Constructors

Link copied to clipboard
fun QuizOption(    @Json(name = "id") id: Int?,     @Json(name = "value") value: String?,     @Json(name = "attribute") attribute: QuizOptionAttribute?,     @Json(name = "images") images: QuizImages?)

Properties

Link copied to clipboard
val attribute: QuizOptionAttribute?
Link copied to clipboard
val id: Int?
Link copied to clipboard
val images: QuizImages?
Link copied to clipboard
val value: String?