Represents the result of a purchase operation.

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

Properties

customerInfo: CustomerInfo

The customer information after the purchase.

operationSessionId: string

The operation session id of the purchase.

redemptionInfo: null | RedemptionInfo

The redemption information after the purchase if available.