mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 12:10:26 +00:00
31 lines
1.1 KiB
Go
31 lines
1.1 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// ExternalAudienceScope undocumented
|
||
|
type ExternalAudienceScope string
|
||
|
|
||
|
const (
|
||
|
// ExternalAudienceScopeVNone undocumented
|
||
|
ExternalAudienceScopeVNone ExternalAudienceScope = "none"
|
||
|
// ExternalAudienceScopeVContactsOnly undocumented
|
||
|
ExternalAudienceScopeVContactsOnly ExternalAudienceScope = "contactsOnly"
|
||
|
// ExternalAudienceScopeVAll undocumented
|
||
|
ExternalAudienceScopeVAll ExternalAudienceScope = "all"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// ExternalAudienceScopePNone is a pointer to ExternalAudienceScopeVNone
|
||
|
ExternalAudienceScopePNone = &_ExternalAudienceScopePNone
|
||
|
// ExternalAudienceScopePContactsOnly is a pointer to ExternalAudienceScopeVContactsOnly
|
||
|
ExternalAudienceScopePContactsOnly = &_ExternalAudienceScopePContactsOnly
|
||
|
// ExternalAudienceScopePAll is a pointer to ExternalAudienceScopeVAll
|
||
|
ExternalAudienceScopePAll = &_ExternalAudienceScopePAll
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
_ExternalAudienceScopePNone = ExternalAudienceScopeVNone
|
||
|
_ExternalAudienceScopePContactsOnly = ExternalAudienceScopeVContactsOnly
|
||
|
_ExternalAudienceScopePAll = ExternalAudienceScopeVAll
|
||
|
)
|