Type alias WebPurchaseRedemptionResult

WebPurchaseRedemptionResult: {
    customerInfo: CustomerInfo;
    result: SUCCESS;
} | {
    error: PurchasesError;
    result: ERROR;
} | {
    result: PURCHASE_BELONGS_TO_OTHER_USER;
} | {
    result: INVALID_TOKEN;
} | {
    obfuscatedEmail: string;
    result: EXPIRED;
}

The result of a redemption attempt.

Type declaration

Type declaration

Type declaration

Type declaration

Type declaration

  • obfuscatedEmail: string
  • result: EXPIRED