• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# OH_Huks_Result
2
3
4## Overview
5
6Defines the return data, including the result code and message.
7
8**Since:**
99
10
11**Related Modules:**
12
13[HuksTypeApi](_huks_type_api.md)
14
15
16## Summary
17
18
19### Member Variables
20
21| Name | Description |
22| -------- | -------- |
23| [errorCode](#errorcode) | Result code.  |
24| [errorMsg](#errormsg) | Description of the result code.  |
25| [data](#data) | Other data returned.  |
26
27
28## Member Variable Description
29
30
31### data
32
33
34```
35uint8_t* OH_Huks_Result::data
36```
37**Description**<br>
38Other data returned.
39
40
41### errorCode
42
43
44```
45int32_t OH_Huks_Result::errorCode
46```
47**Description**<br>
48Result code.
49
50
51### errorMsg
52
53
54```
55const char* OH_Huks_Result::errorMsg
56```
57**Description**<br>
58Description of the result code.
59