web_launch_reason History

web

Reasons why the app was launched.


Values

NameValueDescription
directly_viewdirectly_viewThe app was launched by the user.
referer_viewreferer_viewThe app was launched by the user tapping on a link.

Generated Code

Web
/**
 * Reasons why the app was launched.
 */
const WebLaunchReason = {
    /**
     * The app was launched by the user.
     */
    DirectlyView: "directly_view",
    /**
     * The app was launched by the user tapping on a link.
     */
    RefererView: "referer_view",
} as const;
 
export type WebLaunchReason = (typeof WebLaunchReason)[keyof typeof WebLaunchReason];