CollectionResultModel<DiscoveredApplicationModel>
A collection of items.
Properties
| Name | Description | Additional information |
|---|---|---|
| Href | See Hypermedia. |
Type: String |
| RelatedActions | See Hypermedia. |
Type: Array of RelationModel |
| Count | Number of items in the returned collection. See Object Counts. |
Type: Number |
| TotalMatchingFilter | The total number of items that matched the specified filter. This may be larger than the number of items returned, if the caller specified "take" and/or "skip" parameters. See Object Counts. |
Type: Number |
| Items | The items. |
Type: Array of DiscoveredApplicationModel |
Sample
application/json
Sample:
{
"Count": 1,
"TotalMatchingFilter": 1,
"Items": [
{
"Id": "1c58d824-2838-4c70-9a1f-348afb244157",
"Icon": {
"Href": "[api:Icons(00000000-0000-0000-0000-000000000002)]",
"RelatedTo": "2f08f456-7ec8-4edc-866d-25037776ef4f",
"Id": "00000000-0000-0000-0000-000000000002"
},
"Origin": "MachineImport",
"Name": "myapp",
"Description": "application",
"Vendor": "vendor",
"Version": "1.0",
"StartMenuFolder": "Programs/Folder",
"Executable": "C:\\Program Files\\myapp\\app.exe",
"Arguments": "arg1 arg2",
"WorkingDirectory": "C:\\Program Files\\myapp"
}
]
}