objc2-health-kit 0.3.2

Bindings to the HealthKit 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
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ptr::NonNull;
use objc2_foundation::*;

use crate::*;

/// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifier?language=objc)
// NS_TYPED_ENUM
pub type HKQuantityTypeIdentifier = NSString;

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierapplesleepingwristtemperature?language=objc)
    pub static HKQuantityTypeIdentifierAppleSleepingWristTemperature:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbodyfatpercentage?language=objc)
    pub static HKQuantityTypeIdentifierBodyFatPercentage: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbodymass?language=objc)
    pub static HKQuantityTypeIdentifierBodyMass: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbodymassindex?language=objc)
    pub static HKQuantityTypeIdentifierBodyMassIndex: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierelectrodermalactivity?language=objc)
    pub static HKQuantityTypeIdentifierElectrodermalActivity: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheight?language=objc)
    pub static HKQuantityTypeIdentifierHeight: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierleanbodymass?language=objc)
    pub static HKQuantityTypeIdentifierLeanBodyMass: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwaistcircumference?language=objc)
    pub static HKQuantityTypeIdentifierWaistCircumference: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifieractiveenergyburned?language=objc)
    pub static HKQuantityTypeIdentifierActiveEnergyBurned: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierappleexercisetime?language=objc)
    pub static HKQuantityTypeIdentifierAppleExerciseTime: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierapplemovetime?language=objc)
    pub static HKQuantityTypeIdentifierAppleMoveTime: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierapplestandtime?language=objc)
    pub static HKQuantityTypeIdentifierAppleStandTime: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbasalenergyburned?language=objc)
    pub static HKQuantityTypeIdentifierBasalEnergyBurned: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiercrosscountryskiingspeed?language=objc)
    pub static HKQuantityTypeIdentifierCrossCountrySkiingSpeed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiercyclingcadence?language=objc)
    pub static HKQuantityTypeIdentifierCyclingCadence: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiercyclingfunctionalthresholdpower?language=objc)
    pub static HKQuantityTypeIdentifierCyclingFunctionalThresholdPower:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiercyclingpower?language=objc)
    pub static HKQuantityTypeIdentifierCyclingPower: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiercyclingspeed?language=objc)
    pub static HKQuantityTypeIdentifierCyclingSpeed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancecrosscountryskiing?language=objc)
    pub static HKQuantityTypeIdentifierDistanceCrossCountrySkiing:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancecycling?language=objc)
    pub static HKQuantityTypeIdentifierDistanceCycling: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancedownhillsnowsports?language=objc)
    pub static HKQuantityTypeIdentifierDistanceDownhillSnowSports:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancepaddlesports?language=objc)
    pub static HKQuantityTypeIdentifierDistancePaddleSports: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancerowing?language=objc)
    pub static HKQuantityTypeIdentifierDistanceRowing: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistanceskatingsports?language=objc)
    pub static HKQuantityTypeIdentifierDistanceSkatingSports: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistanceswimming?language=objc)
    pub static HKQuantityTypeIdentifierDistanceSwimming: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancewalkingrunning?language=objc)
    pub static HKQuantityTypeIdentifierDistanceWalkingRunning: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancewheelchair?language=objc)
    pub static HKQuantityTypeIdentifierDistanceWheelchair: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierestimatedworkouteffortscore?language=objc)
    pub static HKQuantityTypeIdentifierEstimatedWorkoutEffortScore:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierflightsclimbed?language=objc)
    pub static HKQuantityTypeIdentifierFlightsClimbed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiernikefuel?language=objc)
    pub static HKQuantityTypeIdentifierNikeFuel: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierpaddlesportsspeed?language=objc)
    pub static HKQuantityTypeIdentifierPaddleSportsSpeed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierphysicaleffort?language=objc)
    pub static HKQuantityTypeIdentifierPhysicalEffort: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierpushcount?language=objc)
    pub static HKQuantityTypeIdentifierPushCount: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrowingspeed?language=objc)
    pub static HKQuantityTypeIdentifierRowingSpeed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunningpower?language=objc)
    pub static HKQuantityTypeIdentifierRunningPower: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunningspeed?language=objc)
    pub static HKQuantityTypeIdentifierRunningSpeed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierstepcount?language=objc)
    pub static HKQuantityTypeIdentifierStepCount: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierswimmingstrokecount?language=objc)
    pub static HKQuantityTypeIdentifierSwimmingStrokeCount: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierunderwaterdepth?language=objc)
    pub static HKQuantityTypeIdentifierUnderwaterDepth: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierworkouteffortscore?language=objc)
    pub static HKQuantityTypeIdentifierWorkoutEffortScore: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierenvironmentalaudioexposure?language=objc)
    pub static HKQuantityTypeIdentifierEnvironmentalAudioExposure:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierenvironmentalsoundreduction?language=objc)
    pub static HKQuantityTypeIdentifierEnvironmentalSoundReduction:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheadphoneaudioexposure?language=objc)
    pub static HKQuantityTypeIdentifierHeadphoneAudioExposure: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifieratrialfibrillationburden?language=objc)
    pub static HKQuantityTypeIdentifierAtrialFibrillationBurden: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheartrate?language=objc)
    pub static HKQuantityTypeIdentifierHeartRate: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheartraterecoveryoneminute?language=objc)
    pub static HKQuantityTypeIdentifierHeartRateRecoveryOneMinute:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheartratevariabilitysdnn?language=objc)
    pub static HKQuantityTypeIdentifierHeartRateVariabilitySDNN: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierperipheralperfusionindex?language=objc)
    pub static HKQuantityTypeIdentifierPeripheralPerfusionIndex: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrestingheartrate?language=objc)
    pub static HKQuantityTypeIdentifierRestingHeartRate: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiervo2max?language=objc)
    pub static HKQuantityTypeIdentifierVO2Max: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingheartrateaverage?language=objc)
    pub static HKQuantityTypeIdentifierWalkingHeartRateAverage: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierapplewalkingsteadiness?language=objc)
    pub static HKQuantityTypeIdentifierAppleWalkingSteadiness: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunninggroundcontacttime?language=objc)
    pub static HKQuantityTypeIdentifierRunningGroundContactTime: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunningstridelength?language=objc)
    pub static HKQuantityTypeIdentifierRunningStrideLength: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunningverticaloscillation?language=objc)
    pub static HKQuantityTypeIdentifierRunningVerticalOscillation:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiersixminutewalktestdistance?language=objc)
    pub static HKQuantityTypeIdentifierSixMinuteWalkTestDistance: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierstairascentspeed?language=objc)
    pub static HKQuantityTypeIdentifierStairAscentSpeed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierstairdescentspeed?language=objc)
    pub static HKQuantityTypeIdentifierStairDescentSpeed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingasymmetrypercentage?language=objc)
    pub static HKQuantityTypeIdentifierWalkingAsymmetryPercentage:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingdoublesupportpercentage?language=objc)
    pub static HKQuantityTypeIdentifierWalkingDoubleSupportPercentage:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingspeed?language=objc)
    pub static HKQuantityTypeIdentifierWalkingSpeed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingsteplength?language=objc)
    pub static HKQuantityTypeIdentifierWalkingStepLength: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarybiotin?language=objc)
    pub static HKQuantityTypeIdentifierDietaryBiotin: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycaffeine?language=objc)
    pub static HKQuantityTypeIdentifierDietaryCaffeine: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycalcium?language=objc)
    pub static HKQuantityTypeIdentifierDietaryCalcium: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycarbohydrates?language=objc)
    pub static HKQuantityTypeIdentifierDietaryCarbohydrates: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarychloride?language=objc)
    pub static HKQuantityTypeIdentifierDietaryChloride: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycholesterol?language=objc)
    pub static HKQuantityTypeIdentifierDietaryCholesterol: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarychromium?language=objc)
    pub static HKQuantityTypeIdentifierDietaryChromium: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycopper?language=objc)
    pub static HKQuantityTypeIdentifierDietaryCopper: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryenergyconsumed?language=objc)
    pub static HKQuantityTypeIdentifierDietaryEnergyConsumed: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfatmonounsaturated?language=objc)
    pub static HKQuantityTypeIdentifierDietaryFatMonounsaturated: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfatpolyunsaturated?language=objc)
    pub static HKQuantityTypeIdentifierDietaryFatPolyunsaturated: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfatsaturated?language=objc)
    pub static HKQuantityTypeIdentifierDietaryFatSaturated: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfattotal?language=objc)
    pub static HKQuantityTypeIdentifierDietaryFatTotal: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfiber?language=objc)
    pub static HKQuantityTypeIdentifierDietaryFiber: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfolate?language=objc)
    pub static HKQuantityTypeIdentifierDietaryFolate: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryiodine?language=objc)
    pub static HKQuantityTypeIdentifierDietaryIodine: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryiron?language=objc)
    pub static HKQuantityTypeIdentifierDietaryIron: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarymagnesium?language=objc)
    pub static HKQuantityTypeIdentifierDietaryMagnesium: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarymanganese?language=objc)
    pub static HKQuantityTypeIdentifierDietaryManganese: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarymolybdenum?language=objc)
    pub static HKQuantityTypeIdentifierDietaryMolybdenum: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryniacin?language=objc)
    pub static HKQuantityTypeIdentifierDietaryNiacin: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarypantothenicacid?language=objc)
    pub static HKQuantityTypeIdentifierDietaryPantothenicAcid: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryphosphorus?language=objc)
    pub static HKQuantityTypeIdentifierDietaryPhosphorus: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarypotassium?language=objc)
    pub static HKQuantityTypeIdentifierDietaryPotassium: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryprotein?language=objc)
    pub static HKQuantityTypeIdentifierDietaryProtein: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryriboflavin?language=objc)
    pub static HKQuantityTypeIdentifierDietaryRiboflavin: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryselenium?language=objc)
    pub static HKQuantityTypeIdentifierDietarySelenium: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarysodium?language=objc)
    pub static HKQuantityTypeIdentifierDietarySodium: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarysugar?language=objc)
    pub static HKQuantityTypeIdentifierDietarySugar: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarythiamin?language=objc)
    pub static HKQuantityTypeIdentifierDietaryThiamin: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitamina?language=objc)
    pub static HKQuantityTypeIdentifierDietaryVitaminA: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitaminb12?language=objc)
    pub static HKQuantityTypeIdentifierDietaryVitaminB12: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitaminb6?language=objc)
    pub static HKQuantityTypeIdentifierDietaryVitaminB6: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitaminc?language=objc)
    pub static HKQuantityTypeIdentifierDietaryVitaminC: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitamind?language=objc)
    pub static HKQuantityTypeIdentifierDietaryVitaminD: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitamine?language=objc)
    pub static HKQuantityTypeIdentifierDietaryVitaminE: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitamink?language=objc)
    pub static HKQuantityTypeIdentifierDietaryVitaminK: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarywater?language=objc)
    pub static HKQuantityTypeIdentifierDietaryWater: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryzinc?language=objc)
    pub static HKQuantityTypeIdentifierDietaryZinc: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbloodalcoholcontent?language=objc)
    pub static HKQuantityTypeIdentifierBloodAlcoholContent: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbloodpressurediastolic?language=objc)
    pub static HKQuantityTypeIdentifierBloodPressureDiastolic: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbloodpressuresystolic?language=objc)
    pub static HKQuantityTypeIdentifierBloodPressureSystolic: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierinsulindelivery?language=objc)
    pub static HKQuantityTypeIdentifierInsulinDelivery: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiernumberofalcoholicbeverages?language=objc)
    pub static HKQuantityTypeIdentifierNumberOfAlcoholicBeverages:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiernumberoftimesfallen?language=objc)
    pub static HKQuantityTypeIdentifierNumberOfTimesFallen: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiertimeindaylight?language=objc)
    pub static HKQuantityTypeIdentifierTimeInDaylight: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifieruvexposure?language=objc)
    pub static HKQuantityTypeIdentifierUVExposure: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwatertemperature?language=objc)
    pub static HKQuantityTypeIdentifierWaterTemperature: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbasalbodytemperature?language=objc)
    pub static HKQuantityTypeIdentifierBasalBodyTemperature: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierapplesleepingbreathingdisturbances?language=objc)
    pub static HKQuantityTypeIdentifierAppleSleepingBreathingDisturbances:
        &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierforcedexpiratoryvolume1?language=objc)
    pub static HKQuantityTypeIdentifierForcedExpiratoryVolume1: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierforcedvitalcapacity?language=objc)
    pub static HKQuantityTypeIdentifierForcedVitalCapacity: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierinhalerusage?language=objc)
    pub static HKQuantityTypeIdentifierInhalerUsage: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifieroxygensaturation?language=objc)
    pub static HKQuantityTypeIdentifierOxygenSaturation: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierpeakexpiratoryflowrate?language=objc)
    pub static HKQuantityTypeIdentifierPeakExpiratoryFlowRate: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrespiratoryrate?language=objc)
    pub static HKQuantityTypeIdentifierRespiratoryRate: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbloodglucose?language=objc)
    pub static HKQuantityTypeIdentifierBloodGlucose: &'static HKQuantityTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbodytemperature?language=objc)
    pub static HKQuantityTypeIdentifierBodyTemperature: &'static HKQuantityTypeIdentifier;
}

/// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifier?language=objc)
// NS_TYPED_ENUM
pub type HKCategoryTypeIdentifier = NSString;

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierapplestandhour?language=objc)
    pub static HKCategoryTypeIdentifierAppleStandHour: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierenvironmentalaudioexposureevent?language=objc)
    pub static HKCategoryTypeIdentifierEnvironmentalAudioExposureEvent:
        &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierheadphoneaudioexposureevent?language=objc)
    pub static HKCategoryTypeIdentifierHeadphoneAudioExposureEvent:
        &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierhighheartrateevent?language=objc)
    pub static HKCategoryTypeIdentifierHighHeartRateEvent: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierirregularheartrhythmevent?language=objc)
    pub static HKCategoryTypeIdentifierIrregularHeartRhythmEvent: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierlowcardiofitnessevent?language=objc)
    pub static HKCategoryTypeIdentifierLowCardioFitnessEvent: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierlowheartrateevent?language=objc)
    pub static HKCategoryTypeIdentifierLowHeartRateEvent: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiermindfulsession?language=objc)
    pub static HKCategoryTypeIdentifierMindfulSession: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierapplewalkingsteadinessevent?language=objc)
    pub static HKCategoryTypeIdentifierAppleWalkingSteadinessEvent:
        &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierhandwashingevent?language=objc)
    pub static HKCategoryTypeIdentifierHandwashingEvent: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiertoothbrushingevent?language=objc)
    pub static HKCategoryTypeIdentifierToothbrushingEvent: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierbleedingafterpregnancy?language=objc)
    pub static HKCategoryTypeIdentifierBleedingAfterPregnancy: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierbleedingduringpregnancy?language=objc)
    pub static HKCategoryTypeIdentifierBleedingDuringPregnancy: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiercervicalmucusquality?language=objc)
    pub static HKCategoryTypeIdentifierCervicalMucusQuality: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiercontraceptive?language=objc)
    pub static HKCategoryTypeIdentifierContraceptive: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierinfrequentmenstrualcycles?language=objc)
    pub static HKCategoryTypeIdentifierInfrequentMenstrualCycles: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierintermenstrualbleeding?language=objc)
    pub static HKCategoryTypeIdentifierIntermenstrualBleeding: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierirregularmenstrualcycles?language=objc)
    pub static HKCategoryTypeIdentifierIrregularMenstrualCycles: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierlactation?language=objc)
    pub static HKCategoryTypeIdentifierLactation: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiermenstrualflow?language=objc)
    pub static HKCategoryTypeIdentifierMenstrualFlow: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierovulationtestresult?language=objc)
    pub static HKCategoryTypeIdentifierOvulationTestResult: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierpersistentintermenstrualbleeding?language=objc)
    pub static HKCategoryTypeIdentifierPersistentIntermenstrualBleeding:
        &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierpregnancy?language=objc)
    pub static HKCategoryTypeIdentifierPregnancy: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierpregnancytestresult?language=objc)
    pub static HKCategoryTypeIdentifierPregnancyTestResult: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierprogesteronetestresult?language=objc)
    pub static HKCategoryTypeIdentifierProgesteroneTestResult: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierprolongedmenstrualperiods?language=objc)
    pub static HKCategoryTypeIdentifierProlongedMenstrualPeriods: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiersexualactivity?language=objc)
    pub static HKCategoryTypeIdentifierSexualActivity: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiersleepapneaevent?language=objc)
    pub static HKCategoryTypeIdentifierSleepApneaEvent: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiersleepanalysis?language=objc)
    pub static HKCategoryTypeIdentifierSleepAnalysis: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierabdominalcramps?language=objc)
    pub static HKCategoryTypeIdentifierAbdominalCramps: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifieracne?language=objc)
    pub static HKCategoryTypeIdentifierAcne: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierappetitechanges?language=objc)
    pub static HKCategoryTypeIdentifierAppetiteChanges: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierbladderincontinence?language=objc)
    pub static HKCategoryTypeIdentifierBladderIncontinence: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierbloating?language=objc)
    pub static HKCategoryTypeIdentifierBloating: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierbreastpain?language=objc)
    pub static HKCategoryTypeIdentifierBreastPain: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierchesttightnessorpain?language=objc)
    pub static HKCategoryTypeIdentifierChestTightnessOrPain: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierchills?language=objc)
    pub static HKCategoryTypeIdentifierChills: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierconstipation?language=objc)
    pub static HKCategoryTypeIdentifierConstipation: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiercoughing?language=objc)
    pub static HKCategoryTypeIdentifierCoughing: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierdiarrhea?language=objc)
    pub static HKCategoryTypeIdentifierDiarrhea: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierdizziness?language=objc)
    pub static HKCategoryTypeIdentifierDizziness: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierdryskin?language=objc)
    pub static HKCategoryTypeIdentifierDrySkin: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierfainting?language=objc)
    pub static HKCategoryTypeIdentifierFainting: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierfatigue?language=objc)
    pub static HKCategoryTypeIdentifierFatigue: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierfever?language=objc)
    pub static HKCategoryTypeIdentifierFever: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiergeneralizedbodyache?language=objc)
    pub static HKCategoryTypeIdentifierGeneralizedBodyAche: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierhairloss?language=objc)
    pub static HKCategoryTypeIdentifierHairLoss: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierheadache?language=objc)
    pub static HKCategoryTypeIdentifierHeadache: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierheartburn?language=objc)
    pub static HKCategoryTypeIdentifierHeartburn: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierhotflashes?language=objc)
    pub static HKCategoryTypeIdentifierHotFlashes: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierlossofsmell?language=objc)
    pub static HKCategoryTypeIdentifierLossOfSmell: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierlossoftaste?language=objc)
    pub static HKCategoryTypeIdentifierLossOfTaste: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierlowerbackpain?language=objc)
    pub static HKCategoryTypeIdentifierLowerBackPain: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiermemorylapse?language=objc)
    pub static HKCategoryTypeIdentifierMemoryLapse: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiermoodchanges?language=objc)
    pub static HKCategoryTypeIdentifierMoodChanges: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiernausea?language=objc)
    pub static HKCategoryTypeIdentifierNausea: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiernightsweats?language=objc)
    pub static HKCategoryTypeIdentifierNightSweats: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierpelvicpain?language=objc)
    pub static HKCategoryTypeIdentifierPelvicPain: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierrapidpoundingorflutteringheartbeat?language=objc)
    pub static HKCategoryTypeIdentifierRapidPoundingOrFlutteringHeartbeat:
        &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierrunnynose?language=objc)
    pub static HKCategoryTypeIdentifierRunnyNose: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiershortnessofbreath?language=objc)
    pub static HKCategoryTypeIdentifierShortnessOfBreath: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiersinuscongestion?language=objc)
    pub static HKCategoryTypeIdentifierSinusCongestion: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierskippedheartbeat?language=objc)
    pub static HKCategoryTypeIdentifierSkippedHeartbeat: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiersleepchanges?language=objc)
    pub static HKCategoryTypeIdentifierSleepChanges: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiersorethroat?language=objc)
    pub static HKCategoryTypeIdentifierSoreThroat: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiervaginaldryness?language=objc)
    pub static HKCategoryTypeIdentifierVaginalDryness: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifiervomiting?language=objc)
    pub static HKCategoryTypeIdentifierVomiting: &'static HKCategoryTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifierwheezing?language=objc)
    pub static HKCategoryTypeIdentifierWheezing: &'static HKCategoryTypeIdentifier;
}

/// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcharacteristictypeidentifier?language=objc)
// NS_TYPED_ENUM
pub type HKCharacteristicTypeIdentifier = NSString;

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcharacteristictypeidentifieractivitymovemode?language=objc)
    pub static HKCharacteristicTypeIdentifierActivityMoveMode:
        &'static HKCharacteristicTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcharacteristictypeidentifierbiologicalsex?language=objc)
    pub static HKCharacteristicTypeIdentifierBiologicalSex: &'static HKCharacteristicTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcharacteristictypeidentifierbloodtype?language=objc)
    pub static HKCharacteristicTypeIdentifierBloodType: &'static HKCharacteristicTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcharacteristictypeidentifierdateofbirth?language=objc)
    pub static HKCharacteristicTypeIdentifierDateOfBirth: &'static HKCharacteristicTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcharacteristictypeidentifierfitzpatrickskintype?language=objc)
    pub static HKCharacteristicTypeIdentifierFitzpatrickSkinType:
        &'static HKCharacteristicTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcharacteristictypeidentifierwheelchairuse?language=objc)
    pub static HKCharacteristicTypeIdentifierWheelchairUse: &'static HKCharacteristicTypeIdentifier;
}

/// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcorrelationtypeidentifier?language=objc)
// NS_TYPED_ENUM
pub type HKCorrelationTypeIdentifier = NSString;

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcorrelationtypeidentifierbloodpressure?language=objc)
    pub static HKCorrelationTypeIdentifierBloodPressure: &'static HKCorrelationTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcorrelationtypeidentifierfood?language=objc)
    pub static HKCorrelationTypeIdentifierFood: &'static HKCorrelationTypeIdentifier;
}

/// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkdocumenttypeidentifier?language=objc)
// NS_TYPED_ENUM
pub type HKDocumentTypeIdentifier = NSString;

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkdocumenttypeidentifiercda?language=objc)
    pub static HKDocumentTypeIdentifierCDA: &'static HKDocumentTypeIdentifier;
}

/// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkscoredassessmenttypeidentifier?language=objc)
// NS_TYPED_ENUM
pub type HKScoredAssessmentTypeIdentifier = NSString;

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkscoredassessmenttypeidentifiergad7?language=objc)
    pub static HKScoredAssessmentTypeIdentifierGAD7: &'static HKScoredAssessmentTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkscoredassessmenttypeidentifierphq9?language=objc)
    pub static HKScoredAssessmentTypeIdentifierPHQ9: &'static HKScoredAssessmentTypeIdentifier;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkworkouttypeidentifier?language=objc)
    pub static HKWorkoutTypeIdentifier: &'static NSString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkworkoutroutetypeidentifier?language=objc)
    pub static HKWorkoutRouteTypeIdentifier: &'static NSString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkdatatypeidentifierheartbeatseries?language=objc)
    pub static HKDataTypeIdentifierHeartbeatSeries: &'static NSString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkvisionprescriptiontypeidentifier?language=objc)
    pub static HKVisionPrescriptionTypeIdentifier: &'static NSString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkdatatypeidentifierstateofmind?language=objc)
    pub static HKDataTypeIdentifierStateOfMind: &'static NSString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkmedicationdoseeventtypeidentifiermedicationdoseevent?language=objc)
    pub static HKMedicationDoseEventTypeIdentifierMedicationDoseEvent: &'static NSString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkdatatypeidentifieruserannotatedmedicationconcept?language=objc)
    pub static HKDataTypeIdentifierUserAnnotatedMedicationConcept: &'static NSString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifieraudioexposureevent?language=objc)
    #[deprecated]
    pub static HKCategoryTypeIdentifierAudioExposureEvent: &'static HKCategoryTypeIdentifier;
}