AppsFlyerDeepLink.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // AFSDKDeeplink.h
  3. // AppsFlyerLib
  4. //
  5. // Created by Andrii Hahan on 20.08.2020.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. NS_SWIFT_NAME(DeepLink)
  10. @interface AppsFlyerDeepLink : NSObject
  11. - (nonnull instancetype)init NS_UNAVAILABLE;
  12. + (nonnull instancetype)new NS_UNAVAILABLE;
  13. @property (readonly, nonnull) NSDictionary<NSString *, id> *clickEvent;
  14. @property (readonly, nullable) NSString *deeplinkValue;
  15. @property (readonly, nullable) NSString *matchType;
  16. @property (readonly, nullable) NSString *clickHTTPReferrer;
  17. @property (readonly, nullable) NSString *mediaSource;
  18. @property (readonly, nullable) NSString *campaign;
  19. @property (readonly, nullable) NSString *campaignId;
  20. @property (readonly, nullable) NSString *afSub1;
  21. @property (readonly, nullable) NSString *afSub2;
  22. @property (readonly, nullable) NSString *afSub3;
  23. @property (readonly, nullable) NSString *afSub4;
  24. @property (readonly, nullable) NSString *afSub5;
  25. @property (readonly) BOOL isDeferred;
  26. - (NSString *)toString;
  27. @end
  28. NS_ASSUME_NONNULL_END