lpw
2025-03-18 4602fc5e415d104a9bd7983597b893bba32b1354
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
//  AFSDKValidateAndLogResult.h
//  AppsFlyerLib
//
//  Created by Moris Gateno on 13/03/2024.
//
 
 
typedef NS_CLOSED_ENUM(NSUInteger, AFSDKValidateAndLogStatus) {
    AFSDKValidateAndLogStatusSuccess,
    AFSDKValidateAndLogStatusFailure,
        AFSDKValidateAndLogStatusError
} NS_SWIFT_NAME(ValidateAndLogStatus);
 
NS_SWIFT_NAME(ValidateAndLogResult)
@interface AFSDKValidateAndLogResult : NSObject
 
- (nonnull instancetype)init NS_UNAVAILABLE;
+ (nonnull instancetype)new NS_UNAVAILABLE;
 
- (instancetype _Nonnull )initWithStatus:(AFSDKValidateAndLogStatus)status
                        result:(NSDictionary *_Nullable)result
                     errorData:(NSDictionary *_Nullable)errorData
                         error:(NSError *_Nullable)error;
 
@property(readonly) AFSDKValidateAndLogStatus status;
// Success case
@property(readonly, nullable) NSDictionary *result;
// Server 200 with validation failure
@property(readonly, nullable) NSDictionary *errorData;
// for the error case
@property(readonly, nullable) NSError *error;
 
@end