TmdbGuestSession

@Serializable
data class TmdbGuestSession(val success: Boolean, val expiredAt: LocalDateTime?, val guestSessionId: String)

Expires date is parsed from UTC datetime.

Constructors

Link copied to clipboard
constructor(success: Boolean, expiredAt: LocalDateTime?, guestSessionId: String)

Properties

Link copied to clipboard
@SerialName(value = "expires_at")
@Serializable(with = LocalDateTimeTmdbUtcSerializer::class)
val expiredAt: LocalDateTime?
Link copied to clipboard
@SerialName(value = "guest_session_id")
val guestSessionId: String
Link copied to clipboard
@SerialName(value = "success")
val success: Boolean