Type alias MakePurchaseResult

MakePurchaseResult: {
    customerInfo: CustomerInfo;
    productIdentifier: string;
    transaction: PurchasesStoreTransaction;
}

Result of a successful purchase

Type declaration

  • customerInfo: CustomerInfo

    The Customer Info for the user.

  • productIdentifier: string

    The product identifier of the purchased product

  • transaction: PurchasesStoreTransaction

    The transaction object for the purchase