objc2-home-kit 0.3.2

Bindings to the HomeKit framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ptr::NonNull;
use objc2_foundation::*;

use crate::*;

extern "C" {
    /// This constant specifies that the characteristic supports notifications
    /// using the event connection established by the controller. The
    /// event connection provides unidirectional communication from the
    /// accessory to the controller.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristicpropertysupportseventnotification?language=objc)
    pub static HMCharacteristicPropertySupportsEventNotification: &'static NSString;
}

extern "C" {
    /// This constant specifies that the characteristic is readable.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristicpropertyreadable?language=objc)
    pub static HMCharacteristicPropertyReadable: &'static NSString;
}

extern "C" {
    /// This constant specifies that the characteristic is writable.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristicpropertywritable?language=objc)
    pub static HMCharacteristicPropertyWritable: &'static NSString;
}

extern "C" {
    /// This constant specifies that the characteristic should be hidden from the user.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristicpropertyhidden?language=objc)
    pub static HMCharacteristicPropertyHidden: &'static NSString;
}

extern "C" {
    /// This constant specifies that the characteristic requires authorization data for a write.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristicpropertyrequiresauthorizationdata?language=objc)
    pub static HMCharacteristicPropertyRequiresAuthorizationData: &'static NSString;
}

extern "C" {
    /// Characteristic type for target relative humidity. The value of the characteristic is a float value in percent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetrelativehumidity?language=objc)
    pub static HMCharacteristicTypeTargetRelativeHumidity: &'static NSString;
}

extern "C" {
    /// Characteristic type for outlet in use. The value of the characteristic is a boolean, which is true
    /// if the outlet is in use.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeoutletinuse?language=objc)
    pub static HMCharacteristicTypeOutletInUse: &'static NSString;
}

extern "C" {
    /// Characteristic type for logs. The value of the characteristic is TLV8 data wrapped in an NSData.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypelogs?language=objc)
    pub static HMCharacteristicTypeLogs: &'static NSString;
}

extern "C" {
    /// Characteristic type for audio feedback. The value of the characteristic is a boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeaudiofeedback?language=objc)
    pub static HMCharacteristicTypeAudioFeedback: &'static NSString;
}

extern "C" {
    /// Characteristic type for admin only access. The value of the characteristic is a boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeadminonlyaccess?language=objc)
    pub static HMCharacteristicTypeAdminOnlyAccess: &'static NSString;
}

extern "C" {
    /// Characteristic type for Security System Alarm Type. The value of the characteristic is a uint8.
    /// indicating the type of alarm triggered by a security system service. This characteristic has a value
    /// of 1 when the alarm type is not known and a value of 0 indicates that the alarm conditions are cleared.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesecuritysystemalarmtype?language=objc)
    pub static HMCharacteristicTypeSecuritySystemAlarmType: &'static NSString;
}

extern "C" {
    /// Characteristic type for motion detected. The value of the characteristic is a boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypemotiondetected?language=objc)
    pub static HMCharacteristicTypeMotionDetected: &'static NSString;
}

extern "C" {
    /// Characteristic type for the last known action for a lock mechanism. The value of the characteristic is one of the values
    /// defined for HMCharacteristicValueLockMechanismLastKnownAction.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypelockmechanismlastknownaction?language=objc)
    pub static HMCharacteristicTypeLockMechanismLastKnownAction: &'static NSString;
}

extern "C" {
    /// Characteristic type for the control point for lock management. The characteristic is write-only that takes TLV8 data wrapped in an NSData.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypelockmanagementcontrolpoint?language=objc)
    pub static HMCharacteristicTypeLockManagementControlPoint: &'static NSString;
}

extern "C" {
    /// Characteristic type for the auto secure timeout for lock management. The value of the characteristic is an unsigned
    /// 32-bit integer representing the number of seconds.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypelockmanagementautosecuretimeout?language=objc)
    pub static HMCharacteristicTypeLockManagementAutoSecureTimeout: &'static NSString;
}

extern "C" {
    /// Characteristic type for density of air-particulate matter. The value of the characteristic is
    /// in units of micrograms/m^3.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeairparticulatedensity?language=objc)
    pub static HMCharacteristicTypeAirParticulateDensity: &'static NSString;
}

extern "C" {
    /// Characteristic type for size of air-particulate matter. The value of the characteristic is
    /// one of the values defined for HMCharacteristicValueAirParticulateSize.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeairparticulatesize?language=objc)
    pub static HMCharacteristicTypeAirParticulateSize: &'static NSString;
}

extern "C" {
    /// Characteristic type for air quality. The value of the characteristic is
    /// one of the values defined for HMCharacteristicValueAirQuality.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeairquality?language=objc)
    pub static HMCharacteristicTypeAirQuality: &'static NSString;
}

extern "C" {
    /// Characteristic type for carbon dioxide detected. The value of the characteristic is a uint8 value.
    /// A value of 0 indicates carbon dioxide levels are normal.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecarbondioxidedetected?language=objc)
    pub static HMCharacteristicTypeCarbonDioxideDetected: &'static NSString;
}

extern "C" {
    /// Characteristic type for carbon dioxide level.
    /// The value of the characteristic is a float value in units of ppm.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecarbondioxidelevel?language=objc)
    pub static HMCharacteristicTypeCarbonDioxideLevel: &'static NSString;
}

extern "C" {
    /// Characteristic type for carbon dioxide peak level.
    /// The value of the characteristic is a float value in units of ppm.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecarbondioxidepeaklevel?language=objc)
    pub static HMCharacteristicTypeCarbonDioxidePeakLevel: &'static NSString;
}

extern "C" {
    /// Characteristic type for carbon monoxide detected. The value of the characteristic is a uint8 value.
    /// A value of 0 indicates carbon monoxide levels are normal.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecarbonmonoxidedetected?language=objc)
    pub static HMCharacteristicTypeCarbonMonoxideDetected: &'static NSString;
}

extern "C" {
    /// Characteristic type for carbon monoxide level.
    /// The value of the characteristic is a float value in units of ppm.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecarbonmonoxidelevel?language=objc)
    pub static HMCharacteristicTypeCarbonMonoxideLevel: &'static NSString;
}

extern "C" {
    /// Characteristic type for carbon monoxide peak level.
    /// The value of the characteristic is a float value in units of ppm.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecarbonmonoxidepeaklevel?language=objc)
    pub static HMCharacteristicTypeCarbonMonoxidePeakLevel: &'static NSString;
}

extern "C" {
    /// Characteristic type for Contact sensor state. The value of the characteristic is a uint8 value.
    /// A value of 0 indicates that contact is detected; a value of 1 indicates no contact is detected.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecontactstate?language=objc)
    pub static HMCharacteristicTypeContactState: &'static NSString;
}

extern "C" {
    /// Characteristic type for current horizontal tilt angle. The value is a float representing the angle in arc degrees.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrenthorizontaltilt?language=objc)
    pub static HMCharacteristicTypeCurrentHorizontalTilt: &'static NSString;
}

extern "C" {
    /// Characteristic type for current position of a door/window. The value of the characteristic is an
    /// uint8 value in percent. A value of 0 indicates closed/most shade/least light allowed state and a
    /// value of 100 indicates open/no shade/most light allowed state.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentposition?language=objc)
    pub static HMCharacteristicTypeCurrentPosition: &'static NSString;
}

extern "C" {
    /// Characteristic type for current security system state. The value of the characteristic is one of
    /// the values defined for HMCharacteristicValueCurrentSecuritySystemState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentsecuritysystemstate?language=objc)
    pub static HMCharacteristicTypeCurrentSecuritySystemState: &'static NSString;
}

extern "C" {
    /// Characteristic type for current vertical tilt angle. The value is a float representing the angle in arc degrees.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentverticaltilt?language=objc)
    pub static HMCharacteristicTypeCurrentVerticalTilt: &'static NSString;
}

extern "C" {
    /// Characteristic type for Hold Position. The value of the characteristic is a boolean
    /// indicating that the current position should be held/maintained.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeholdposition?language=objc)
    pub static HMCharacteristicTypeHoldPosition: &'static NSString;
}

extern "C" {
    /// Characteristic type for leak detected. The value of the characteristic is a uint8 value.
    /// A value of 0 indicates no leak is detected; a value of 1 indicates that a leak is detected.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeleakdetected?language=objc)
    pub static HMCharacteristicTypeLeakDetected: &'static NSString;
}

extern "C" {
    /// Characteristic type for Occupancy Detected. The value of the characteristic is a uint8 value.
    /// A value of 0 indicates no occupancy is detected; a value of 1 indicates that occupancy is detected.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeoccupancydetected?language=objc)
    pub static HMCharacteristicTypeOccupancyDetected: &'static NSString;
}

extern "C" {
    /// Characteristic type for programmable switch output state. This value is to be used for presentation
    /// purposes. For a binary programmable switch, a value of 1 can be used to present a state of ON.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeoutputstate?language=objc)
    pub static HMCharacteristicTypeOutputState: &'static NSString;
}

extern "C" {
    /// Characteristic type for Position state. The value of the characteristic is one of the
    /// one of the values defined for HMCharacteristicValuePositionState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypepositionstate?language=objc)
    pub static HMCharacteristicTypePositionState: &'static NSString;
}

extern "C" {
    /// Characteristic type to indicate status of a service is active. The value of the characteristic is a boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypestatusactive?language=objc)
    pub static HMCharacteristicTypeStatusActive: &'static NSString;
}

extern "C" {
    /// Characteristic type to indicate status of a service is fault. The value of the characteristic is a uint8 value.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypestatusfault?language=objc)
    pub static HMCharacteristicTypeStatusFault: &'static NSString;
}

extern "C" {
    /// Characteristic type to indicate status of a service is jammed. The value of the characteristic is a uint8 value.
    /// A value of 0 indicates that the service is not jammed; a value of 1 indicates that the service is jammed.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypestatusjammed?language=objc)
    pub static HMCharacteristicTypeStatusJammed: &'static NSString;
}

extern "C" {
    /// Characteristic type to indicate status of a service is tampered. The value of the characteristic is a uint8 value.
    /// A value of 0 indicates no tampering has been detected; a value of 1 indicates that a tampering has been detected.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypestatustampered?language=objc)
    pub static HMCharacteristicTypeStatusTampered: &'static NSString;
}

extern "C" {
    /// Characteristic type for target horizontal tilt angle. The value is a float representing the angle in arc degrees.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargethorizontaltilt?language=objc)
    pub static HMCharacteristicTypeTargetHorizontalTilt: &'static NSString;
}

extern "C" {
    /// Characteristic type for target security system state. The value of the characteristic is one of
    /// the values defined for HMCharacteristicValueTargetSecuritySystemState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetsecuritysystemstate?language=objc)
    pub static HMCharacteristicTypeTargetSecuritySystemState: &'static NSString;
}

extern "C" {
    /// Characteristic type for target position of a door/window/window covering. The value of the
    /// characteristic is an uint8 value in percent. A value of 0 indicates closed/most shade/least
    /// light allowed state and a value of 100 indicates open/no shade/most light allowed state.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetposition?language=objc)
    pub static HMCharacteristicTypeTargetPosition: &'static NSString;
}

extern "C" {
    /// Characteristic type for target vertical tilt angle. The value is a float representing the angle in arc degrees.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetverticaltilt?language=objc)
    pub static HMCharacteristicTypeTargetVerticalTilt: &'static NSString;
}

extern "C" {
    /// Characteristic type for streaming status. The value is a tlv8 data.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypestreamingstatus?language=objc)
    pub static HMCharacteristicTypeStreamingStatus: &'static NSString;
}

extern "C" {
    /// Characteristic type for setup stream endpoint. The value is a tlv8 data.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesetupstreamendpoint?language=objc)
    pub static HMCharacteristicTypeSetupStreamEndpoint: &'static NSString;
}

extern "C" {
    /// Characteristic type for supported video stream configuration. The value is a tlv8 data.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesupportedvideostreamconfiguration?language=objc)
    pub static HMCharacteristicTypeSupportedVideoStreamConfiguration: &'static NSString;
}

extern "C" {
    /// Characteristic type for supported RTP stream configuration. The value is a tlv8 data.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesupportedrtpconfiguration?language=objc)
    pub static HMCharacteristicTypeSupportedRTPConfiguration: &'static NSString;
}

extern "C" {
    /// Characteristic type for selected stream configuration. The value is a tlv8 data.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeselectedstreamconfiguration?language=objc)
    pub static HMCharacteristicTypeSelectedStreamConfiguration: &'static NSString;
}

extern "C" {
    /// Characteristic type for camera optical zoom. The value is float.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeopticalzoom?language=objc)
    pub static HMCharacteristicTypeOpticalZoom: &'static NSString;
}

extern "C" {
    /// Characteristic type for camera digital zoom. The value is float.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypedigitalzoom?language=objc)
    pub static HMCharacteristicTypeDigitalZoom: &'static NSString;
}

extern "C" {
    /// Characteristic type for camera image rotation. The value is float with valid values: 0, 90, 180 and 270
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeimagerotation?language=objc)
    pub static HMCharacteristicTypeImageRotation: &'static NSString;
}

extern "C" {
    /// Characteristic type for image mirroring. The value is boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeimagemirroring?language=objc)
    pub static HMCharacteristicTypeImageMirroring: &'static NSString;
}

extern "C" {
    /// Characteristic type for label namespace used to label the services on an accessory with
    /// multiple services of the same type. The value of the characteristic is one of the values
    /// defined for HMCharacteristicValueLabelNamespace.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypelabelnamespace?language=objc)
    pub static HMCharacteristicTypeLabelNamespace: &'static NSString;
}

extern "C" {
    /// Characteristic type describing the index of the label for the service on accessory with multiple
    /// instances of the same service. The value is an integer and starts from 1.
    /// For a label namespace of HMCharacteristicValueLabelNamespaceDot, label index indicates the
    /// number of dots - ., .., ..., and so on.
    /// For a label namespace of HMCharacteristicValueLabelNamespaceNumeral, label index indicates the arabic
    /// numeral - 1, 2, 3, and so on.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypelabelindex?language=objc)
    pub static HMCharacteristicTypeLabelIndex: &'static NSString;
}

extern "C" {
    /// Characteristic type for air purifier current state. The value is
    /// one of the value defined for HMCharacteristicValueCurrentAirPurifierState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentairpurifierstate?language=objc)
    pub static HMCharacteristicTypeCurrentAirPurifierState: &'static NSString;
}

extern "C" {
    /// Characteristic type for air purifier target state. The value is
    /// one of the value defined for HMCharacteristicValueTargetAirPurifierState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetairpurifierstate?language=objc)
    pub static HMCharacteristicTypeTargetAirPurifierState: &'static NSString;
}

extern "C" {
    /// Characteristic type for current slat state. The value is
    /// one of the values defined for HMCharacteristicValueCurrentSlatState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentslatstate?language=objc)
    pub static HMCharacteristicTypeCurrentSlatState: &'static NSString;
}

extern "C" {
    /// Characteristic type for filter change indication. The value is
    /// one of the values defined for HMCharacteristicValueFilterChange.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypefilterchangeindication?language=objc)
    pub static HMCharacteristicTypeFilterChangeIndication: &'static NSString;
}

extern "C" {
    /// Characteristic type for filter life level. The value is in percentage units.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypefilterlifelevel?language=objc)
    pub static HMCharacteristicTypeFilterLifeLevel: &'static NSString;
}

extern "C" {
    /// Characteristic type for resetting filter change indication. The characteristic
    /// is write-only that takes a boolean value of 1.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypefilterresetchangeindication?language=objc)
    pub static HMCharacteristicTypeFilterResetChangeIndication: &'static NSString;
}

extern "C" {
    /// Characteristic type for slat type. The value is
    /// one of the values defined for HMCharacteristicValueSlatType.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeslattype?language=objc)
    pub static HMCharacteristicTypeSlatType: &'static NSString;
}

extern "C" {
    /// Characteristic type for current tilt angle. The value is a float representing the angle in arc degrees.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrenttilt?language=objc)
    pub static HMCharacteristicTypeCurrentTilt: &'static NSString;
}

extern "C" {
    /// Characteristic type for target tilt angle. The value is a float representing the angle in arc degrees.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargettilt?language=objc)
    pub static HMCharacteristicTypeTargetTilt: &'static NSString;
}

extern "C" {
    /// Characteristic type for density of ozone. The value of the characteristic is
    /// in units of micrograms/m^3.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeozonedensity?language=objc)
    pub static HMCharacteristicTypeOzoneDensity: &'static NSString;
}

extern "C" {
    /// Characteristic type for density of nitrogen dioxide. The value of the characteristic is
    /// in units of micrograms/m^3.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypenitrogendioxidedensity?language=objc)
    pub static HMCharacteristicTypeNitrogenDioxideDensity: &'static NSString;
}

extern "C" {
    /// Characteristic type for density of sulphur dioxide. The value of the characteristic is
    /// in units of micrograms/m^3.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesulphurdioxidedensity?language=objc)
    pub static HMCharacteristicTypeSulphurDioxideDensity: &'static NSString;
}

extern "C" {
    /// Characteristic type for density of air-particulate matter of size 2.5 micrograms. The
    /// value of the characteristic is in units of micrograms/m^3.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypepm2_5density?language=objc)
    pub static HMCharacteristicTypePM2_5Density: &'static NSString;
}

extern "C" {
    /// Characteristic type for density of air-particulate matter of size 10 micrograms. The
    /// value of the characteristic is in units of micrograms/m^3.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypepm10density?language=objc)
    pub static HMCharacteristicTypePM10Density: &'static NSString;
}

extern "C" {
    /// Characteristic type for density of volatile organic compounds. The value of the
    /// characteristic is in units of micrograms/m^3.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypevolatileorganiccompounddensity?language=objc)
    pub static HMCharacteristicTypeVolatileOrganicCompoundDensity: &'static NSString;
}

extern "C" {
    /// Characteristic type for program mode. The value of the characteristic is one of the values defined
    /// for HMCharacteristicValueProgramMode.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeprogrammode?language=objc)
    pub static HMCharacteristicTypeProgramMode: &'static NSString;
}

extern "C" {
    /// Characteristic type for in use. The value of the characteristic is one of the values
    /// defined for HMCharacteristicValueUsageState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeinuse?language=objc)
    pub static HMCharacteristicTypeInUse: &'static NSString;
}

extern "C" {
    /// Characteristic type for set duration. The value of the characteristic is an int value in
    /// seconds.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesetduration?language=objc)
    pub static HMCharacteristicTypeSetDuration: &'static NSString;
}

extern "C" {
    /// Characteristic type for remaining duration. The value of the characteristic is an int value in
    /// seconds.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictyperemainingduration?language=objc)
    pub static HMCharacteristicTypeRemainingDuration: &'static NSString;
}

extern "C" {
    /// Characteristic type for valve type. The value of the characteristic is one of the values
    /// defined for HMCharacteristicValueValveType.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypevalvetype?language=objc)
    pub static HMCharacteristicTypeValveType: &'static NSString;
}

extern "C" {
    /// Characteristic type for volume control type. The value of the characteristic is one of the values defined for HMCharacteristicValueVolumeControlType.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypevolumecontroltype?language=objc)
    pub static HMCharacteristicTypeVolumeControlType: &'static NSString;
}

extern "C" {
    /// Characteristic type for volume selector. The value of the characteristic is one of the values defined for HMCharacteristicValueVolumeSelector.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypevolumeselector?language=objc)
    pub static HMCharacteristicTypeVolumeSelector: &'static NSString;
}

extern "C" {
    /// Characteristic type for brightness. The value of the characteristic is an int value in percent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypebrightness?language=objc)
    pub static HMCharacteristicTypeBrightness: &'static NSString;
}

extern "C" {
    /// Characteristic type for cooling threshold. The value of the characteristic is a float value in Celsius.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecoolingthreshold?language=objc)
    pub static HMCharacteristicTypeCoolingThreshold: &'static NSString;
}

extern "C" {
    /// Characteristic type for current door state. The value of the characteristic is one of the values defined for HMCharacteristicValueDoorState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentdoorstate?language=objc)
    pub static HMCharacteristicTypeCurrentDoorState: &'static NSString;
}

extern "C" {
    /// Characteristic type for current heating/cooling. The value of the characteristic is one of the values defined for HMCharacteristicValueCurrentHeatingCooling.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentheatingcooling?language=objc)
    pub static HMCharacteristicTypeCurrentHeatingCooling: &'static NSString;
}

extern "C" {
    /// Characteristic type for current relative humidity. The value of the characteristic is a float value in percent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentrelativehumidity?language=objc)
    pub static HMCharacteristicTypeCurrentRelativeHumidity: &'static NSString;
}

extern "C" {
    /// Characteristic type for current temperature. The value of the characteristic is a float value in Celsius.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrenttemperature?language=objc)
    pub static HMCharacteristicTypeCurrentTemperature: &'static NSString;
}

extern "C" {
    /// Characteristic type for heating threshold. The value of the characteristic is a float value in Celsius.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeheatingthreshold?language=objc)
    pub static HMCharacteristicTypeHeatingThreshold: &'static NSString;
}

extern "C" {
    /// Characteristic type for hue. The value of the characteristic is a float value in arc degrees.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypehue?language=objc)
    pub static HMCharacteristicTypeHue: &'static NSString;
}

extern "C" {
    /// Characteristic type for identify. The value of the characteristic is a boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeidentify?language=objc)
    pub static HMCharacteristicTypeIdentify: &'static NSString;
}

extern "C" {
    /// Characteristic type for current lock mechanism state. The value of the characteristic is one of the values defined for HMCharacteristicValueLockMechanismState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentlockmechanismstate?language=objc)
    pub static HMCharacteristicTypeCurrentLockMechanismState: &'static NSString;
}

extern "C" {
    /// Characteristic type for target lock mechanism state. The value of the characteristic is one of the values defined for HMCharacteristicValueTargetLockMechanismState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetlockmechanismstate?language=objc)
    pub static HMCharacteristicTypeTargetLockMechanismState: &'static NSString;
}

extern "C" {
    /// Characteristic type for manufacturer. The value of the characteristic is a string.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypemanufacturer?language=objc)
    #[deprecated]
    pub static HMCharacteristicTypeManufacturer: &'static NSString;
}

extern "C" {
    /// Characteristic type for model. The value of the characteristic is a string.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypemodel?language=objc)
    #[deprecated]
    pub static HMCharacteristicTypeModel: &'static NSString;
}

extern "C" {
    /// Characteristic type for name. The value of the characteristic is a string.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypename?language=objc)
    pub static HMCharacteristicTypeName: &'static NSString;
}

extern "C" {
    /// Characteristic type for obstruction detected. The value of the characteristic is a boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeobstructiondetected?language=objc)
    pub static HMCharacteristicTypeObstructionDetected: &'static NSString;
}

extern "C" {
    /// Characteristic type for power state. The value of the characteristic is a boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypepowerstate?language=objc)
    pub static HMCharacteristicTypePowerState: &'static NSString;
}

extern "C" {
    /// Characteristic type for rotation direction. The value of the characteristic is one of the values defined for HMCharacteristicValueRotationDirection.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictyperotationdirection?language=objc)
    pub static HMCharacteristicTypeRotationDirection: &'static NSString;
}

extern "C" {
    /// Characteristic type for rotation speed. The value of the characteristic is a float.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictyperotationspeed?language=objc)
    pub static HMCharacteristicTypeRotationSpeed: &'static NSString;
}

extern "C" {
    /// Characteristic type for saturation. The value of the characteristic is a float value in percent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesaturation?language=objc)
    pub static HMCharacteristicTypeSaturation: &'static NSString;
}

extern "C" {
    /// Characteristic type for serial number. The value of the characteristic is a string.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeserialnumber?language=objc)
    #[deprecated = "No longer supported"]
    pub static HMCharacteristicTypeSerialNumber: &'static NSString;
}

extern "C" {
    /// Characteristic type for target door state. The value of the characteristic is one of the values defined for HMCharacteristicValueTargetDoorState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetdoorstate?language=objc)
    pub static HMCharacteristicTypeTargetDoorState: &'static NSString;
}

extern "C" {
    /// Characteristic type for target heating/cooling. The value of the characteristic is one of the values defined for HMCharacteristicValueHeatingCooling.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetheatingcooling?language=objc)
    pub static HMCharacteristicTypeTargetHeatingCooling: &'static NSString;
}

extern "C" {
    /// Characteristic type for target temperature. The value of the characteristic is a float value in Celsius.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargettemperature?language=objc)
    pub static HMCharacteristicTypeTargetTemperature: &'static NSString;
}

extern "C" {
    /// Characteristic type for temperature units. The value of the characteristic is one of the values defined for HMCharacteristicValueTemperatureUnit.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetemperatureunits?language=objc)
    pub static HMCharacteristicTypeTemperatureUnits: &'static NSString;
}

extern "C" {
    /// Characteristic type for version. The value of the characteristic is a string.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeversion?language=objc)
    pub static HMCharacteristicTypeVersion: &'static NSString;
}

extern "C" {
    /// Characteristic type for firmware version. The value of the characteristic is a string.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypefirmwareversion?language=objc)
    #[deprecated]
    pub static HMCharacteristicTypeFirmwareVersion: &'static NSString;
}

extern "C" {
    /// Characteristic type for hardware version. The value of the characteristic is a string.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypehardwareversion?language=objc)
    pub static HMCharacteristicTypeHardwareVersion: &'static NSString;
}

extern "C" {
    /// Characteristic type for software version. The value of the characteristic is a string.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesoftwareversion?language=objc)
    pub static HMCharacteristicTypeSoftwareVersion: &'static NSString;
}

extern "C" {
    /// Characteristic type for battery level. The value of the characteristic is a uint8 value in percent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypebatterylevel?language=objc)
    pub static HMCharacteristicTypeBatteryLevel: &'static NSString;
}

extern "C" {
    /// Characteristic type for current light level. The value of the characteristic is a float value in lux.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentlightlevel?language=objc)
    pub static HMCharacteristicTypeCurrentLightLevel: &'static NSString;
}

extern "C" {
    /// Characteristic type for input event. The value of the characteristic is one of the values defined for HMCharacteristicValueInputEvent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeinputevent?language=objc)
    pub static HMCharacteristicTypeInputEvent: &'static NSString;
}

extern "C" {
    /// Characteristic type for smoke detected. The value of the characteristic is one of the values defined for HMCharacteristicValueSmokeDetectionStatus.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesmokedetected?language=objc)
    pub static HMCharacteristicTypeSmokeDetected: &'static NSString;
}

extern "C" {
    /// Characteristic type for status low battery. The value of the characteristic is one of the values defined for HMCharacteristicValueBatteryStatus.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypestatuslowbattery?language=objc)
    pub static HMCharacteristicTypeStatusLowBattery: &'static NSString;
}

extern "C" {
    /// Characteristic type for charging state. The value of the characteristic is one of the values defined for HMCharacteristicValueChargingState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypechargingstate?language=objc)
    pub static HMCharacteristicTypeChargingState: &'static NSString;
}

extern "C" {
    /// Characteristic type for lock physical controls. The value of the characteristic is one of the values defined for HMCharacteristicValueLockPhysicalControlsState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypelockphysicalcontrols?language=objc)
    pub static HMCharacteristicTypeLockPhysicalControls: &'static NSString;
}

extern "C" {
    /// Characteristic type for current fan state. The value of the characteristic is one of the values defined for HMCharacteristicValueCurrentFanState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentfanstate?language=objc)
    pub static HMCharacteristicTypeCurrentFanState: &'static NSString;
}

extern "C" {
    /// Characteristic type for active. The value of the characteristic is one of the values defined for HMCharacteristicValueActivationState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeactive?language=objc)
    pub static HMCharacteristicTypeActive: &'static NSString;
}

extern "C" {
    /// Characteristic type for current heater-cooler state. The value of the characteristic is one of the values defined for HMCharacteristicValueCurrentHeaterCoolerState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentheatercoolerstate?language=objc)
    pub static HMCharacteristicTypeCurrentHeaterCoolerState: &'static NSString;
}

extern "C" {
    /// Characteristic type for target heater-cooler state. The value of the characteristic is one of the values defined for HMCharacteristicValueTargetHeaterCoolerState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetheatercoolerstate?language=objc)
    pub static HMCharacteristicTypeTargetHeaterCoolerState: &'static NSString;
}

extern "C" {
    /// Characteristic type for current humidifier-dehumidifier state. The value of the characteristic is one of the values defined for HMCharacteristicValueCurrentHumidifierDehumidifierState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrenthumidifierdehumidifierstate?language=objc)
    pub static HMCharacteristicTypeCurrentHumidifierDehumidifierState: &'static NSString;
}

extern "C" {
    /// Characteristic type for target humidifier-dehumidifier state. The value of the characteristic is one of the values defined for HMCharacteristicValueTargetHumidifierDehumidifierState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargethumidifierdehumidifierstate?language=objc)
    pub static HMCharacteristicTypeTargetHumidifierDehumidifierState: &'static NSString;
}

extern "C" {
    /// Characteristic type for water level. The value of the characteristic is a float value in percent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypewaterlevel?language=objc)
    pub static HMCharacteristicTypeWaterLevel: &'static NSString;
}

extern "C" {
    /// Characteristic type for swing mode. The value of the characteristic is one of the values defined for HMCharacteristicValueSwingMode.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeswingmode?language=objc)
    pub static HMCharacteristicTypeSwingMode: &'static NSString;
}

extern "C" {
    /// Characteristic type for target fan state. The value of the characteristic is one of the values defined for HMCharacteristicValueTargetFanState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetfanstate?language=objc)
    pub static HMCharacteristicTypeTargetFanState: &'static NSString;
}

extern "C" {
    /// Characteristic type for dehumidifier threshold. The value of the characteristic is a float value in percent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypedehumidifierthreshold?language=objc)
    pub static HMCharacteristicTypeDehumidifierThreshold: &'static NSString;
}

extern "C" {
    /// Characteristic type for humidifier threshold. The value of the characteristic is a float value in percent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypehumidifierthreshold?language=objc)
    pub static HMCharacteristicTypeHumidifierThreshold: &'static NSString;
}

extern "C" {
    /// Characteristic type for color temperature. The value of the characteristic is an int.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecolortemperature?language=objc)
    pub static HMCharacteristicTypeColorTemperature: &'static NSString;
}

extern "C" {
    /// Characteristic type for is configured. The value of the characteristic is one of the values defined for HMCharacteristicValueConfigurationState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeisconfigured?language=objc)
    pub static HMCharacteristicTypeIsConfigured: &'static NSString;
}

extern "C" {
    /// Characteristic type for input source type. The value of the characteristic is one of the values defined for HMCharacteristicValueInputSourceType.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeinputsourcetype?language=objc)
    pub static HMCharacteristicTypeInputSourceType: &'static NSString;
}

extern "C" {
    /// Characteristic type for input device type. The value of the characteristic is one of the values defined for HMCharacteristicValueInputDeviceType.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeinputdevicetype?language=objc)
    pub static HMCharacteristicTypeInputDeviceType: &'static NSString;
}

extern "C" {
    /// Characteristic type for closed captions. The value of the characteristic is one of the values defined for HMCharacteristicValueClosedCaptions.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeclosedcaptions?language=objc)
    pub static HMCharacteristicTypeClosedCaptions: &'static NSString;
}

extern "C" {
    /// Characteristic type for power mode selection. The value of the characteristic is one of the values defined for HMCharacteristicValuePowerModeSelection.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypepowermodeselection?language=objc)
    pub static HMCharacteristicTypePowerModeSelection: &'static NSString;
}

extern "C" {
    /// Characteristic type for current media state. The value of the characteristic is one of the values defined for HMCharacteristicValueCurrentMediaState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentmediastate?language=objc)
    pub static HMCharacteristicTypeCurrentMediaState: &'static NSString;
}

extern "C" {
    /// Characteristic type for remote key. The value of the characteristic is one of the values defined for HMCharacteristicValueRemoteKey.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictyperemotekey?language=objc)
    pub static HMCharacteristicTypeRemoteKey: &'static NSString;
}

extern "C" {
    /// Characteristic type for picture mode. The value of the characteristic is one of the values defined for HMCharacteristicValuePictureMode.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypepicturemode?language=objc)
    pub static HMCharacteristicTypePictureMode: &'static NSString;
}

extern "C" {
    /// Characteristic type for configured name. The value of the characteristic is a string.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeconfiguredname?language=objc)
    pub static HMCharacteristicTypeConfiguredName: &'static NSString;
}

extern "C" {
    /// Characteristic type for identifier. The value of the characteristic is a uint32.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeidentifier?language=objc)
    pub static HMCharacteristicTypeIdentifier: &'static NSString;
}

extern "C" {
    /// Characteristic type for active identifier. The value of the characteristic is a uint32.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypeactiveidentifier?language=objc)
    pub static HMCharacteristicTypeActiveIdentifier: &'static NSString;
}

extern "C" {
    /// Characteristic type for supported audio stream configuration. The value of the characteristic is TLV8 encoded data.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypesupportedaudiostreamconfiguration?language=objc)
    pub static HMCharacteristicTypeSupportedAudioStreamConfiguration: &'static NSString;
}

extern "C" {
    /// Characteristic type for volume. The value of the characteristic is a uint8 value in percent.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypevolume?language=objc)
    pub static HMCharacteristicTypeVolume: &'static NSString;
}

extern "C" {
    /// Characteristic type for mute. The value of the characteristic is a boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypemute?language=objc)
    pub static HMCharacteristicTypeMute: &'static NSString;
}

extern "C" {
    /// Characteristic type for night vision. The value of the characteristic is a boolean.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypenightvision?language=objc)
    pub static HMCharacteristicTypeNightVision: &'static NSString;
}

extern "C" {
    /// Characteristic type for target visibility state. The value of the characteristic is one of the values defined for HMCharacteristicValueTargetVisibilityState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetvisibilitystate?language=objc)
    pub static HMCharacteristicTypeTargetVisibilityState: &'static NSString;
}

extern "C" {
    /// Characteristic type for current visibility state. The value of the characteristic is one of the values defined for HMCharacteristicValueCurrentVisibilityState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypecurrentvisibilitystate?language=objc)
    pub static HMCharacteristicTypeCurrentVisibilityState: &'static NSString;
}

extern "C" {
    /// Characteristic type for target media state. The value of the characteristic is one of the values defined for HMCharacteristicValueTargetMediaState.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypetargetmediastate?language=objc)
    pub static HMCharacteristicTypeTargetMediaState: &'static NSString;
}

extern "C" {
    /// Characteristic type for router status. The value of the characteristic is one of the values defined for HMCharacteristicValueRouterStatus.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictyperouterstatus?language=objc)
    pub static HMCharacteristicTypeRouterStatus: &'static NSString;
}

extern "C" {
    /// Characteristic type for wan status list. The value of the characteristic is TLV8 encoded data.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypewanstatuslist?language=objc)
    pub static HMCharacteristicTypeWANStatusList: &'static NSString;
}

extern "C" {
    /// Characteristic type for Wi-Fi satellite status. The value of the characteristic is one of the values defined for HMCharacteristicValueWiFiSatelliteStatus.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/homekit/hmcharacteristictypewifisatellitestatus?language=objc)
    pub static HMCharacteristicTypeWiFiSatelliteStatus: &'static NSString;
}