1# Asset_Blob
2
3
4## Overview
5
6Defines a binary array, that is, an array of bytes with variable length.
7
8**Since**: 11
9
10**Related module**: [AssetType](_asset_type.md)
11
12
13## Summary
14
15
16### Member Variables
17
18| Name| Description|
19| -------- | -------- |
20| uint32_t [size](#size) | Size of the byte array. |
21| uint8_t \* [data](#data) | Pointer to the byte array. |
22
23
24## Member Variable Description
25
26
27### data
28
29```
30uint8_t* Asset_Blob::data
31```
32**Description**
33Defines the pointer to the byte array.
34
35
36### size
37
38```
39uint32_t Asset_Blob::size
40```
41**Description**
42Defines the size of the byte array.
43
44