blob: 1921d035e71278d8ea5ca1959a0bdc14a1bde503 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// 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
}
|