FBSDKMeasurementEventNames.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright (c) Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. #if !TARGET_OS_TV
  9. #import <Foundation/Foundation.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. /**
  12. Internal value exposed to facilitate transition to Swift.
  13. API Subject to change or removal without warning. Do not use.
  14. @warning INTERNAL - DO NOT USE
  15. The name of the notification posted by FBSDKMeasurementEvent
  16. */
  17. FOUNDATION_EXPORT NSNotificationName const FBSDKMeasurementEventNotification
  18. NS_SWIFT_NAME(MeasurementEvent);
  19. /**
  20. Internal value exposed to facilitate transition to Swift.
  21. API Subject to change or removal without warning. Do not use.
  22. @warning INTERNAL - DO NOT USE
  23. Events raised by FBSDKMeasurementEvent for Applink
  24. The name of the event posted when [FBSDKURL URLWithURL:] is called successfully. This represents the successful parsing of an app link URL.
  25. */
  26. FOUNDATION_EXPORT NSString *const FBSDKAppLinkParseEventName
  27. NS_SWIFT_NAME(AppLinkParseEventName);
  28. /**
  29. Internal value exposed to facilitate transition to Swift.
  30. API Subject to change or removal without warning. Do not use.
  31. @warning INTERNAL - DO NOT USE
  32. The name of the event posted when [FBSDKURL URLWithInboundURL:] is called successfully.
  33. This represents parsing an inbound app link URL from a different application
  34. */
  35. FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateInEventName
  36. NS_SWIFT_NAME(AppLinkNavigateInEventName);
  37. /**
  38. Internal value exposed to facilitate transition to Swift.
  39. API Subject to change or removal without warning. Do not use.
  40. @warning INTERNAL - DO NOT USE
  41. The event raised when the user navigates from your app to other apps
  42. */
  43. FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateOutEventName
  44. NS_SWIFT_NAME(AppLinkNavigateOutEventName);
  45. /**
  46. Internal value exposed to facilitate transition to Swift.
  47. API Subject to change or removal without warning. Do not use.
  48. @warning INTERNAL - DO NOT USE
  49. The event raised when the user navigates out from your app and back to the referrer app.
  50. e.g when the user leaves your app after tapping the back-to-referrer navigation bar
  51. */
  52. FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateBackToReferrerEventName
  53. NS_SWIFT_NAME(AppLinkNavigateBackToReferrerEventName);
  54. NS_ASSUME_NONNULL_END
  55. #endif