Represents a transaction made in the store.

interface StoreTransaction {
    productIdentifier: string;
    purchaseDate: Date;
    storeTransactionId: string;
}

Properties

productIdentifier: string

The identifier of the product purchased in the transaction.

purchaseDate: Date

The date when the transaction was made.

storeTransactionId: string

The unique identifier for the store transaction.