mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 04:30:26 +00:00
26 lines
806 B
Go
26 lines
806 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// RestrictedAppsState undocumented
|
||
|
type RestrictedAppsState int
|
||
|
|
||
|
const (
|
||
|
// RestrictedAppsStateVProhibitedApps undocumented
|
||
|
RestrictedAppsStateVProhibitedApps RestrictedAppsState = 0
|
||
|
// RestrictedAppsStateVNotApprovedApps undocumented
|
||
|
RestrictedAppsStateVNotApprovedApps RestrictedAppsState = 1
|
||
|
)
|
||
|
|
||
|
// RestrictedAppsStatePProhibitedApps returns a pointer to RestrictedAppsStateVProhibitedApps
|
||
|
func RestrictedAppsStatePProhibitedApps() *RestrictedAppsState {
|
||
|
v := RestrictedAppsStateVProhibitedApps
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RestrictedAppsStatePNotApprovedApps returns a pointer to RestrictedAppsStateVNotApprovedApps
|
||
|
func RestrictedAppsStatePNotApprovedApps() *RestrictedAppsState {
|
||
|
v := RestrictedAppsStateVNotApprovedApps
|
||
|
return &v
|
||
|
}
|