@adapty/capacitor - v3.12.0-beta.1
    Preparing search index...

    Interface AdaptyNonSubscription

    Interface representing a consumable or non-subscription purchase made by the user.

    interface AdaptyNonSubscription {
        isConsumable: boolean;
        isRefund: boolean;
        isSandbox: boolean;
        purchasedAt: Date;
        purchaseId: string;
        store: VendorStore;
        vendorProductId: string;
        vendorTransactionId?: string;
    }
    Index

    Properties

    isConsumable: boolean

    Flag indicating whether the product is consumable.

    isRefund: boolean

    Flag indicating whether the purchase was refunded.

    isSandbox: boolean

    Flag indicating whether the product was purchased in a sandbox environment.

    purchasedAt: Date

    The date and time when the purchase was made.

    purchaseId: string

    An identifier of the purchase in Adapty. You can use it to ensure that you've already processed this purchase (for example tracking one time products).

    The store where the purchase was made.

    vendorProductId: string

    The identifier of the product in the store that was purchased.

    vendorTransactionId?: string

    The identifier of the product in the store that was purchased.