Represents the result of a purchase operation.

interface PurchaseResult {
    customerInfo: CustomerInfo;
    redemptionInfo: null | RedemptionInfo;
}

Properties

customerInfo: CustomerInfo

The customer information after the purchase.

redemptionInfo: null | RedemptionInfo

The redemption information after the purchase if available.