1# Asset_Result
2
3
4## Overview
5
6Defines the query result of an asset.
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 [count](#count) | Number of asset attributes in the query result. |
21| [Asset_Attr](_asset___attr.md) \* [attrs](#attrs) | Pointer to the array of the asset attributes. |
22
23
24## Member Variable Description
25
26
27### attrs
28
29```
30Asset_Attr* Asset_Result::attrs
31```
32**Description**
33Indicates the pointer to the array of the asset attributes.
34
35
36### count
37
38```
39uint32_t Asset_Result::count
40```
41**Description**
42Indicates the number of asset attributes in the query result.
43