diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EnumPerson.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EnumPerson.go | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPerson.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPerson.go new file mode 100644 index 00000000..b57e6f6f --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPerson.go @@ -0,0 +1,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 +) |