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