web_launch History

web

Fires when the app is launched.


Parameters

NameTypeDescription
reasontype:web_launch_reasonThe reason why the app was launched.

common_parameter:

Name Type Description
user_id long The unique identifier of the user.
session_id string The unique identifier of the session.
user_type type:user_type The type of user.

web_common_parameter:

Name Type Description
user_agent string The user agent of the browser.

Generated Code

Web
import { WebLaunchReason } from "../type/web-launch-reason";

/**
 * Fires when the app is launched.
 */
export interface WebLaunchEvent {
    /**
     * The reason why the app was launched.
     */
    reason: WebLaunchReason;
}