Parameters
Name | Type | Description |
---|---|---|
reason | type:web_launch_reason | The reason why the app was launched. |
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. |
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;
}