zdk.objc
ZDKActivationResult.h
1//
2// ZDKActivationResult.h
3// ZDK
4//
5
6#ifndef ZDKActivationResult_h
7#define ZDKActivationResult_h
8
9#import <Foundation/Foundation.h>
10#import "ZDKActivationStatus.h"
11#import "ZDKZHandle.h"
12
13NS_ASSUME_NONNULL_BEGIN
14
33
42@property(nonatomic, readonly) ZDKActivationStatus status;
43
52@property(nonatomic, readonly) NSString* reason;
53
60@property(nonatomic, readonly) NSString* _Nullable certificate;
61
68@property(nonatomic, readonly) NSString* _Nullable build;
69
76@property(nonatomic, readonly) NSString* _Nullable hddSerial;
77
84@property(nonatomic, readonly) NSString* _Nullable mac;
85
92@property(nonatomic, readonly) NSString* _Nullable checksum;
93
94-(NSString*)handlesDescription;
95
96@end
97
98NS_ASSUME_NONNULL_END
99
100#endif
Activation process result.
Definition: ZDKActivationResult.h:32
NSString *_Nullable hddSerial
The HDD serial number associated with this activation returned by the activation server.
Definition: ZDKActivationResult.h:76
NSString * reason
Text representation of the reason for the activation status.
Definition: ZDKActivationResult.h:52
NSString *_Nullable checksum
The checksum of the ZDK library returned by the activation server.
Definition: ZDKActivationResult.h:92
NSString *_Nullable build
The build type returned by the activation server in case of successful activation.
Definition: ZDKActivationResult.h:68
ZDKActivationStatus status
Activation process status result.
Definition: ZDKActivationResult.h:42
NSString *_Nullable mac
The MAC address associated with this activation returned by the activation server.
Definition: ZDKActivationResult.h:84
NSString *_Nullable certificate
The certificate returned by the activation server in case of successful activation.
Definition: ZDKActivationResult.h:60
Definition: ZDKZHandle.h:13