DeclaredAgePref

data class DeclaredAgePref(val isOverAge13: Boolean? = null, val isOverAge16: Boolean? = null, val isOverAge18: Boolean? = null)

Read-only preference containing value(s) inferred from the user's declared birthdate. Absence of this preference object in the response indicates that the user has not made a declaration.

Constructors

Link copied to clipboard
constructor(isOverAge13: Boolean? = null, isOverAge16: Boolean? = null, isOverAge18: Boolean? = null)

Properties

Link copied to clipboard
val isOverAge13: Boolean? = null

Indicates if the user has declared that they are over 13 years of age.

Link copied to clipboard
val isOverAge16: Boolean? = null

Indicates if the user has declared that they are over 16 years of age.

Link copied to clipboard
val isOverAge18: Boolean? = null

Indicates if the user has declared that they are over 18 years of age.