blob: 2bd410b4f0bb4c74be8a8ef5e450607e29812b6c (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ContentFormat undocumented
type ContentFormat int
const (
// ContentFormatVDefault undocumented
ContentFormatVDefault ContentFormat = 0
// ContentFormatVEmail undocumented
ContentFormatVEmail ContentFormat = 1
)
// ContentFormatPDefault returns a pointer to ContentFormatVDefault
func ContentFormatPDefault() *ContentFormat {
v := ContentFormatVDefault
return &v
}
// ContentFormatPEmail returns a pointer to ContentFormatVEmail
func ContentFormatPEmail() *ContentFormat {
v := ContentFormatVEmail
return &v
}
|