DeletedObject

@Serializable
data class DeletedObject(val objectType: String? = null, val id: String? = null, val deleted: Boolean? = null)

The DeletedObject class represents an item that has been deleted from the database.

Constructors

Link copied to clipboard
constructor(objectType: String? = null, id: String? = null, deleted: Boolean? = null)

Properties

Link copied to clipboard
val deleted: Boolean? = null

A boolean checking if the item has been deleted or not.

Link copied to clipboard
val id: String? = null

The ID of the deleted item.

Link copied to clipboard
@SerialName(value = "object")
val objectType: String? = null

The object type that has been deleted.