diff options
author | Wim <wim@42.be> | 2020-03-08 17:08:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 17:08:18 +0100 |
commit | 9785edd26366be8eb11c2435f50f90a5c8eea7fc (patch) | |
tree | e8e236b5b273e7535c607507cc059f3b957068a1 /vendor/github.com/matterbridge/msgraph.go/beta/PersonRelationshipEnum.go | |
parent | 2a0bc11b684f63305258e338c5f1d0e91eb24414 (diff) | |
download | matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.gz matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.bz2 matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.zip |
Remove replace directives and use own fork to make go get work again (#1028)
See https://github.com/golang/go/issues/30354
go get doesn't honor the go.mod replace options.
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/PersonRelationshipEnum.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/PersonRelationshipEnum.go | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/PersonRelationshipEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonRelationshipEnum.go new file mode 100644 index 00000000..d3a2cbc7 --- /dev/null +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PersonRelationshipEnum.go @@ -0,0 +1,137 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// PersonRelationship undocumented +type PersonRelationship int + +const ( + // PersonRelationshipVManager undocumented + PersonRelationshipVManager PersonRelationship = 0 + // PersonRelationshipVColleague undocumented + PersonRelationshipVColleague PersonRelationship = 1 + // PersonRelationshipVDirectReport undocumented + PersonRelationshipVDirectReport PersonRelationship = 2 + // PersonRelationshipVDotLineReport undocumented + PersonRelationshipVDotLineReport PersonRelationship = 3 + // PersonRelationshipVAssistant undocumented + PersonRelationshipVAssistant PersonRelationship = 4 + // PersonRelationshipVDotLineManager undocumented + PersonRelationshipVDotLineManager PersonRelationship = 5 + // PersonRelationshipVAlternateContact undocumented + PersonRelationshipVAlternateContact PersonRelationship = 6 + // PersonRelationshipVFriend undocumented + PersonRelationshipVFriend PersonRelationship = 7 + // PersonRelationshipVSpouse undocumented + PersonRelationshipVSpouse PersonRelationship = 8 + // PersonRelationshipVSibling undocumented + PersonRelationshipVSibling PersonRelationship = 9 + // PersonRelationshipVChild undocumented + PersonRelationshipVChild PersonRelationship = 10 + // PersonRelationshipVParent undocumented + PersonRelationshipVParent PersonRelationship = 11 + // PersonRelationshipVSponsor undocumented + PersonRelationshipVSponsor PersonRelationship = 12 + // PersonRelationshipVEmergencyContact undocumented + PersonRelationshipVEmergencyContact PersonRelationship = 13 + // PersonRelationshipVOther undocumented + PersonRelationshipVOther PersonRelationship = 14 + // PersonRelationshipVUnknownFutureValue undocumented + PersonRelationshipVUnknownFutureValue PersonRelationship = 15 +) + +// PersonRelationshipPManager returns a pointer to PersonRelationshipVManager +func PersonRelationshipPManager() *PersonRelationship { + v := PersonRelationshipVManager + return &v +} + +// PersonRelationshipPColleague returns a pointer to PersonRelationshipVColleague +func PersonRelationshipPColleague() *PersonRelationship { + v := PersonRelationshipVColleague + return &v +} + +// PersonRelationshipPDirectReport returns a pointer to PersonRelationshipVDirectReport +func PersonRelationshipPDirectReport() *PersonRelationship { + v := PersonRelationshipVDirectReport + return &v +} + +// PersonRelationshipPDotLineReport returns a pointer to PersonRelationshipVDotLineReport +func PersonRelationshipPDotLineReport() *PersonRelationship { + v := PersonRelationshipVDotLineReport + return &v +} + +// PersonRelationshipPAssistant returns a pointer to PersonRelationshipVAssistant +func PersonRelationshipPAssistant() *PersonRelationship { + v := PersonRelationshipVAssistant + return &v +} + +// PersonRelationshipPDotLineManager returns a pointer to PersonRelationshipVDotLineManager +func PersonRelationshipPDotLineManager() *PersonRelationship { + v := PersonRelationshipVDotLineManager + return &v +} + +// PersonRelationshipPAlternateContact returns a pointer to PersonRelationshipVAlternateContact +func PersonRelationshipPAlternateContact() *PersonRelationship { + v := PersonRelationshipVAlternateContact + return &v +} + +// PersonRelationshipPFriend returns a pointer to PersonRelationshipVFriend +func PersonRelationshipPFriend() *PersonRelationship { + v := PersonRelationshipVFriend + return &v +} + +// PersonRelationshipPSpouse returns a pointer to PersonRelationshipVSpouse +func PersonRelationshipPSpouse() *PersonRelationship { + v := PersonRelationshipVSpouse + return &v +} + +// PersonRelationshipPSibling returns a pointer to PersonRelationshipVSibling +func PersonRelationshipPSibling() *PersonRelationship { + v := PersonRelationshipVSibling + return &v +} + +// PersonRelationshipPChild returns a pointer to PersonRelationshipVChild +func PersonRelationshipPChild() *PersonRelationship { + v := PersonRelationshipVChild + return &v +} + +// PersonRelationshipPParent returns a pointer to PersonRelationshipVParent +func PersonRelationshipPParent() *PersonRelationship { + v := PersonRelationshipVParent + return &v +} + +// PersonRelationshipPSponsor returns a pointer to PersonRelationshipVSponsor +func PersonRelationshipPSponsor() *PersonRelationship { + v := PersonRelationshipVSponsor + return &v +} + +// PersonRelationshipPEmergencyContact returns a pointer to PersonRelationshipVEmergencyContact +func PersonRelationshipPEmergencyContact() *PersonRelationship { + v := PersonRelationshipVEmergencyContact + return &v +} + +// PersonRelationshipPOther returns a pointer to PersonRelationshipVOther +func PersonRelationshipPOther() *PersonRelationship { + v := PersonRelationshipVOther + return &v +} + +// PersonRelationshipPUnknownFutureValue returns a pointer to PersonRelationshipVUnknownFutureValue +func PersonRelationshipPUnknownFutureValue() *PersonRelationship { + v := PersonRelationshipVUnknownFutureValue + return &v +} |