blob: 184f3a2fe8ad41637c79b98e7491654576d9e906 (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// TeamsAppDistributionMethod undocumented
type TeamsAppDistributionMethod int
const (
// TeamsAppDistributionMethodVStore undocumented
TeamsAppDistributionMethodVStore TeamsAppDistributionMethod = 0
// TeamsAppDistributionMethodVOrganization undocumented
TeamsAppDistributionMethodVOrganization TeamsAppDistributionMethod = 1
// TeamsAppDistributionMethodVSideloaded undocumented
TeamsAppDistributionMethodVSideloaded TeamsAppDistributionMethod = 2
// TeamsAppDistributionMethodVUnknownFutureValue undocumented
TeamsAppDistributionMethodVUnknownFutureValue TeamsAppDistributionMethod = 3
)
// TeamsAppDistributionMethodPStore returns a pointer to TeamsAppDistributionMethodVStore
func TeamsAppDistributionMethodPStore() *TeamsAppDistributionMethod {
v := TeamsAppDistributionMethodVStore
return &v
}
// TeamsAppDistributionMethodPOrganization returns a pointer to TeamsAppDistributionMethodVOrganization
func TeamsAppDistributionMethodPOrganization() *TeamsAppDistributionMethod {
v := TeamsAppDistributionMethodVOrganization
return &v
}
// TeamsAppDistributionMethodPSideloaded returns a pointer to TeamsAppDistributionMethodVSideloaded
func TeamsAppDistributionMethodPSideloaded() *TeamsAppDistributionMethod {
v := TeamsAppDistributionMethodVSideloaded
return &v
}
// TeamsAppDistributionMethodPUnknownFutureValue returns a pointer to TeamsAppDistributionMethodVUnknownFutureValue
func TeamsAppDistributionMethodPUnknownFutureValue() *TeamsAppDistributionMethod {
v := TeamsAppDistributionMethodVUnknownFutureValue
return &v
}
|