blob: b57e6f6ff52e0789030683dfd316c8ca1eefaa93 (
plain) (
blame)
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// PersonRelationship undocumented
type PersonRelationship string
const (
// PersonRelationshipVManager undocumented
PersonRelationshipVManager PersonRelationship = "manager"
// PersonRelationshipVColleague undocumented
PersonRelationshipVColleague PersonRelationship = "colleague"
// PersonRelationshipVDirectReport undocumented
PersonRelationshipVDirectReport PersonRelationship = "directReport"
// PersonRelationshipVDotLineReport undocumented
PersonRelationshipVDotLineReport PersonRelationship = "dotLineReport"
// PersonRelationshipVAssistant undocumented
PersonRelationshipVAssistant PersonRelationship = "assistant"
// PersonRelationshipVDotLineManager undocumented
PersonRelationshipVDotLineManager PersonRelationship = "dotLineManager"
// PersonRelationshipVAlternateContact undocumented
PersonRelationshipVAlternateContact PersonRelationship = "alternateContact"
// PersonRelationshipVFriend undocumented
PersonRelationshipVFriend PersonRelationship = "friend"
// PersonRelationshipVSpouse undocumented
PersonRelationshipVSpouse PersonRelationship = "spouse"
// PersonRelationshipVSibling undocumented
PersonRelationshipVSibling PersonRelationship = "sibling"
// PersonRelationshipVChild undocumented
PersonRelationshipVChild PersonRelationship = "child"
// PersonRelationshipVParent undocumented
PersonRelationshipVParent PersonRelationship = "parent"
// PersonRelationshipVSponsor undocumented
PersonRelationshipVSponsor PersonRelationship = "sponsor"
// PersonRelationshipVEmergencyContact undocumented
PersonRelationshipVEmergencyContact PersonRelationship = "emergencyContact"
// PersonRelationshipVOther undocumented
PersonRelationshipVOther PersonRelationship = "other"
// PersonRelationshipVUnknownFutureValue undocumented
PersonRelationshipVUnknownFutureValue PersonRelationship = "unknownFutureValue"
)
var (
// PersonRelationshipPManager is a pointer to PersonRelationshipVManager
PersonRelationshipPManager = &_PersonRelationshipPManager
// PersonRelationshipPColleague is a pointer to PersonRelationshipVColleague
PersonRelationshipPColleague = &_PersonRelationshipPColleague
// PersonRelationshipPDirectReport is a pointer to PersonRelationshipVDirectReport
PersonRelationshipPDirectReport = &_PersonRelationshipPDirectReport
// PersonRelationshipPDotLineReport is a pointer to PersonRelationshipVDotLineReport
PersonRelationshipPDotLineReport = &_PersonRelationshipPDotLineReport
// PersonRelationshipPAssistant is a pointer to PersonRelationshipVAssistant
PersonRelationshipPAssistant = &_PersonRelationshipPAssistant
// PersonRelationshipPDotLineManager is a pointer to PersonRelationshipVDotLineManager
PersonRelationshipPDotLineManager = &_PersonRelationshipPDotLineManager
// PersonRelationshipPAlternateContact is a pointer to PersonRelationshipVAlternateContact
PersonRelationshipPAlternateContact = &_PersonRelationshipPAlternateContact
// PersonRelationshipPFriend is a pointer to PersonRelationshipVFriend
PersonRelationshipPFriend = &_PersonRelationshipPFriend
// PersonRelationshipPSpouse is a pointer to PersonRelationshipVSpouse
PersonRelationshipPSpouse = &_PersonRelationshipPSpouse
// PersonRelationshipPSibling is a pointer to PersonRelationshipVSibling
PersonRelationshipPSibling = &_PersonRelationshipPSibling
// PersonRelationshipPChild is a pointer to PersonRelationshipVChild
PersonRelationshipPChild = &_PersonRelationshipPChild
// PersonRelationshipPParent is a pointer to PersonRelationshipVParent
PersonRelationshipPParent = &_PersonRelationshipPParent
// PersonRelationshipPSponsor is a pointer to PersonRelationshipVSponsor
PersonRelationshipPSponsor = &_PersonRelationshipPSponsor
// PersonRelationshipPEmergencyContact is a pointer to PersonRelationshipVEmergencyContact
PersonRelationshipPEmergencyContact = &_PersonRelationshipPEmergencyContact
// PersonRelationshipPOther is a pointer to PersonRelationshipVOther
PersonRelationshipPOther = &_PersonRelationshipPOther
// PersonRelationshipPUnknownFutureValue is a pointer to PersonRelationshipVUnknownFutureValue
PersonRelationshipPUnknownFutureValue = &_PersonRelationshipPUnknownFutureValue
)
var (
_PersonRelationshipPManager = PersonRelationshipVManager
_PersonRelationshipPColleague = PersonRelationshipVColleague
_PersonRelationshipPDirectReport = PersonRelationshipVDirectReport
_PersonRelationshipPDotLineReport = PersonRelationshipVDotLineReport
_PersonRelationshipPAssistant = PersonRelationshipVAssistant
_PersonRelationshipPDotLineManager = PersonRelationshipVDotLineManager
_PersonRelationshipPAlternateContact = PersonRelationshipVAlternateContact
_PersonRelationshipPFriend = PersonRelationshipVFriend
_PersonRelationshipPSpouse = PersonRelationshipVSpouse
_PersonRelationshipPSibling = PersonRelationshipVSibling
_PersonRelationshipPChild = PersonRelationshipVChild
_PersonRelationshipPParent = PersonRelationshipVParent
_PersonRelationshipPSponsor = PersonRelationshipVSponsor
_PersonRelationshipPEmergencyContact = PersonRelationshipVEmergencyContact
_PersonRelationshipPOther = PersonRelationshipVOther
_PersonRelationshipPUnknownFutureValue = PersonRelationshipVUnknownFutureValue
)
|