Values
Name | Value | Description |
---|---|---|
directly_view | directly_view | The app was launched by the user. |
referer_view | referer_view | The 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];