Represents the result of an identify user operation.

interface IdentifyResult {
    customerInfo: CustomerInfo;
    wasCreated: boolean;
}

Properties

customerInfo: CustomerInfo

The customer information after the logIn attempt.

wasCreated: boolean

true if a new user has been registered in the backend, false if the user had already been registered.