summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/ExternalAudienceScopeEnum.go
blob: bf36edd21d11a641fbf8421f4eb2da052ea0bf14 (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
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// ExternalAudienceScope undocumented
type ExternalAudienceScope int

const (
	// ExternalAudienceScopeVNone undocumented
	ExternalAudienceScopeVNone ExternalAudienceScope = 0
	// ExternalAudienceScopeVContactsOnly undocumented
	ExternalAudienceScopeVContactsOnly ExternalAudienceScope = 1
	// ExternalAudienceScopeVAll undocumented
	ExternalAudienceScopeVAll ExternalAudienceScope = 2
)

// ExternalAudienceScopePNone returns a pointer to ExternalAudienceScopeVNone
func ExternalAudienceScopePNone() *ExternalAudienceScope {
	v := ExternalAudienceScopeVNone
	return &v
}

// ExternalAudienceScopePContactsOnly returns a pointer to ExternalAudienceScopeVContactsOnly
func ExternalAudienceScopePContactsOnly() *ExternalAudienceScope {
	v := ExternalAudienceScopeVContactsOnly
	return &v
}

// ExternalAudienceScopePAll returns a pointer to ExternalAudienceScopeVAll
func ExternalAudienceScopePAll() *ExternalAudienceScope {
	v := ExternalAudienceScopeVAll
	return &v
}