lpw
2024-04-15 93c16a61ab78df35cc964b38c7879f1a22c6d474
commit | author | age
dc2c02 1 //
L 2 //  AFSDKDeeplinkResult.h
3 //  AppsFlyerLib
4 //
5 //  Created by Andrii Hahan on 20.08.2020.
6 //
7
8 #import <Foundation/Foundation.h>
9
10 @class AppsFlyerDeepLink;
11
12 typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) {
13     AFSDKDeepLinkResultStatusNotFound,
14     AFSDKDeepLinkResultStatusFound,
15     AFSDKDeepLinkResultStatusFailure,
16 } NS_SWIFT_NAME(DeepLinkResultStatus);
17
18 NS_SWIFT_NAME(DeepLinkResult)
19 @interface AppsFlyerDeepLinkResult : NSObject
20
21 - (nonnull instancetype)init NS_UNAVAILABLE;
22 + (nonnull instancetype)new NS_UNAVAILABLE;
23
24 @property(readonly) AFSDKDeepLinkResultStatus status;
25
26 @property(readonly, nullable) AppsFlyerDeepLink *deepLink;
27 @property(readonly, nullable) NSError *error;
28
29 @end