1# Asset_Value 2 3 4## Overview 5 6Defines the value of an asset attribute, which is in the form of a key-value (KV) pair. 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| bool [boolean](#boolean) | Asset attribute value of the Boolean type. | 21| uint32_t [u32](#u32) | Asset attribute value of the uint32_t type. | 22| [Asset_Blob](_asset___blob.md) [blob](#blob) | Asset attribute value in an array of bytes. | 23 24 25## Member Variable Description 26 27 28### blob 29 30``` 31Asset_Blob Asset_Value::blob 32``` 33**Description** 34Represents an asset attribute value in an array of bytes. 35 36 37### boolean 38 39``` 40bool Asset_Value::boolean 41``` 42**Description** 43Represents an asset attribute value of the Boolean type. 44 45 46### u32 47 48``` 49uint32_t Asset_Value::u32 50``` 51**Description** 52Represents an asset attribute value of the uint32_t type. 53