Interface PurchasesError

interface PurchasesError {
    code: PURCHASES_ERROR_CODE;
    message: string;
    readableErrorCode: string;
    underlyingErrorMessage: string;
    userCancelled: null | boolean;
    userInfo: ErrorInfo;
}

Properties

message: string
readableErrorCode: string
underlyingErrorMessage: string
userCancelled: null | boolean
userInfo: ErrorInfo

Generated using TypeDoc