blob: 3db0185acf540b79c74d26b197947d9b321d7ce5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// AttendeeType undocumented
type AttendeeType string
const (
// AttendeeTypeVRequired undocumented
AttendeeTypeVRequired AttendeeType = "required"
// AttendeeTypeVOptional undocumented
AttendeeTypeVOptional AttendeeType = "optional"
// AttendeeTypeVResource undocumented
AttendeeTypeVResource AttendeeType = "resource"
)
var (
// AttendeeTypePRequired is a pointer to AttendeeTypeVRequired
AttendeeTypePRequired = &_AttendeeTypePRequired
// AttendeeTypePOptional is a pointer to AttendeeTypeVOptional
AttendeeTypePOptional = &_AttendeeTypePOptional
// AttendeeTypePResource is a pointer to AttendeeTypeVResource
AttendeeTypePResource = &_AttendeeTypePResource
)
var (
_AttendeeTypePRequired = AttendeeTypeVRequired
_AttendeeTypePOptional = AttendeeTypeVOptional
_AttendeeTypePResource = AttendeeTypeVResource
)
|