PersonTranslations

data class PersonTranslations(val id: Int?, val translations: List<PersonTranslations.PersonTranslation> = emptyList()) : TmdbType, TmdbIntId(source)

Constructors

Link copied to clipboard
constructor(id: Int?, translations: List<PersonTranslations.PersonTranslation> = emptyList())

Types

Link copied to clipboard
data class PersonTranslation(    val language: LanguageCode?,     val country: CountryCode?,     val name: String?,     val data: PersonTranslations.PersonTranslation.PersonTranslationData?,     val englishName: String?) : TmdbType

Properties

Link copied to clipboard
open override val id: Int?

Functions

Link copied to clipboard
fun handleUnknownProperty(key: String, value: Any?)