Input type for identifyUser.

interface AnalyticsIdentifyUserInput<ServiceOptions> {
    options?: ServiceOptions;
    userId: string;
    userProfile: UserProfile;
}

Type Parameters

Properties

options?: ServiceOptions

Options to be passed to the API.

userId: string

A User ID associated to the current device.

userProfile: UserProfile

Additional information about the user and their device.