TraktSyncResponse

@Serializable
data class TraktSyncResponse(val added: TraktSyncStats? = null, val existing: TraktSyncStats? = null, val deleted: TraktSyncStats? = null, val notFound: TraktSyncErrors? = null)

Constructors

Link copied to clipboard
constructor(added: TraktSyncStats? = null, existing: TraktSyncStats? = null, deleted: TraktSyncStats? = null, notFound: TraktSyncErrors? = null)

Properties

Link copied to clipboard
@SerialName(value = "added")
val added: TraktSyncStats? = null
Link copied to clipboard
@SerialName(value = "deleted")
val deleted: TraktSyncStats? = null
Link copied to clipboard
@SerialName(value = "existing")
val existing: TraktSyncStats? = null
Link copied to clipboard
@SerialName(value = "not_found")
val notFound: TraktSyncErrors? = null