1# OH_Huks_Blob 2 3 4## Overview 5 6Defines the struct of a binary large object (BLOB). 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| uint32_t [size](#size) | Size of the BLOB object. | 21| uint8_t \* [data](#data) | Pointer to the memory in which the data is stored. | 22 23 24## Member Variable Description 25 26 27### data 28 29``` 30uint8_t* OH_Huks_Blob::data 31``` 32**Description** 33 34Pointer to the memory in which the data is stored. 35 36 37### size 38 39``` 40uint32_t OH_Huks_Blob::size 41``` 42**Description** 43 44Size of the data.