blob: 3aa5279e5be972d4cefc175248de5f04f906ae4e (
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
41
42
43
44
45
46
47
48
49
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ExchangeIDFormat undocumented
type ExchangeIDFormat int
const (
// ExchangeIDFormatVEntryID undocumented
ExchangeIDFormatVEntryID ExchangeIDFormat = 0
// ExchangeIDFormatVEwsID undocumented
ExchangeIDFormatVEwsID ExchangeIDFormat = 1
// ExchangeIDFormatVImmutableEntryID undocumented
ExchangeIDFormatVImmutableEntryID ExchangeIDFormat = 2
// ExchangeIDFormatVRestID undocumented
ExchangeIDFormatVRestID ExchangeIDFormat = 3
// ExchangeIDFormatVRestImmutableEntryID undocumented
ExchangeIDFormatVRestImmutableEntryID ExchangeIDFormat = 4
)
// ExchangeIDFormatPEntryID returns a pointer to ExchangeIDFormatVEntryID
func ExchangeIDFormatPEntryID() *ExchangeIDFormat {
v := ExchangeIDFormatVEntryID
return &v
}
// ExchangeIDFormatPEwsID returns a pointer to ExchangeIDFormatVEwsID
func ExchangeIDFormatPEwsID() *ExchangeIDFormat {
v := ExchangeIDFormatVEwsID
return &v
}
// ExchangeIDFormatPImmutableEntryID returns a pointer to ExchangeIDFormatVImmutableEntryID
func ExchangeIDFormatPImmutableEntryID() *ExchangeIDFormat {
v := ExchangeIDFormatVImmutableEntryID
return &v
}
// ExchangeIDFormatPRestID returns a pointer to ExchangeIDFormatVRestID
func ExchangeIDFormatPRestID() *ExchangeIDFormat {
v := ExchangeIDFormatVRestID
return &v
}
// ExchangeIDFormatPRestImmutableEntryID returns a pointer to ExchangeIDFormatVRestImmutableEntryID
func ExchangeIDFormatPRestImmutableEntryID() *ExchangeIDFormat {
v := ExchangeIDFormatVRestImmutableEntryID
return &v
}
|