# Asset_Blob ## Overview Defines a binary array, that is, an array of bytes with variable length. **Since**: 11 **Related module**: [AssetType](_asset_type.md) ## Summary ### Member Variables | Name| Description| | -------- | -------- | | uint32_t [size](#size) | Size of the byte array. | | uint8_t \* [data](#data) | Pointer to the byte array. | ## Member Variable Description ### data ``` uint8_t* Asset_Blob::data ``` **Description** Defines the pointer to the byte array. ### size ``` uint32_t Asset_Blob::size ``` **Description** Defines the size of the byte array.