SmartclipSDKiOS 3.0.0
Smartclip Advertisement Framework for iOS
Loading...
Searching...
No Matches
SCAdError.h
1//
2// SCAdError.h
3// SmartclipSDKiOS
4//
5// Copyright © 2019 smartclip. All rights reserved.
6//
7
8#import <Foundation/Foundation.h>
9
10NS_ASSUME_NONNULL_BEGIN
11
13@interface SCAdError : NSObject
15@property (nonatomic, copy) NSString *errorDescription;
17@property (nonatomic) NSTimeInterval timestamp;
19@property (nonatomic) NSInteger errorCode;
20
21@end
22
23NS_ASSUME_NONNULL_END
This class holds public error information, if an adError was detected.
Definition: SCAdError.h:14
NSString * errorDescription
Human readable error description.
Definition: SCAdError.h:15
NSInteger errorCode
VAST error code.
Definition: SCAdError.h:19
NSTimeInterval timestamp
Timestamp of the error.
Definition: SCAdError.h:17