zdk.objc
ZDKResult.h
1//
2// ZDKResult.h
3// ZDK
4//
5
6#ifndef ZDKResult_h
7#define ZDKResult_h
8
9#import <Foundation/Foundation.h>
10#import "ZDKResultCode.h"
11#import "ZDKZHandle.h"
12
13NS_ASSUME_NONNULL_BEGIN
14
20
25@property(nonatomic, readonly) NSString* text;
26
33@property(nonatomic, readonly) ZDKResultCode code;
34
35-(NSString*)handlesDescription;
36
37@end
38
39NS_ASSUME_NONNULL_END
40
41#endif
API invocation status result.
Definition: ZDKResult.h:19
ZDKResultCode code
Gets the code representation of the status result of API invocation.
Definition: ZDKResult.h:33
NSString * text
Gets the text representation of the status result of API invocation.
Definition: ZDKResult.h:25
Definition: ZDKZHandle.h:13