mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
42 lines
1.5 KiB
Go
42 lines
1.5 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// OnenoteSourceService undocumented
|
||
|
type OnenoteSourceService int
|
||
|
|
||
|
const (
|
||
|
// OnenoteSourceServiceVUnknown undocumented
|
||
|
OnenoteSourceServiceVUnknown OnenoteSourceService = 0
|
||
|
// OnenoteSourceServiceVOneDrive undocumented
|
||
|
OnenoteSourceServiceVOneDrive OnenoteSourceService = 1
|
||
|
// OnenoteSourceServiceVOneDriveForBusiness undocumented
|
||
|
OnenoteSourceServiceVOneDriveForBusiness OnenoteSourceService = 2
|
||
|
// OnenoteSourceServiceVOnPremOneDriveForBusiness undocumented
|
||
|
OnenoteSourceServiceVOnPremOneDriveForBusiness OnenoteSourceService = 3
|
||
|
)
|
||
|
|
||
|
// OnenoteSourceServicePUnknown returns a pointer to OnenoteSourceServiceVUnknown
|
||
|
func OnenoteSourceServicePUnknown() *OnenoteSourceService {
|
||
|
v := OnenoteSourceServiceVUnknown
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// OnenoteSourceServicePOneDrive returns a pointer to OnenoteSourceServiceVOneDrive
|
||
|
func OnenoteSourceServicePOneDrive() *OnenoteSourceService {
|
||
|
v := OnenoteSourceServiceVOneDrive
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// OnenoteSourceServicePOneDriveForBusiness returns a pointer to OnenoteSourceServiceVOneDriveForBusiness
|
||
|
func OnenoteSourceServicePOneDriveForBusiness() *OnenoteSourceService {
|
||
|
v := OnenoteSourceServiceVOneDriveForBusiness
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// OnenoteSourceServicePOnPremOneDriveForBusiness returns a pointer to OnenoteSourceServiceVOnPremOneDriveForBusiness
|
||
|
func OnenoteSourceServicePOnPremOneDriveForBusiness() *OnenoteSourceService {
|
||
|
v := OnenoteSourceServiceVOnPremOneDriveForBusiness
|
||
|
return &v
|
||
|
}
|