diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ExternalAudienceScopeEnum.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ExternalAudienceScopeEnum.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalAudienceScopeEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/ExternalAudienceScopeEnum.go new file mode 100644 index 00000000..bf36edd2 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ExternalAudienceScopeEnum.go @@ -0,0 +1,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 +} |