diff options
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go deleted file mode 100644 index 130ae11d..00000000 --- a/vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go +++ /dev/null @@ -1,41 +0,0 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. - -package msgraph - -// EducationGender undocumented -type EducationGender int - -const ( - // EducationGenderVFemale undocumented - EducationGenderVFemale EducationGender = 0 - // EducationGenderVMale undocumented - EducationGenderVMale EducationGender = 1 - // EducationGenderVOther undocumented - EducationGenderVOther EducationGender = 2 - // EducationGenderVUnknownFutureValue undocumented - EducationGenderVUnknownFutureValue EducationGender = 3 -) - -// EducationGenderPFemale returns a pointer to EducationGenderVFemale -func EducationGenderPFemale() *EducationGender { - v := EducationGenderVFemale - return &v -} - -// EducationGenderPMale returns a pointer to EducationGenderVMale -func EducationGenderPMale() *EducationGender { - v := EducationGenderVMale - return &v -} - -// EducationGenderPOther returns a pointer to EducationGenderVOther -func EducationGenderPOther() *EducationGender { - v := EducationGenderVOther - return &v -} - -// EducationGenderPUnknownFutureValue returns a pointer to EducationGenderVUnknownFutureValue -func EducationGenderPUnknownFutureValue() *EducationGender { - v := EducationGenderVUnknownFutureValue - return &v -} |