mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
34 lines
1.0 KiB
Go
34 lines
1.0 KiB
Go
// 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
|
|
}
|