mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
26 lines
596 B
Go
26 lines
596 B
Go
|
// 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
|
||
|
}
|