mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
50 lines
1.5 KiB
Go
50 lines
1.5 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// EdgeOpenOptions undocumented
|
||
|
type EdgeOpenOptions int
|
||
|
|
||
|
const (
|
||
|
// EdgeOpenOptionsVNotConfigured undocumented
|
||
|
EdgeOpenOptionsVNotConfigured EdgeOpenOptions = 0
|
||
|
// EdgeOpenOptionsVStartPage undocumented
|
||
|
EdgeOpenOptionsVStartPage EdgeOpenOptions = 1
|
||
|
// EdgeOpenOptionsVNewTabPage undocumented
|
||
|
EdgeOpenOptionsVNewTabPage EdgeOpenOptions = 2
|
||
|
// EdgeOpenOptionsVPreviousPages undocumented
|
||
|
EdgeOpenOptionsVPreviousPages EdgeOpenOptions = 3
|
||
|
// EdgeOpenOptionsVSpecificPages undocumented
|
||
|
EdgeOpenOptionsVSpecificPages EdgeOpenOptions = 4
|
||
|
)
|
||
|
|
||
|
// EdgeOpenOptionsPNotConfigured returns a pointer to EdgeOpenOptionsVNotConfigured
|
||
|
func EdgeOpenOptionsPNotConfigured() *EdgeOpenOptions {
|
||
|
v := EdgeOpenOptionsVNotConfigured
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// EdgeOpenOptionsPStartPage returns a pointer to EdgeOpenOptionsVStartPage
|
||
|
func EdgeOpenOptionsPStartPage() *EdgeOpenOptions {
|
||
|
v := EdgeOpenOptionsVStartPage
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// EdgeOpenOptionsPNewTabPage returns a pointer to EdgeOpenOptionsVNewTabPage
|
||
|
func EdgeOpenOptionsPNewTabPage() *EdgeOpenOptions {
|
||
|
v := EdgeOpenOptionsVNewTabPage
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// EdgeOpenOptionsPPreviousPages returns a pointer to EdgeOpenOptionsVPreviousPages
|
||
|
func EdgeOpenOptionsPPreviousPages() *EdgeOpenOptions {
|
||
|
v := EdgeOpenOptionsVPreviousPages
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// EdgeOpenOptionsPSpecificPages returns a pointer to EdgeOpenOptionsVSpecificPages
|
||
|
func EdgeOpenOptionsPSpecificPages() *EdgeOpenOptions {
|
||
|
v := EdgeOpenOptionsVSpecificPages
|
||
|
return &v
|
||
|
}
|