1# OH_Huks_Result 2 3 4## 概述 5 6表示状态返回数据,包括返回码和消息。 7 8 **起始版本:** 99 10 11**相关模块:** 12 13[HuksTypeApi](_huks_type_api.md) 14 15 16## 汇总 17 18 19### 成员变量 20 21 | 名称 | 描述 | 22| -------- | -------- | 23| [errorCode](#errorcode) | 状态返回码。 | 24| [errorMsg](#errormsg) | 对状态返回码的说明信息。 | 25| [data](#data) | 其他返回数据。 | 26 27 28## 结构体成员变量说明 29 30 31### data 32 33 34``` 35uint8_t* OH_Huks_Result::data 36``` 37**描述:** 38其他返回数据。 39 40 41### errorCode 42 43 44``` 45int32_t OH_Huks_Result::errorCode 46``` 47**描述:** 48状态返回码。 49 50 51### errorMsg 52 53 54``` 55const char* OH_Huks_Result::errorMsg 56``` 57**描述:** 58对状态返回码的说明信息。 59