Category
public enum Category
This enumerates our various scope categories.
-
This enumerates a profile. The associated value is the profile type.
Declaration
Swift
case Profile(ProfileType)
-
The location defines the physical location of the device. The location value might be any string describing the physical location of the device.
Declaration
Swift
case Location(String)
-
A string or path value describing the hardware of the device. A device shall include at least one hardware entry into its scope list.
Declaration
Swift
case Hardware(String)
-
The searchable name of the device. A device shall include at least one name entry into its scope list.
Declaration
Swift
case Name(String)
-
Device manufacturer’s “Junk Drawer.” The name of the scope, as well as its value, are provided.
Declaration
Swift
case Custom(name: String, value: String)