Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.   Identifies in controls modules the low level driver or
  3.  
  4.   EC-API owning this object.
  5.   The driver attribute is shown only in controls modules.
  6.  */
  7.  
  8. @property (nullable, nonatomic, copy, readonly) NSString *driver;
  9.  
  10.  
  11. /**
  12.   Unique id identifying this attribute,
  13.  
  14.   given by and meaningful only to the low level driver or
  15.   EC-API owning this object.
  16.   The driver attribute is shown only in controls modules.
  17.  */
  18.  
  19. @property (nullable, nonatomic, copy, readonly) NSString *driverID;
  20.  
  21.  
  22. /**
  23.   The origin attribute indicates how the device has been modeled.
  24.  
  25.   It either has the value "generic", indicating that it is a generic device
  26.   or it looks like "xx-yy-zz" indicating that this device has been modeled
  27.   after a configuration file for manufacturer = xx, model = yy and version = zz.
  28.   This value applies only to real devices, not virtual ones.
  29.  */
  30.  
  31. @property (nullable, nonatomic, copy, readonly) NSString *origin;
  32.  
  33.  
  34. /**
  35.   Manufacturer name.
  36.  
  37.  */
  38. @property (nullable, nonatomic, copy, readonly) NSString *manufacturer;
  39.  
  40. /**
  41.   Device's model.
  42.  
  43.  */
  44. @property (nullable, nonatomic, copy, readonly) NSString *model;
  45.  
  46. /**
  47.   User friendly given name to that type of device.
  48.  
  49.  */
  50. @property (nullable, nonatomic, copy, readonly) NSString *name;
  51.  
  52. /**
  53.   Hardware revision.
  54.  
  55.  */
  56. @property (nullable, nonatomic, copy, readonly) NSString *hardwareRevision;
  57.  
  58. /**
  59.   Serial number.
  60.  
  61.  */
  62. @property (nullable, nonatomic, copy, readonly) NSString *serialNumber;
  63.  
  64. /**
  65.   Software revision.
  66.  
  67.  */
  68. @property (nullable, nonatomic, copy, readonly) NSString *softwareRevision;
  69.  
  70. /**
  71.   Firmware revision.
  72.  
  73.  */
  74. @property (nullable, nonatomic, copy, readonly) NSString *firmwareRevision;
  75.  
  76. /**
  77.   Date manufactured.
  78.  
  79.  */
  80. @property (nullable, nonatomic, strong, readonly) NSDate *dateManufactured;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement