Interface LensLaunchData

Some Lenses may accept (or require) certain data provided to them when the Lens is applied.

This data may include things like user info (to render the user's name, for example, or perform some task based on their birth date), or arbitrary launchParams defined by the Lens.

interface LensLaunchData {
    userId?: string;
    userData?: LensUserData;
    launchParams?: LensLaunchParams;
}

Properties

userId?: string
userData?: LensUserData
launchParams?: LensLaunchParams
MMNEPVFCICPMFPCPTTAAATR