summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go')
-rw-r--r--vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go41
1 files changed, 41 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go
new file mode 100644
index 00000000..130ae11d
--- /dev/null
+++ b/vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go
@@ -0,0 +1,41 @@
+// 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
+}