mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
42 lines
1.2 KiB
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
|
|
}
|