blob: 0580cb1345497713b9cd84532d7ac15e2eca3cb5 (
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
// BodyType undocumented
type BodyType string
const (
// BodyTypeVText undocumented
BodyTypeVText BodyType = "text"
// BodyTypeVHTML undocumented
BodyTypeVHTML BodyType = "html"
)
var (
// BodyTypePText is a pointer to BodyTypeVText
BodyTypePText = &_BodyTypePText
// BodyTypePHTML is a pointer to BodyTypeVHTML
BodyTypePHTML = &_BodyTypePHTML
)
var (
_BodyTypePText = BodyTypeVText
_BodyTypePHTML = BodyTypeVHTML
)
|