impression_view History

web

android

Fires when a user sees an impression of a product.


Summary

Example summary.

Parameters

NameTypeDescription
view_namestringThe name of the view.

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.

web_common_parameter:

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

SQL

Example SQL query to get the view names.

select
  view_name
from
  impression_view

Generated Code

Android
package net.meilcli.dte.event


/**
 * Fires when a user sees an impression of a product.
 */
class ImpressionViewEvent(
    /**
     * The name of the view.
     */
    val viewName: String,    
)
Web

/**
 * Fires when a user sees an impression of a product.
 */
export interface ImpressionViewEvent {
    /**
     * The name of the view.
     */
    viewName: string;
}