SavedTransaction

@Serializable
class SavedTransaction(val id: String, val date: Long, val hasExternalPurchaseController: Boolean, val isExternal: Boolean)(source)

The transaction to save to storage

Parameters

id

The id of the transaction

date

The date of the transaction as unix epoch time

hasExternalPurchaseController

Whether the transaction has an external purchase controller

isExternal

Whether the transaction is external

Constructors

Link copied to clipboard
constructor(id: String, date: Long, hasExternalPurchaseController: Boolean, isExternal: Boolean)

Properties

Link copied to clipboard
@SerialName(value = "date")
val date: Long
Link copied to clipboard
@SerialName(value = "hasExternalPurchaseController")
val hasExternalPurchaseController: Boolean
Link copied to clipboard
@SerialName(value = "id")
val id: String
Link copied to clipboard
@SerialName(value = "isExternal")
val isExternal: Boolean