CollectionResultModel<FileTypeModel>
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 FileTypeModel |
Sample
application/json
Sample:
{ "Count": 1, "TotalMatchingFilter": 1, "Items": [ { "ExtensionName": ".txt", "ContentType": "application/text", "Name": "App.1", "Description": "Text file", "HandlerOpen": "C:\\Program Files\\myapp\\app.exe -file %1", "HandlerOpenExecutableName": "app.exe", "HandlerOpenArguments": "-file %1", "HandlerEdit": "C:\\Program Files\\myapp\\app.exe -file %1", "HandlerEditExecutableName": "app.exe", "HandlerEditArguments": "-file %1" } ] }