ParentalRatingScore

@Serializable
data class ParentalRatingScore(val score: Int, val subScore: Int? = null)

A class representing an parental rating score.

Constructors

Link copied to clipboard
constructor(score: Int, subScore: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "score")
val score: Int

The score.

Link copied to clipboard
@SerialName(value = "subScore")
val subScore: Int?

The sub score.