1# OH_Huks_Blob 2 3 4## Overview 5 6Defines the structure for storing data. 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| [size](#size) | Data size. | 24| [data](#data) | Pointer to the memory in which the data is stored. | 25 26 27## Member Variable Description 28 29 30### data 31 32 33``` 34uint8_t* OH_Huks_Blob::data 35``` 36**Description**<br> 37Pointer to the memory in which the data is stored. 38 39 40### size 41 42 43``` 44uint32_t OH_Huks_Blob::size 45``` 46**Description**<br> 47Data size. 48