LaunchType

public enum LaunchType : String, Codable

An enum that represents info of app launch

  • app was launched by deeplink

    Declaration

    Swift

    case deeplink = "DEEPLINK"
  • app was just installed, and this is first launch

    Declaration

    Swift

    case install = "INSTALL"
  • app was opened by user

    Declaration

    Swift

    case organic = "ORGANIC"