SyncAppliedRecord

@Serializable
data class SyncAppliedRecord(val key: String, val id: Int? = null, val status: String, val updatedAt: Long? = null, val reason: String? = null)

One row's outcome from the server for a pushed upsert/delete.

Constructors

Link copied to clipboard
constructor(key: String, id: Int? = null, status: String, updatedAt: Long? = null, reason: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
@SerialName(value = "id")
val id: Int?
Link copied to clipboard
@SerialName(value = "key")
val key: String
Link copied to clipboard
@SerialName(value = "reason")
val reason: String?
Link copied to clipboard
@SerialName(value = "status")
val status: String
Link copied to clipboard
@SerialName(value = "updatedAt")
val updatedAt: Long?