blob: a34cd92217269ff62de77e1456a2894b4deeaef5 (
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
31
32
33
34
35
36
37
38
39
40
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ExchangeIDFormat undocumented
type ExchangeIDFormat string
const (
// ExchangeIDFormatVEntryID undocumented
ExchangeIDFormatVEntryID ExchangeIDFormat = "entryId"
// ExchangeIDFormatVEwsID undocumented
ExchangeIDFormatVEwsID ExchangeIDFormat = "ewsId"
// ExchangeIDFormatVImmutableEntryID undocumented
ExchangeIDFormatVImmutableEntryID ExchangeIDFormat = "immutableEntryId"
// ExchangeIDFormatVRestID undocumented
ExchangeIDFormatVRestID ExchangeIDFormat = "restId"
// ExchangeIDFormatVRestImmutableEntryID undocumented
ExchangeIDFormatVRestImmutableEntryID ExchangeIDFormat = "restImmutableEntryId"
)
var (
// ExchangeIDFormatPEntryID is a pointer to ExchangeIDFormatVEntryID
ExchangeIDFormatPEntryID = &_ExchangeIDFormatPEntryID
// ExchangeIDFormatPEwsID is a pointer to ExchangeIDFormatVEwsID
ExchangeIDFormatPEwsID = &_ExchangeIDFormatPEwsID
// ExchangeIDFormatPImmutableEntryID is a pointer to ExchangeIDFormatVImmutableEntryID
ExchangeIDFormatPImmutableEntryID = &_ExchangeIDFormatPImmutableEntryID
// ExchangeIDFormatPRestID is a pointer to ExchangeIDFormatVRestID
ExchangeIDFormatPRestID = &_ExchangeIDFormatPRestID
// ExchangeIDFormatPRestImmutableEntryID is a pointer to ExchangeIDFormatVRestImmutableEntryID
ExchangeIDFormatPRestImmutableEntryID = &_ExchangeIDFormatPRestImmutableEntryID
)
var (
_ExchangeIDFormatPEntryID = ExchangeIDFormatVEntryID
_ExchangeIDFormatPEwsID = ExchangeIDFormatVEwsID
_ExchangeIDFormatPImmutableEntryID = ExchangeIDFormatVImmutableEntryID
_ExchangeIDFormatPRestID = ExchangeIDFormatVRestID
_ExchangeIDFormatPRestImmutableEntryID = ExchangeIDFormatVRestImmutableEntryID
)
|