Tmdb4ItemStatus

@Serializable
data class Tmdb4ItemStatus(val statusMessage: String? = null, val errorMessage: String? = null, val id: Int? = null, val success: Boolean? = null, val statusCode: Int, val mediaType: TmdbMediaType, val mediaId: Int)

Constructors

Link copied to clipboard
constructor(statusMessage: String? = null, errorMessage: String? = null, id: Int? = null, success: Boolean? = null, statusCode: Int, mediaType: TmdbMediaType, mediaId: Int)

Properties

Link copied to clipboard
@SerialName(value = "error_message")
val errorMessage: String? = null
Link copied to clipboard
@SerialName(value = "id")
val id: Int? = null
Link copied to clipboard
@SerialName(value = "media_id")
val mediaId: Int
Link copied to clipboard
@SerialName(value = "media_type")
val mediaType: TmdbMediaType
Link copied to clipboard
@SerialName(value = "status_code")
val statusCode: Int
Link copied to clipboard
@SerialName(value = "status_message")
val statusMessage: String? = null
Link copied to clipboard
@SerialName(value = "success")
val success: Boolean? = null