android_launch History

android

Fires when the app is launched.


Parameters

NameTypeDescription
reasontype:android_launch_reasonThe reason why the app was launched.

android_common_parameter:

Name Type Description
android_os_version string The version of the Android operating system.

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.

Generated Code

Android
package net.meilcli.dte.event

import net.meilcli.dte.entity.AndroidLaunchReason

/**
 * Fires when the app is launched.
 */
class AndroidLaunchEvent(
    /**
     * The reason why the app was launched.
     */
    val reason: AndroidLaunchReason,    
)