1# OH_Huks_ParamSet 2 3 4## Overview 5 6Defines the structure of the parameter set. 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| [paramSetSize](#paramsetsize) | Memory size of the parameter set. | 24| [paramsCnt](#paramscnt) | Number of parameters in the parameter set. | 25| [params](#params) [] | Parameter array. | 26 27 28## Member Variable Description 29 30 31### params 32 33 34``` 35struct OH_Huks_Param OH_Huks_ParamSet::params[] 36``` 37**Description**<br> 38Parameter array. 39 40 41### paramsCnt 42 43 44``` 45uint32_t OH_Huks_ParamSet::paramsCnt 46``` 47**Description**<br> 48Number of parameters in the parameter set. 49 50 51### paramSetSize 52 53 54``` 55uint32_t OH_Huks_ParamSet::paramSetSize 56``` 57**Description**<br> 58Memory size of the parameter set. 59