1# OH_Huks_Result
2
3
4## Overview
5
6Defines the returned data, including a status code and related description.
7
8**Since**: 9
9
10**Related module**: [HuksTypeApi](_huks_type_api.md)
11
12
13## Summary
14
15
16### Member Variables
17
18| Name| Description|
19| -------- | -------- |
20| int32_t [errorCode](#errorcode) | Status code. |
21| const char \* [errorMsg](#errormsg) | Description of the status code. |
22| uint8_t \* [data](#data) | Other data. |
23
24
25## Member Variable Description
26
27
28### data
29
30```
31uint8_t* OH_Huks_Result::data
32```
33**Description**
34
35Other data returned.
36
37
38### errorCode
39
40```
41int32_t OH_Huks_Result::errorCode
42```
43**Description**
44
45Status code.
46
47
48### errorMsg
49
50```
51const char* OH_Huks_Result::errorMsg
52```
53**Description**
54
55Description of the status code.