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