ActionSituation

@objc(UAActionSituation)
public enum ActionSituation : Int, Sendable

Action situations

  • Action invoked manually

    Declaration

    Swift

    case manualInvocation
  • Action invoked from the app being launched from a push notification

    Declaration

    Swift

    case launchedFromPush
  • Action invoked from a foreground push

    Declaration

    Swift

    case foregroundPush
  • Action invoked from a background push

    Declaration

    Swift

    case backgroundPush
  • Action invoked from a web view

    Declaration

    Swift

    case webViewInvocation
  • Action invoked from a foreground action button

    Declaration

    Swift

    case foregroundInteractiveButton
  • Action invoked from a background action button

    Declaration

    Swift

    case backgroundInteractiveButton
  • Action invoked from an automation

    Declaration

    Swift

    case automation