summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/AllowedAudiencesEnum.go
blob: 6d1bcabd6138eabbc807315069d573a193ce1b32 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// AllowedAudiences undocumented
type AllowedAudiences int

const (
	// AllowedAudiencesVMe undocumented
	AllowedAudiencesVMe AllowedAudiences = 0
	// AllowedAudiencesVFamily undocumented
	AllowedAudiencesVFamily AllowedAudiences = 1
	// AllowedAudiencesVContacts undocumented
	AllowedAudiencesVContacts AllowedAudiences = 2
	// AllowedAudiencesVGroupMembers undocumented
	AllowedAudiencesVGroupMembers AllowedAudiences = 4
	// AllowedAudiencesVOrganization undocumented
	AllowedAudiencesVOrganization AllowedAudiences = 8
	// AllowedAudiencesVFederatedOrganizations undocumented
	AllowedAudiencesVFederatedOrganizations AllowedAudiences = 16
	// AllowedAudiencesVEveryone undocumented
	AllowedAudiencesVEveryone AllowedAudiences = 32
	// AllowedAudiencesVUnknownFutureValue undocumented
	AllowedAudiencesVUnknownFutureValue AllowedAudiences = 64
)

// AllowedAudiencesPMe returns a pointer to AllowedAudiencesVMe
func AllowedAudiencesPMe() *AllowedAudiences {
	v := AllowedAudiencesVMe
	return &v
}

// AllowedAudiencesPFamily returns a pointer to AllowedAudiencesVFamily
func AllowedAudiencesPFamily() *AllowedAudiences {
	v := AllowedAudiencesVFamily
	return &v
}

// AllowedAudiencesPContacts returns a pointer to AllowedAudiencesVContacts
func AllowedAudiencesPContacts() *AllowedAudiences {
	v := AllowedAudiencesVContacts
	return &v
}

// AllowedAudiencesPGroupMembers returns a pointer to AllowedAudiencesVGroupMembers
func AllowedAudiencesPGroupMembers() *AllowedAudiences {
	v := AllowedAudiencesVGroupMembers
	return &v
}

// AllowedAudiencesPOrganization returns a pointer to AllowedAudiencesVOrganization
func AllowedAudiencesPOrganization() *AllowedAudiences {
	v := AllowedAudiencesVOrganization
	return &v
}

// AllowedAudiencesPFederatedOrganizations returns a pointer to AllowedAudiencesVFederatedOrganizations
func AllowedAudiencesPFederatedOrganizations() *AllowedAudiences {
	v := AllowedAudiencesVFederatedOrganizations
	return &v
}

// AllowedAudiencesPEveryone returns a pointer to AllowedAudiencesVEveryone
func AllowedAudiencesPEveryone() *AllowedAudiences {
	v := AllowedAudiencesVEveryone
	return &v
}

// AllowedAudiencesPUnknownFutureValue returns a pointer to AllowedAudiencesVUnknownFutureValue
func AllowedAudiencesPUnknownFutureValue() *AllowedAudiences {
	v := AllowedAudiencesVUnknownFutureValue
	return &v
}