pub mod session {
pub const STARTED: &str = "TelemetryDeck.Session.started";
}
pub mod navigation {
pub const PATH_CHANGED: &str = "TelemetryDeck.Navigation.pathChanged";
}
pub mod purchase {
pub const COMPLETED: &str = "TelemetryDeck.Purchase.completed";
pub const FREE_TRIAL_STARTED: &str = "TelemetryDeck.Purchase.freeTrialStarted";
pub const CONVERTED_FROM_TRIAL: &str = "TelemetryDeck.Purchase.convertedFromTrial";
}
pub mod acquisition {
pub const NEW_INSTALL_DETECTED: &str = "TelemetryDeck.Acquisition.newInstallDetected";
pub const LEAD_STARTED: &str = "TelemetryDeck.Acquisition.leadStarted";
pub const USER_ACQUIRED: &str = "TelemetryDeck.Acquisition.userAcquired";
pub const LEAD_CONVERTED: &str = "TelemetryDeck.Acquisition.leadConverted";
}
pub mod signal {
pub const DURATION_IN_SECONDS: &str = "TelemetryDeck.Signal.durationInSeconds";
}