mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 16:50:27 +00:00
42 lines
2.0 KiB
Go
42 lines
2.0 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// NotificationTemplateBrandingOptions undocumented
|
||
|
type NotificationTemplateBrandingOptions int
|
||
|
|
||
|
const (
|
||
|
// NotificationTemplateBrandingOptionsVNone undocumented
|
||
|
NotificationTemplateBrandingOptionsVNone NotificationTemplateBrandingOptions = 0
|
||
|
// NotificationTemplateBrandingOptionsVIncludeCompanyLogo undocumented
|
||
|
NotificationTemplateBrandingOptionsVIncludeCompanyLogo NotificationTemplateBrandingOptions = 1
|
||
|
// NotificationTemplateBrandingOptionsVIncludeCompanyName undocumented
|
||
|
NotificationTemplateBrandingOptionsVIncludeCompanyName NotificationTemplateBrandingOptions = 2
|
||
|
// NotificationTemplateBrandingOptionsVIncludeContactInformation undocumented
|
||
|
NotificationTemplateBrandingOptionsVIncludeContactInformation NotificationTemplateBrandingOptions = 4
|
||
|
)
|
||
|
|
||
|
// NotificationTemplateBrandingOptionsPNone returns a pointer to NotificationTemplateBrandingOptionsVNone
|
||
|
func NotificationTemplateBrandingOptionsPNone() *NotificationTemplateBrandingOptions {
|
||
|
v := NotificationTemplateBrandingOptionsVNone
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// NotificationTemplateBrandingOptionsPIncludeCompanyLogo returns a pointer to NotificationTemplateBrandingOptionsVIncludeCompanyLogo
|
||
|
func NotificationTemplateBrandingOptionsPIncludeCompanyLogo() *NotificationTemplateBrandingOptions {
|
||
|
v := NotificationTemplateBrandingOptionsVIncludeCompanyLogo
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// NotificationTemplateBrandingOptionsPIncludeCompanyName returns a pointer to NotificationTemplateBrandingOptionsVIncludeCompanyName
|
||
|
func NotificationTemplateBrandingOptionsPIncludeCompanyName() *NotificationTemplateBrandingOptions {
|
||
|
v := NotificationTemplateBrandingOptionsVIncludeCompanyName
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// NotificationTemplateBrandingOptionsPIncludeContactInformation returns a pointer to NotificationTemplateBrandingOptionsVIncludeContactInformation
|
||
|
func NotificationTemplateBrandingOptionsPIncludeContactInformation() *NotificationTemplateBrandingOptions {
|
||
|
v := NotificationTemplateBrandingOptionsVIncludeContactInformation
|
||
|
return &v
|
||
|
}
|