5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-10 14:30:26 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/EducationGenderEnum.go

42 lines
1.2 KiB
Go

// 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
}