objc2_contacts/generated/CNContactRelation.rs
1//! This file has been automatically generated by `objc2`'s `header-translator`.
2//! DO NOT EDIT
3use core::ptr::NonNull;
4use objc2::__framework_prelude::*;
5use objc2_foundation::*;
6
7use crate::*;
8
9extern_class!(
10 /// An immutable value object representing a related contact.
11 ///
12 ///
13 /// CNContactRelation is thread safe.
14 ///
15 /// See also [Apple's documentation](https://developer.apple.com/documentation/contacts/cncontactrelation?language=objc)
16 #[unsafe(super(NSObject))]
17 #[derive(Debug, PartialEq, Eq, Hash)]
18 pub struct CNContactRelation;
19);
20
21extern_conformance!(
22 unsafe impl NSCoding for CNContactRelation {}
23);
24
25extern_conformance!(
26 unsafe impl NSCopying for CNContactRelation {}
27);
28
29unsafe impl CopyingHelper for CNContactRelation {
30 type Result = Self;
31}
32
33extern_conformance!(
34 unsafe impl NSObjectProtocol for CNContactRelation {}
35);
36
37extern_conformance!(
38 unsafe impl NSSecureCoding for CNContactRelation {}
39);
40
41impl CNContactRelation {
42 extern_methods!(
43 #[unsafe(method(contactRelationWithName:))]
44 #[unsafe(method_family = none)]
45 pub unsafe fn contactRelationWithName(name: &NSString) -> Retained<Self>;
46
47 #[unsafe(method(initWithName:))]
48 #[unsafe(method_family = init)]
49 pub unsafe fn initWithName(this: Allocated<Self>, name: &NSString) -> Retained<Self>;
50
51 #[unsafe(method(name))]
52 #[unsafe(method_family = none)]
53 pub unsafe fn name(&self) -> Retained<NSString>;
54 );
55}
56
57/// Methods declared on superclass `NSObject`.
58impl CNContactRelation {
59 extern_methods!(
60 #[unsafe(method(init))]
61 #[unsafe(method_family = init)]
62 pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
63
64 #[unsafe(method(new))]
65 #[unsafe(method_family = new)]
66 pub unsafe fn new() -> Retained<Self>;
67 );
68}
69
70extern "C" {
71 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationassistant?language=objc)
72 pub static CNLabelContactRelationAssistant: &'static NSString;
73}
74
75extern "C" {
76 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationmanager?language=objc)
77 pub static CNLabelContactRelationManager: &'static NSString;
78}
79
80extern "C" {
81 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcolleague?language=objc)
82 pub static CNLabelContactRelationColleague: &'static NSString;
83}
84
85extern "C" {
86 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationteacher?language=objc)
87 pub static CNLabelContactRelationTeacher: &'static NSString;
88}
89
90extern "C" {
91 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsibling?language=objc)
92 pub static CNLabelContactRelationSibling: &'static NSString;
93}
94
95extern "C" {
96 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungersibling?language=objc)
97 pub static CNLabelContactRelationYoungerSibling: &'static NSString;
98}
99
100extern "C" {
101 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldersibling?language=objc)
102 pub static CNLabelContactRelationElderSibling: &'static NSString;
103}
104
105extern "C" {
106 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsister?language=objc)
107 pub static CNLabelContactRelationSister: &'static NSString;
108}
109
110extern "C" {
111 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungersister?language=objc)
112 pub static CNLabelContactRelationYoungerSister: &'static NSString;
113}
114
115extern "C" {
116 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungestsister?language=objc)
117 pub static CNLabelContactRelationYoungestSister: &'static NSString;
118}
119
120extern "C" {
121 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldersister?language=objc)
122 pub static CNLabelContactRelationElderSister: &'static NSString;
123}
124
125extern "C" {
126 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldestsister?language=objc)
127 pub static CNLabelContactRelationEldestSister: &'static NSString;
128}
129
130extern "C" {
131 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrother?language=objc)
132 pub static CNLabelContactRelationBrother: &'static NSString;
133}
134
135extern "C" {
136 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungerbrother?language=objc)
137 pub static CNLabelContactRelationYoungerBrother: &'static NSString;
138}
139
140extern "C" {
141 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungestbrother?language=objc)
142 pub static CNLabelContactRelationYoungestBrother: &'static NSString;
143}
144
145extern "C" {
146 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationelderbrother?language=objc)
147 pub static CNLabelContactRelationElderBrother: &'static NSString;
148}
149
150extern "C" {
151 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldestbrother?language=objc)
152 pub static CNLabelContactRelationEldestBrother: &'static NSString;
153}
154
155extern "C" {
156 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationfriend?language=objc)
157 pub static CNLabelContactRelationFriend: &'static NSString;
158}
159
160extern "C" {
161 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationmalefriend?language=objc)
162 pub static CNLabelContactRelationMaleFriend: &'static NSString;
163}
164
165extern "C" {
166 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationfemalefriend?language=objc)
167 pub static CNLabelContactRelationFemaleFriend: &'static NSString;
168}
169
170extern "C" {
171 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationspouse?language=objc)
172 pub static CNLabelContactRelationSpouse: &'static NSString;
173}
174
175extern "C" {
176 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationwife?language=objc)
177 pub static CNLabelContactRelationWife: &'static NSString;
178}
179
180extern "C" {
181 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationhusband?language=objc)
182 pub static CNLabelContactRelationHusband: &'static NSString;
183}
184
185extern "C" {
186 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationpartner?language=objc)
187 pub static CNLabelContactRelationPartner: &'static NSString;
188}
189
190extern "C" {
191 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationmalepartner?language=objc)
192 pub static CNLabelContactRelationMalePartner: &'static NSString;
193}
194
195extern "C" {
196 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationfemalepartner?language=objc)
197 pub static CNLabelContactRelationFemalePartner: &'static NSString;
198}
199
200extern "C" {
201 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgirlfriendorboyfriend?language=objc)
202 pub static CNLabelContactRelationGirlfriendOrBoyfriend: &'static NSString;
203}
204
205extern "C" {
206 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgirlfriend?language=objc)
207 pub static CNLabelContactRelationGirlfriend: &'static NSString;
208}
209
210extern "C" {
211 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationboyfriend?language=objc)
212 pub static CNLabelContactRelationBoyfriend: &'static NSString;
213}
214
215extern "C" {
216 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparent?language=objc)
217 pub static CNLabelContactRelationParent: &'static NSString;
218}
219
220extern "C" {
221 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationmother?language=objc)
222 pub static CNLabelContactRelationMother: &'static NSString;
223}
224
225extern "C" {
226 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationfather?language=objc)
227 pub static CNLabelContactRelationFather: &'static NSString;
228}
229
230extern "C" {
231 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationchild?language=objc)
232 pub static CNLabelContactRelationChild: &'static NSString;
233}
234
235extern "C" {
236 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationdaughter?language=objc)
237 pub static CNLabelContactRelationDaughter: &'static NSString;
238}
239
240extern "C" {
241 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationson?language=objc)
242 pub static CNLabelContactRelationSon: &'static NSString;
243}
244
245extern "C" {
246 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandparent?language=objc)
247 pub static CNLabelContactRelationGrandparent: &'static NSString;
248}
249
250extern "C" {
251 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandmother?language=objc)
252 pub static CNLabelContactRelationGrandmother: &'static NSString;
253}
254
255extern "C" {
256 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandmothermothersmother?language=objc)
257 pub static CNLabelContactRelationGrandmotherMothersMother: &'static NSString;
258}
259
260extern "C" {
261 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandmotherfathersmother?language=objc)
262 pub static CNLabelContactRelationGrandmotherFathersMother: &'static NSString;
263}
264
265extern "C" {
266 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandfather?language=objc)
267 pub static CNLabelContactRelationGrandfather: &'static NSString;
268}
269
270extern "C" {
271 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandfathermothersfather?language=objc)
272 pub static CNLabelContactRelationGrandfatherMothersFather: &'static NSString;
273}
274
275extern "C" {
276 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandfatherfathersfather?language=objc)
277 pub static CNLabelContactRelationGrandfatherFathersFather: &'static NSString;
278}
279
280extern "C" {
281 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgreatgrandparent?language=objc)
282 pub static CNLabelContactRelationGreatGrandparent: &'static NSString;
283}
284
285extern "C" {
286 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgreatgrandmother?language=objc)
287 pub static CNLabelContactRelationGreatGrandmother: &'static NSString;
288}
289
290extern "C" {
291 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgreatgrandfather?language=objc)
292 pub static CNLabelContactRelationGreatGrandfather: &'static NSString;
293}
294
295extern "C" {
296 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandchild?language=objc)
297 pub static CNLabelContactRelationGrandchild: &'static NSString;
298}
299
300extern "C" {
301 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgranddaughter?language=objc)
302 pub static CNLabelContactRelationGranddaughter: &'static NSString;
303}
304
305extern "C" {
306 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgranddaughterdaughtersdaughter?language=objc)
307 pub static CNLabelContactRelationGranddaughterDaughtersDaughter: &'static NSString;
308}
309
310extern "C" {
311 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgranddaughtersonsdaughter?language=objc)
312 pub static CNLabelContactRelationGranddaughterSonsDaughter: &'static NSString;
313}
314
315extern "C" {
316 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandson?language=objc)
317 pub static CNLabelContactRelationGrandson: &'static NSString;
318}
319
320extern "C" {
321 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandsondaughtersson?language=objc)
322 pub static CNLabelContactRelationGrandsonDaughtersSon: &'static NSString;
323}
324
325extern "C" {
326 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandsonsonsson?language=objc)
327 pub static CNLabelContactRelationGrandsonSonsSon: &'static NSString;
328}
329
330extern "C" {
331 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgreatgrandchild?language=objc)
332 pub static CNLabelContactRelationGreatGrandchild: &'static NSString;
333}
334
335extern "C" {
336 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgreatgranddaughter?language=objc)
337 pub static CNLabelContactRelationGreatGranddaughter: &'static NSString;
338}
339
340extern "C" {
341 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgreatgrandson?language=objc)
342 pub static CNLabelContactRelationGreatGrandson: &'static NSString;
343}
344
345extern "C" {
346 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentinlaw?language=objc)
347 pub static CNLabelContactRelationParentInLaw: &'static NSString;
348}
349
350extern "C" {
351 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationmotherinlaw?language=objc)
352 pub static CNLabelContactRelationMotherInLaw: &'static NSString;
353}
354
355extern "C" {
356 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationmotherinlawwifesmother?language=objc)
357 pub static CNLabelContactRelationMotherInLawWifesMother: &'static NSString;
358}
359
360extern "C" {
361 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationmotherinlawhusbandsmother?language=objc)
362 pub static CNLabelContactRelationMotherInLawHusbandsMother: &'static NSString;
363}
364
365extern "C" {
366 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationfatherinlaw?language=objc)
367 pub static CNLabelContactRelationFatherInLaw: &'static NSString;
368}
369
370extern "C" {
371 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationfatherinlawwifesfather?language=objc)
372 pub static CNLabelContactRelationFatherInLawWifesFather: &'static NSString;
373}
374
375extern "C" {
376 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationfatherinlawhusbandsfather?language=objc)
377 pub static CNLabelContactRelationFatherInLawHusbandsFather: &'static NSString;
378}
379
380extern "C" {
381 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcoparentinlaw?language=objc)
382 pub static CNLabelContactRelationCoParentInLaw: &'static NSString;
383}
384
385extern "C" {
386 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcomotherinlaw?language=objc)
387 pub static CNLabelContactRelationCoMotherInLaw: &'static NSString;
388}
389
390extern "C" {
391 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcofatherinlaw?language=objc)
392 pub static CNLabelContactRelationCoFatherInLaw: &'static NSString;
393}
394
395extern "C" {
396 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsiblinginlaw?language=objc)
397 pub static CNLabelContactRelationSiblingInLaw: &'static NSString;
398}
399
400extern "C" {
401 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungersiblinginlaw?language=objc)
402 pub static CNLabelContactRelationYoungerSiblingInLaw: &'static NSString;
403}
404
405extern "C" {
406 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldersiblinginlaw?language=objc)
407 pub static CNLabelContactRelationElderSiblingInLaw: &'static NSString;
408}
409
410extern "C" {
411 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsisterinlaw?language=objc)
412 pub static CNLabelContactRelationSisterInLaw: &'static NSString;
413}
414
415extern "C" {
416 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungersisterinlaw?language=objc)
417 pub static CNLabelContactRelationYoungerSisterInLaw: &'static NSString;
418}
419
420extern "C" {
421 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldersisterinlaw?language=objc)
422 pub static CNLabelContactRelationElderSisterInLaw: &'static NSString;
423}
424
425extern "C" {
426 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsisterinlawspousessister?language=objc)
427 pub static CNLabelContactRelationSisterInLawSpousesSister: &'static NSString;
428}
429
430extern "C" {
431 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsisterinlawwifessister?language=objc)
432 pub static CNLabelContactRelationSisterInLawWifesSister: &'static NSString;
433}
434
435extern "C" {
436 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsisterinlawhusbandssister?language=objc)
437 pub static CNLabelContactRelationSisterInLawHusbandsSister: &'static NSString;
438}
439
440extern "C" {
441 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsisterinlawbrotherswife?language=objc)
442 pub static CNLabelContactRelationSisterInLawBrothersWife: &'static NSString;
443}
444
445extern "C" {
446 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsisterinlawyoungerbrotherswife?language=objc)
447 pub static CNLabelContactRelationSisterInLawYoungerBrothersWife: &'static NSString;
448}
449
450extern "C" {
451 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsisterinlawelderbrotherswife?language=objc)
452 pub static CNLabelContactRelationSisterInLawElderBrothersWife: &'static NSString;
453}
454
455extern "C" {
456 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrotherinlaw?language=objc)
457 pub static CNLabelContactRelationBrotherInLaw: &'static NSString;
458}
459
460extern "C" {
461 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungerbrotherinlaw?language=objc)
462 pub static CNLabelContactRelationYoungerBrotherInLaw: &'static NSString;
463}
464
465extern "C" {
466 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationelderbrotherinlaw?language=objc)
467 pub static CNLabelContactRelationElderBrotherInLaw: &'static NSString;
468}
469
470extern "C" {
471 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrotherinlawspousesbrother?language=objc)
472 pub static CNLabelContactRelationBrotherInLawSpousesBrother: &'static NSString;
473}
474
475extern "C" {
476 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrotherinlawhusbandsbrother?language=objc)
477 pub static CNLabelContactRelationBrotherInLawHusbandsBrother: &'static NSString;
478}
479
480extern "C" {
481 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrotherinlawwifesbrother?language=objc)
482 pub static CNLabelContactRelationBrotherInLawWifesBrother: &'static NSString;
483}
484
485extern "C" {
486 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrotherinlawsistershusband?language=objc)
487 pub static CNLabelContactRelationBrotherInLawSistersHusband: &'static NSString;
488}
489
490extern "C" {
491 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrotherinlawyoungersistershusband?language=objc)
492 pub static CNLabelContactRelationBrotherInLawYoungerSistersHusband: &'static NSString;
493}
494
495extern "C" {
496 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrotherinlaweldersistershusband?language=objc)
497 pub static CNLabelContactRelationBrotherInLawElderSistersHusband: &'static NSString;
498}
499
500extern "C" {
501 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsisterinlawwifesbrotherswife?language=objc)
502 pub static CNLabelContactRelationSisterInLawWifesBrothersWife: &'static NSString;
503}
504
505extern "C" {
506 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsisterinlawhusbandsbrotherswife?language=objc)
507 pub static CNLabelContactRelationSisterInLawHusbandsBrothersWife: &'static NSString;
508}
509
510extern "C" {
511 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrotherinlawwifessistershusband?language=objc)
512 pub static CNLabelContactRelationBrotherInLawWifesSistersHusband: &'static NSString;
513}
514
515extern "C" {
516 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationbrotherinlawhusbandssistershusband?language=objc)
517 pub static CNLabelContactRelationBrotherInLawHusbandsSistersHusband: &'static NSString;
518}
519
520extern "C" {
521 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcosiblinginlaw?language=objc)
522 pub static CNLabelContactRelationCoSiblingInLaw: &'static NSString;
523}
524
525extern "C" {
526 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcosisterinlaw?language=objc)
527 pub static CNLabelContactRelationCoSisterInLaw: &'static NSString;
528}
529
530extern "C" {
531 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcobrotherinlaw?language=objc)
532 pub static CNLabelContactRelationCoBrotherInLaw: &'static NSString;
533}
534
535extern "C" {
536 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationchildinlaw?language=objc)
537 pub static CNLabelContactRelationChildInLaw: &'static NSString;
538}
539
540extern "C" {
541 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationdaughterinlaw?language=objc)
542 pub static CNLabelContactRelationDaughterInLaw: &'static NSString;
543}
544
545extern "C" {
546 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsoninlaw?language=objc)
547 pub static CNLabelContactRelationSonInLaw: &'static NSString;
548}
549
550extern "C" {
551 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousin?language=objc)
552 pub static CNLabelContactRelationCousin: &'static NSString;
553}
554
555extern "C" {
556 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousin?language=objc)
557 pub static CNLabelContactRelationYoungerCousin: &'static NSString;
558}
559
560extern "C" {
561 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousin?language=objc)
562 pub static CNLabelContactRelationElderCousin: &'static NSString;
563}
564
565extern "C" {
566 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationmalecousin?language=objc)
567 pub static CNLabelContactRelationMaleCousin: &'static NSString;
568}
569
570extern "C" {
571 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationfemalecousin?language=objc)
572 pub static CNLabelContactRelationFemaleCousin: &'static NSString;
573}
574
575extern "C" {
576 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinparentssiblingschild?language=objc)
577 pub static CNLabelContactRelationCousinParentsSiblingsChild: &'static NSString;
578}
579
580extern "C" {
581 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinparentssiblingsson?language=objc)
582 pub static CNLabelContactRelationCousinParentsSiblingsSon: &'static NSString;
583}
584
585extern "C" {
586 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinparentssiblingsson?language=objc)
587 pub static CNLabelContactRelationYoungerCousinParentsSiblingsSon: &'static NSString;
588}
589
590extern "C" {
591 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinparentssiblingsson?language=objc)
592 pub static CNLabelContactRelationElderCousinParentsSiblingsSon: &'static NSString;
593}
594
595extern "C" {
596 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinparentssiblingsdaughter?language=objc)
597 pub static CNLabelContactRelationCousinParentsSiblingsDaughter: &'static NSString;
598}
599
600extern "C" {
601 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinparentssiblingsdaughter?language=objc)
602 pub static CNLabelContactRelationYoungerCousinParentsSiblingsDaughter: &'static NSString;
603}
604
605extern "C" {
606 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinparentssiblingsdaughter?language=objc)
607 pub static CNLabelContactRelationElderCousinParentsSiblingsDaughter: &'static NSString;
608}
609
610extern "C" {
611 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinmotherssistersdaughter?language=objc)
612 pub static CNLabelContactRelationCousinMothersSistersDaughter: &'static NSString;
613}
614
615extern "C" {
616 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinmotherssistersdaughter?language=objc)
617 pub static CNLabelContactRelationYoungerCousinMothersSistersDaughter: &'static NSString;
618}
619
620extern "C" {
621 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinmotherssistersdaughter?language=objc)
622 pub static CNLabelContactRelationElderCousinMothersSistersDaughter: &'static NSString;
623}
624
625extern "C" {
626 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinmotherssistersson?language=objc)
627 pub static CNLabelContactRelationCousinMothersSistersSon: &'static NSString;
628}
629
630extern "C" {
631 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinmotherssistersson?language=objc)
632 pub static CNLabelContactRelationYoungerCousinMothersSistersSon: &'static NSString;
633}
634
635extern "C" {
636 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinmotherssistersson?language=objc)
637 pub static CNLabelContactRelationElderCousinMothersSistersSon: &'static NSString;
638}
639
640extern "C" {
641 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinmothersbrothersdaughter?language=objc)
642 pub static CNLabelContactRelationCousinMothersBrothersDaughter: &'static NSString;
643}
644
645extern "C" {
646 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinmothersbrothersdaughter?language=objc)
647 pub static CNLabelContactRelationYoungerCousinMothersBrothersDaughter: &'static NSString;
648}
649
650extern "C" {
651 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinmothersbrothersdaughter?language=objc)
652 pub static CNLabelContactRelationElderCousinMothersBrothersDaughter: &'static NSString;
653}
654
655extern "C" {
656 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinmothersbrothersson?language=objc)
657 pub static CNLabelContactRelationCousinMothersBrothersSon: &'static NSString;
658}
659
660extern "C" {
661 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinmothersbrothersson?language=objc)
662 pub static CNLabelContactRelationYoungerCousinMothersBrothersSon: &'static NSString;
663}
664
665extern "C" {
666 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinmothersbrothersson?language=objc)
667 pub static CNLabelContactRelationElderCousinMothersBrothersSon: &'static NSString;
668}
669
670extern "C" {
671 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinfatherssistersdaughter?language=objc)
672 pub static CNLabelContactRelationCousinFathersSistersDaughter: &'static NSString;
673}
674
675extern "C" {
676 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinfatherssistersdaughter?language=objc)
677 pub static CNLabelContactRelationYoungerCousinFathersSistersDaughter: &'static NSString;
678}
679
680extern "C" {
681 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinfatherssistersdaughter?language=objc)
682 pub static CNLabelContactRelationElderCousinFathersSistersDaughter: &'static NSString;
683}
684
685extern "C" {
686 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinfatherssistersson?language=objc)
687 pub static CNLabelContactRelationCousinFathersSistersSon: &'static NSString;
688}
689
690extern "C" {
691 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinfatherssistersson?language=objc)
692 pub static CNLabelContactRelationYoungerCousinFathersSistersSon: &'static NSString;
693}
694
695extern "C" {
696 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinfatherssistersson?language=objc)
697 pub static CNLabelContactRelationElderCousinFathersSistersSon: &'static NSString;
698}
699
700extern "C" {
701 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinfathersbrothersdaughter?language=objc)
702 pub static CNLabelContactRelationCousinFathersBrothersDaughter: &'static NSString;
703}
704
705extern "C" {
706 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinfathersbrothersdaughter?language=objc)
707 pub static CNLabelContactRelationYoungerCousinFathersBrothersDaughter: &'static NSString;
708}
709
710extern "C" {
711 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinfathersbrothersdaughter?language=objc)
712 pub static CNLabelContactRelationElderCousinFathersBrothersDaughter: &'static NSString;
713}
714
715extern "C" {
716 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinfathersbrothersson?language=objc)
717 pub static CNLabelContactRelationCousinFathersBrothersSon: &'static NSString;
718}
719
720extern "C" {
721 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinfathersbrothersson?language=objc)
722 pub static CNLabelContactRelationYoungerCousinFathersBrothersSon: &'static NSString;
723}
724
725extern "C" {
726 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinfathersbrothersson?language=objc)
727 pub static CNLabelContactRelationElderCousinFathersBrothersSon: &'static NSString;
728}
729
730extern "C" {
731 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousingrandparentssiblingschild?language=objc)
732 pub static CNLabelContactRelationCousinGrandparentsSiblingsChild: &'static NSString;
733}
734
735extern "C" {
736 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousingrandparentssiblingsdaughter?language=objc)
737 pub static CNLabelContactRelationCousinGrandparentsSiblingsDaughter: &'static NSString;
738}
739
740extern "C" {
741 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousingrandparentssiblingsson?language=objc)
742 pub static CNLabelContactRelationCousinGrandparentsSiblingsSon: &'static NSString;
743}
744
745extern "C" {
746 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinmotherssiblingssonorfatherssistersson?language=objc)
747 pub static CNLabelContactRelationYoungerCousinMothersSiblingsSonOrFathersSistersSon:
748 &'static NSString;
749}
750
751extern "C" {
752 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinmotherssiblingssonorfatherssistersson?language=objc)
753 pub static CNLabelContactRelationElderCousinMothersSiblingsSonOrFathersSistersSon:
754 &'static NSString;
755}
756
757extern "C" {
758 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationyoungercousinmotherssiblingsdaughterorfatherssistersdaughter?language=objc)
759 pub static CNLabelContactRelationYoungerCousinMothersSiblingsDaughterOrFathersSistersDaughter:
760 &'static NSString;
761}
762
763extern "C" {
764 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationeldercousinmotherssiblingsdaughterorfatherssistersdaughter?language=objc)
765 pub static CNLabelContactRelationElderCousinMothersSiblingsDaughterOrFathersSistersDaughter:
766 &'static NSString;
767}
768
769extern "C" {
770 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentssibling?language=objc)
771 pub static CNLabelContactRelationParentsSibling: &'static NSString;
772}
773
774extern "C" {
775 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentsyoungersibling?language=objc)
776 pub static CNLabelContactRelationParentsYoungerSibling: &'static NSString;
777}
778
779extern "C" {
780 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentseldersibling?language=objc)
781 pub static CNLabelContactRelationParentsElderSibling: &'static NSString;
782}
783
784extern "C" {
785 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentssiblingmotherssibling?language=objc)
786 pub static CNLabelContactRelationParentsSiblingMothersSibling: &'static NSString;
787}
788
789extern "C" {
790 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentssiblingmothersyoungersibling?language=objc)
791 pub static CNLabelContactRelationParentsSiblingMothersYoungerSibling: &'static NSString;
792}
793
794extern "C" {
795 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentssiblingmotherseldersibling?language=objc)
796 pub static CNLabelContactRelationParentsSiblingMothersElderSibling: &'static NSString;
797}
798
799extern "C" {
800 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentssiblingfatherssibling?language=objc)
801 pub static CNLabelContactRelationParentsSiblingFathersSibling: &'static NSString;
802}
803
804extern "C" {
805 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentssiblingfathersyoungersibling?language=objc)
806 pub static CNLabelContactRelationParentsSiblingFathersYoungerSibling: &'static NSString;
807}
808
809extern "C" {
810 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationparentssiblingfatherseldersibling?language=objc)
811 pub static CNLabelContactRelationParentsSiblingFathersElderSibling: &'static NSString;
812}
813
814extern "C" {
815 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationaunt?language=objc)
816 pub static CNLabelContactRelationAunt: &'static NSString;
817}
818
819extern "C" {
820 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntparentssister?language=objc)
821 pub static CNLabelContactRelationAuntParentsSister: &'static NSString;
822}
823
824extern "C" {
825 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntparentsyoungersister?language=objc)
826 pub static CNLabelContactRelationAuntParentsYoungerSister: &'static NSString;
827}
828
829extern "C" {
830 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntparentseldersister?language=objc)
831 pub static CNLabelContactRelationAuntParentsElderSister: &'static NSString;
832}
833
834extern "C" {
835 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntfatherssister?language=objc)
836 pub static CNLabelContactRelationAuntFathersSister: &'static NSString;
837}
838
839extern "C" {
840 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntfathersyoungersister?language=objc)
841 pub static CNLabelContactRelationAuntFathersYoungerSister: &'static NSString;
842}
843
844extern "C" {
845 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntfatherseldersister?language=objc)
846 pub static CNLabelContactRelationAuntFathersElderSister: &'static NSString;
847}
848
849extern "C" {
850 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntfathersbrotherswife?language=objc)
851 pub static CNLabelContactRelationAuntFathersBrothersWife: &'static NSString;
852}
853
854extern "C" {
855 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntfathersyoungerbrotherswife?language=objc)
856 pub static CNLabelContactRelationAuntFathersYoungerBrothersWife: &'static NSString;
857}
858
859extern "C" {
860 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntfatherselderbrotherswife?language=objc)
861 pub static CNLabelContactRelationAuntFathersElderBrothersWife: &'static NSString;
862}
863
864extern "C" {
865 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntmotherssister?language=objc)
866 pub static CNLabelContactRelationAuntMothersSister: &'static NSString;
867}
868
869extern "C" {
870 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntmothersyoungersister?language=objc)
871 pub static CNLabelContactRelationAuntMothersYoungerSister: &'static NSString;
872}
873
874extern "C" {
875 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntmotherseldersister?language=objc)
876 pub static CNLabelContactRelationAuntMothersElderSister: &'static NSString;
877}
878
879extern "C" {
880 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationauntmothersbrotherswife?language=objc)
881 pub static CNLabelContactRelationAuntMothersBrothersWife: &'static NSString;
882}
883
884extern "C" {
885 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandaunt?language=objc)
886 pub static CNLabelContactRelationGrandaunt: &'static NSString;
887}
888
889extern "C" {
890 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationuncle?language=objc)
891 pub static CNLabelContactRelationUncle: &'static NSString;
892}
893
894extern "C" {
895 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationuncleparentsbrother?language=objc)
896 pub static CNLabelContactRelationUncleParentsBrother: &'static NSString;
897}
898
899extern "C" {
900 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationuncleparentsyoungerbrother?language=objc)
901 pub static CNLabelContactRelationUncleParentsYoungerBrother: &'static NSString;
902}
903
904extern "C" {
905 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationuncleparentselderbrother?language=objc)
906 pub static CNLabelContactRelationUncleParentsElderBrother: &'static NSString;
907}
908
909extern "C" {
910 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclemothersbrother?language=objc)
911 pub static CNLabelContactRelationUncleMothersBrother: &'static NSString;
912}
913
914extern "C" {
915 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclemothersyoungerbrother?language=objc)
916 pub static CNLabelContactRelationUncleMothersYoungerBrother: &'static NSString;
917}
918
919extern "C" {
920 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclemotherselderbrother?language=objc)
921 pub static CNLabelContactRelationUncleMothersElderBrother: &'static NSString;
922}
923
924extern "C" {
925 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclemotherssistershusband?language=objc)
926 pub static CNLabelContactRelationUncleMothersSistersHusband: &'static NSString;
927}
928
929extern "C" {
930 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclefathersbrother?language=objc)
931 pub static CNLabelContactRelationUncleFathersBrother: &'static NSString;
932}
933
934extern "C" {
935 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclefathersyoungerbrother?language=objc)
936 pub static CNLabelContactRelationUncleFathersYoungerBrother: &'static NSString;
937}
938
939extern "C" {
940 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclefatherselderbrother?language=objc)
941 pub static CNLabelContactRelationUncleFathersElderBrother: &'static NSString;
942}
943
944extern "C" {
945 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclefatherssistershusband?language=objc)
946 pub static CNLabelContactRelationUncleFathersSistersHusband: &'static NSString;
947}
948
949extern "C" {
950 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclefathersyoungersistershusband?language=objc)
951 pub static CNLabelContactRelationUncleFathersYoungerSistersHusband: &'static NSString;
952}
953
954extern "C" {
955 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationunclefatherseldersistershusband?language=objc)
956 pub static CNLabelContactRelationUncleFathersElderSistersHusband: &'static NSString;
957}
958
959extern "C" {
960 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgranduncle?language=objc)
961 pub static CNLabelContactRelationGranduncle: &'static NSString;
962}
963
964extern "C" {
965 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsiblingschild?language=objc)
966 pub static CNLabelContactRelationSiblingsChild: &'static NSString;
967}
968
969extern "C" {
970 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationniece?language=objc)
971 pub static CNLabelContactRelationNiece: &'static NSString;
972}
973
974extern "C" {
975 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationniecesistersdaughter?language=objc)
976 pub static CNLabelContactRelationNieceSistersDaughter: &'static NSString;
977}
978
979extern "C" {
980 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationniecebrothersdaughter?language=objc)
981 pub static CNLabelContactRelationNieceBrothersDaughter: &'static NSString;
982}
983
984extern "C" {
985 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationniecesistersdaughterorwifessiblingsdaughter?language=objc)
986 pub static CNLabelContactRelationNieceSistersDaughterOrWifesSiblingsDaughter: &'static NSString;
987}
988
989extern "C" {
990 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationniecebrothersdaughterorhusbandssiblingsdaughter?language=objc)
991 pub static CNLabelContactRelationNieceBrothersDaughterOrHusbandsSiblingsDaughter:
992 &'static NSString;
993}
994
995extern "C" {
996 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationnephew?language=objc)
997 pub static CNLabelContactRelationNephew: &'static NSString;
998}
999
1000extern "C" {
1001 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationnephewsistersson?language=objc)
1002 pub static CNLabelContactRelationNephewSistersSon: &'static NSString;
1003}
1004
1005extern "C" {
1006 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationnephewbrothersson?language=objc)
1007 pub static CNLabelContactRelationNephewBrothersSon: &'static NSString;
1008}
1009
1010extern "C" {
1011 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationnephewbrotherssonorhusbandssiblingsson?language=objc)
1012 pub static CNLabelContactRelationNephewBrothersSonOrHusbandsSiblingsSon: &'static NSString;
1013}
1014
1015extern "C" {
1016 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationnephewsisterssonorwifessiblingsson?language=objc)
1017 pub static CNLabelContactRelationNephewSistersSonOrWifesSiblingsSon: &'static NSString;
1018}
1019
1020extern "C" {
1021 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandniece?language=objc)
1022 pub static CNLabelContactRelationGrandniece: &'static NSString;
1023}
1024
1025extern "C" {
1026 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandniecesistersgranddaughter?language=objc)
1027 pub static CNLabelContactRelationGrandnieceSistersGranddaughter: &'static NSString;
1028}
1029
1030extern "C" {
1031 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandniecebrothersgranddaughter?language=objc)
1032 pub static CNLabelContactRelationGrandnieceBrothersGranddaughter: &'static NSString;
1033}
1034
1035extern "C" {
1036 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandnephew?language=objc)
1037 pub static CNLabelContactRelationGrandnephew: &'static NSString;
1038}
1039
1040extern "C" {
1041 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandnephewsistersgrandson?language=objc)
1042 pub static CNLabelContactRelationGrandnephewSistersGrandson: &'static NSString;
1043}
1044
1045extern "C" {
1046 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandnephewbrothersgrandson?language=objc)
1047 pub static CNLabelContactRelationGrandnephewBrothersGrandson: &'static NSString;
1048}
1049
1050extern "C" {
1051 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationstepparent?language=objc)
1052 pub static CNLabelContactRelationStepparent: &'static NSString;
1053}
1054
1055extern "C" {
1056 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationstepmother?language=objc)
1057 pub static CNLabelContactRelationStepmother: &'static NSString;
1058}
1059
1060extern "C" {
1061 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationstepfather?language=objc)
1062 pub static CNLabelContactRelationStepfather: &'static NSString;
1063}
1064
1065extern "C" {
1066 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationstepchild?language=objc)
1067 pub static CNLabelContactRelationStepchild: &'static NSString;
1068}
1069
1070extern "C" {
1071 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationstepdaughter?language=objc)
1072 pub static CNLabelContactRelationStepdaughter: &'static NSString;
1073}
1074
1075extern "C" {
1076 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationstepson?language=objc)
1077 pub static CNLabelContactRelationStepson: &'static NSString;
1078}
1079
1080extern "C" {
1081 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationstepsister?language=objc)
1082 pub static CNLabelContactRelationStepsister: &'static NSString;
1083}
1084
1085extern "C" {
1086 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationstepbrother?language=objc)
1087 pub static CNLabelContactRelationStepbrother: &'static NSString;
1088}
1089
1090extern "C" {
1091 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationmotherinlaworstepmother?language=objc)
1092 pub static CNLabelContactRelationMotherInLawOrStepmother: &'static NSString;
1093}
1094
1095extern "C" {
1096 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationfatherinlaworstepfather?language=objc)
1097 pub static CNLabelContactRelationFatherInLawOrStepfather: &'static NSString;
1098}
1099
1100extern "C" {
1101 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationdaughterinlaworstepdaughter?language=objc)
1102 pub static CNLabelContactRelationDaughterInLawOrStepdaughter: &'static NSString;
1103}
1104
1105extern "C" {
1106 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsoninlaworstepson?language=objc)
1107 pub static CNLabelContactRelationSonInLawOrStepson: &'static NSString;
1108}
1109
1110extern "C" {
1111 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationcousinorsiblingschild?language=objc)
1112 pub static CNLabelContactRelationCousinOrSiblingsChild: &'static NSString;
1113}
1114
1115extern "C" {
1116 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationnieceorcousin?language=objc)
1117 pub static CNLabelContactRelationNieceOrCousin: &'static NSString;
1118}
1119
1120extern "C" {
1121 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationnepheworcousin?language=objc)
1122 pub static CNLabelContactRelationNephewOrCousin: &'static NSString;
1123}
1124
1125extern "C" {
1126 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandchildorsiblingschild?language=objc)
1127 pub static CNLabelContactRelationGrandchildOrSiblingsChild: &'static NSString;
1128}
1129
1130extern "C" {
1131 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgranddaughterorniece?language=objc)
1132 pub static CNLabelContactRelationGranddaughterOrNiece: &'static NSString;
1133}
1134
1135extern "C" {
1136 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgrandsonornephew?language=objc)
1137 pub static CNLabelContactRelationGrandsonOrNephew: &'static NSString;
1138}
1139
1140extern "C" {
1141 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationgreatgrandchildorsiblingsgrandchild?language=objc)
1142 pub static CNLabelContactRelationGreatGrandchildOrSiblingsGrandchild: &'static NSString;
1143}
1144
1145extern "C" {
1146 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationdaughterinlaworsisterinlaw?language=objc)
1147 pub static CNLabelContactRelationDaughterInLawOrSisterInLaw: &'static NSString;
1148}
1149
1150extern "C" {
1151 /// [Apple's documentation](https://developer.apple.com/documentation/contacts/cnlabelcontactrelationsoninlaworbrotherinlaw?language=objc)
1152 pub static CNLabelContactRelationSonInLawOrBrotherInLaw: &'static NSString;
1153}