blob: 25b5cec12338c8cda1249b7f3c21df3b6a6ed01a (
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-generate.go 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
)
|