blob: d5fb8d9aef8cada12ff0abb48a08a5b1a63065ca (
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
// AttachmentType undocumented
type AttachmentType string
const (
// AttachmentTypeVFile undocumented
AttachmentTypeVFile AttachmentType = "file"
// AttachmentTypeVItem undocumented
AttachmentTypeVItem AttachmentType = "item"
// AttachmentTypeVReference undocumented
AttachmentTypeVReference AttachmentType = "reference"
)
var (
// AttachmentTypePFile is a pointer to AttachmentTypeVFile
AttachmentTypePFile = &_AttachmentTypePFile
// AttachmentTypePItem is a pointer to AttachmentTypeVItem
AttachmentTypePItem = &_AttachmentTypePItem
// AttachmentTypePReference is a pointer to AttachmentTypeVReference
AttachmentTypePReference = &_AttachmentTypePReference
)
var (
_AttachmentTypePFile = AttachmentTypeVFile
_AttachmentTypePItem = AttachmentTypeVItem
_AttachmentTypePReference = AttachmentTypeVReference
)
|