Interface NonSubscriptionTransaction

Information that represents a non-subscription purchase made by a user.

interface NonSubscriptionTransaction {
    productIdentifier: string;
    purchaseDate: Date;
    store: Store;
    storeTransactionId: null | string;
    transactionIdentifier: string;
}

Properties

productIdentifier: string

The product identifier.

purchaseDate: Date

The date that the store charged the user’s account.

store: Store

The Store where the transaction was made.

storeTransactionId: null | string

The unique identifier for the transaction created by the Store.

transactionIdentifier: string

The unique identifier for the transaction created by RevenueCat.