PartialTransaction

data class PartialTransaction(val id: String, val owner: String, val version: Int, val createdAt: Date, val updatedAt: Date, val cardId: String, val sequenceId: String, val type: TransactionType) : Parcelable

Representation of a Virtual Card Transaction without its unsealed attributes used in the Sudo Platform Virtual Cards SDK.

Constructors

Link copied to clipboard
constructor(id: String, owner: String, version: Int, createdAt: Date, updatedAt: Date, cardId: String, sequenceId: String, type: TransactionType)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard

String Unique identifier of the VirtualCard associated with the transaction.

Link copied to clipboard

Date Date when the transaction was created.

Link copied to clipboard
val id: String

String Identifier of the transaction.

Link copied to clipboard

String Identifier of the user that owns the transaction.

Link copied to clipboard

String Identifier of the sequence of related transaction.

Link copied to clipboard

TransactionType The type of the transaction.

Link copied to clipboard

Date Date when the transaction was last updated.

Link copied to clipboard

Int Current version of the transaction.