diff options
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/ContentFormatEnum.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/ContentFormatEnum.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/ContentFormatEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentFormatEnum.go new file mode 100644 index 00000000..2bd410b4 --- /dev/null +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ContentFormatEnum.go @@ -0,0 +1,25 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// ContentFormat undocumented +type ContentFormat int + +const ( + // ContentFormatVDefault undocumented + ContentFormatVDefault ContentFormat = 0 + // ContentFormatVEmail undocumented + ContentFormatVEmail ContentFormat = 1 +) + +// ContentFormatPDefault returns a pointer to ContentFormatVDefault +func ContentFormatPDefault() *ContentFormat { + v := ContentFormatVDefault + return &v +} + +// ContentFormatPEmail returns a pointer to ContentFormatVEmail +func ContentFormatPEmail() *ContentFormat { + v := ContentFormatVEmail + return &v +} |