@@ -334,6 +334,8 @@ public partial class AindManipulatorDevice
334334
335335 private string _deviceType = "StepperDriver" ;
336336
337+ private string _deviceName ;
338+
337339 private BaseModel _additionalSettings ;
338340
339341 private AindManipulatorCalibration _calibration ;
@@ -351,6 +353,7 @@ public AindManipulatorDevice()
351353 protected AindManipulatorDevice ( AindManipulatorDevice other )
352354 {
353355 _deviceType = other . _deviceType ;
356+ _deviceName = other . _deviceName ;
354357 _additionalSettings = other . _additionalSettings ;
355358 _calibration = other . _calibration ;
356359 _whoAmI = other . _whoAmI ;
@@ -371,6 +374,23 @@ public string DeviceType
371374 }
372375 }
373376
377+ /// <summary>
378+ /// Device name
379+ /// </summary>
380+ [ Newtonsoft . Json . JsonPropertyAttribute ( "device_name" ) ]
381+ [ System . ComponentModel . DescriptionAttribute ( "Device name" ) ]
382+ public string DeviceName
383+ {
384+ get
385+ {
386+ return _deviceName ;
387+ }
388+ set
389+ {
390+ _deviceName = value ;
391+ }
392+ }
393+
374394 /// <summary>
375395 /// Additional settings
376396 /// </summary>
@@ -463,6 +483,7 @@ public System.IObservable<AindManipulatorDevice> Process<TSource>(System.IObserv
463483 protected virtual bool PrintMembers ( System . Text . StringBuilder stringBuilder )
464484 {
465485 stringBuilder . Append ( "device_type = " + _deviceType + ", " ) ;
486+ stringBuilder . Append ( "device_name = " + _deviceName + ", " ) ;
466487 stringBuilder . Append ( "additional_settings = " + _additionalSettings + ", " ) ;
467488 stringBuilder . Append ( "calibration = " + _calibration + ", " ) ;
468489 stringBuilder . Append ( "who_am_i = " + _whoAmI + ", " ) ;
@@ -757,6 +778,8 @@ public partial class HarpBehavior
757778
758779 private string _deviceType = "Behavior" ;
759780
781+ private string _deviceName ;
782+
760783 private BaseModel _additionalSettings ;
761784
762785 private BaseModel _calibration ;
@@ -774,6 +797,7 @@ public HarpBehavior()
774797 protected HarpBehavior ( HarpBehavior other )
775798 {
776799 _deviceType = other . _deviceType ;
800+ _deviceName = other . _deviceName ;
777801 _additionalSettings = other . _additionalSettings ;
778802 _calibration = other . _calibration ;
779803 _whoAmI = other . _whoAmI ;
@@ -794,6 +818,23 @@ public string DeviceType
794818 }
795819 }
796820
821+ /// <summary>
822+ /// Device name
823+ /// </summary>
824+ [ Newtonsoft . Json . JsonPropertyAttribute ( "device_name" ) ]
825+ [ System . ComponentModel . DescriptionAttribute ( "Device name" ) ]
826+ public string DeviceName
827+ {
828+ get
829+ {
830+ return _deviceName ;
831+ }
832+ set
833+ {
834+ _deviceName = value ;
835+ }
836+ }
837+
797838 /// <summary>
798839 /// Additional settings
799840 /// </summary>
@@ -890,6 +931,7 @@ public System.IObservable<HarpBehavior> Process<TSource>(System.IObservable<TSou
890931 protected virtual bool PrintMembers ( System . Text . StringBuilder stringBuilder )
891932 {
892933 stringBuilder . Append ( "device_type = " + _deviceType + ", " ) ;
934+ stringBuilder . Append ( "device_name = " + _deviceName + ", " ) ;
893935 stringBuilder . Append ( "additional_settings = " + _additionalSettings + ", " ) ;
894936 stringBuilder . Append ( "calibration = " + _calibration + ", " ) ;
895937 stringBuilder . Append ( "who_am_i = " + _whoAmI + ", " ) ;
@@ -1063,6 +1105,8 @@ public partial class SerialScale
10631105
10641106 private string _deviceType = "SerialScale" ;
10651107
1108+ private string _deviceName ;
1109+
10661110 private BaseModel _additionalSettings ;
10671111
10681112 private BaseModel _calibration ;
@@ -1076,6 +1120,7 @@ public SerialScale()
10761120 protected SerialScale ( SerialScale other )
10771121 {
10781122 _deviceType = other . _deviceType ;
1123+ _deviceName = other . _deviceName ;
10791124 _additionalSettings = other . _additionalSettings ;
10801125 _calibration = other . _calibration ;
10811126 _portName = other . _portName ;
@@ -1094,6 +1139,23 @@ public string DeviceType
10941139 }
10951140 }
10961141
1142+ /// <summary>
1143+ /// Device name
1144+ /// </summary>
1145+ [ Newtonsoft . Json . JsonPropertyAttribute ( "device_name" ) ]
1146+ [ System . ComponentModel . DescriptionAttribute ( "Device name" ) ]
1147+ public string DeviceName
1148+ {
1149+ get
1150+ {
1151+ return _deviceName ;
1152+ }
1153+ set
1154+ {
1155+ _deviceName = value ;
1156+ }
1157+ }
1158+
10971159 /// <summary>
10981160 /// Additional settings
10991161 /// </summary>
@@ -1160,6 +1222,7 @@ public System.IObservable<SerialScale> Process<TSource>(System.IObservable<TSour
11601222 protected virtual bool PrintMembers ( System . Text . StringBuilder stringBuilder )
11611223 {
11621224 stringBuilder . Append ( "device_type = " + _deviceType + ", " ) ;
1225+ stringBuilder . Append ( "device_name = " + _deviceName + ", " ) ;
11631226 stringBuilder . Append ( "additional_settings = " + _additionalSettings + ", " ) ;
11641227 stringBuilder . Append ( "calibration = " + _calibration + ", " ) ;
11651228 stringBuilder . Append ( "port_name = " + _portName ) ;
@@ -1187,7 +1250,7 @@ public override string ToString()
11871250 public partial class AindBehaviorWaterTunerRig
11881251 {
11891252
1190- private string _aindBehaviorServicesPkgVersion = "0.10.2 " ;
1253+ private string _aindBehaviorServicesPkgVersion = "0.11.0 " ;
11911254
11921255 private string _version = "0.2.0" ;
11931256
0 commit comments