blob: 3aa58b420dd648fa272729f682e18201697ddd0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// DeviceCategory Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories.
type DeviceCategory struct {
// Entity is the base model of DeviceCategory
Entity
// DisplayName Display name for the device category.
DisplayName *string `json:"displayName,omitempty"`
// Description Optional description for the device category.
Description *string `json:"description,omitempty"`
// RoleScopeTagIDs Optional role scope tags for the device category.
RoleScopeTagIDs []string `json:"roleScopeTagIds,omitempty"`
}
|