mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 04:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
58 lines
2.3 KiB
Go
58 lines
2.3 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// AppleSubjectNameFormat undocumented
|
|
type AppleSubjectNameFormat int
|
|
|
|
const (
|
|
// AppleSubjectNameFormatVCommonName undocumented
|
|
AppleSubjectNameFormatVCommonName AppleSubjectNameFormat = 0
|
|
// AppleSubjectNameFormatVCommonNameAsEmail undocumented
|
|
AppleSubjectNameFormatVCommonNameAsEmail AppleSubjectNameFormat = 1
|
|
// AppleSubjectNameFormatVCustom undocumented
|
|
AppleSubjectNameFormatVCustom AppleSubjectNameFormat = 2
|
|
// AppleSubjectNameFormatVCommonNameIncludingEmail undocumented
|
|
AppleSubjectNameFormatVCommonNameIncludingEmail AppleSubjectNameFormat = 3
|
|
// AppleSubjectNameFormatVCommonNameAsIMEI undocumented
|
|
AppleSubjectNameFormatVCommonNameAsIMEI AppleSubjectNameFormat = 5
|
|
// AppleSubjectNameFormatVCommonNameAsSerialNumber undocumented
|
|
AppleSubjectNameFormatVCommonNameAsSerialNumber AppleSubjectNameFormat = 6
|
|
)
|
|
|
|
// AppleSubjectNameFormatPCommonName returns a pointer to AppleSubjectNameFormatVCommonName
|
|
func AppleSubjectNameFormatPCommonName() *AppleSubjectNameFormat {
|
|
v := AppleSubjectNameFormatVCommonName
|
|
return &v
|
|
}
|
|
|
|
// AppleSubjectNameFormatPCommonNameAsEmail returns a pointer to AppleSubjectNameFormatVCommonNameAsEmail
|
|
func AppleSubjectNameFormatPCommonNameAsEmail() *AppleSubjectNameFormat {
|
|
v := AppleSubjectNameFormatVCommonNameAsEmail
|
|
return &v
|
|
}
|
|
|
|
// AppleSubjectNameFormatPCustom returns a pointer to AppleSubjectNameFormatVCustom
|
|
func AppleSubjectNameFormatPCustom() *AppleSubjectNameFormat {
|
|
v := AppleSubjectNameFormatVCustom
|
|
return &v
|
|
}
|
|
|
|
// AppleSubjectNameFormatPCommonNameIncludingEmail returns a pointer to AppleSubjectNameFormatVCommonNameIncludingEmail
|
|
func AppleSubjectNameFormatPCommonNameIncludingEmail() *AppleSubjectNameFormat {
|
|
v := AppleSubjectNameFormatVCommonNameIncludingEmail
|
|
return &v
|
|
}
|
|
|
|
// AppleSubjectNameFormatPCommonNameAsIMEI returns a pointer to AppleSubjectNameFormatVCommonNameAsIMEI
|
|
func AppleSubjectNameFormatPCommonNameAsIMEI() *AppleSubjectNameFormat {
|
|
v := AppleSubjectNameFormatVCommonNameAsIMEI
|
|
return &v
|
|
}
|
|
|
|
// AppleSubjectNameFormatPCommonNameAsSerialNumber returns a pointer to AppleSubjectNameFormatVCommonNameAsSerialNumber
|
|
func AppleSubjectNameFormatPCommonNameAsSerialNumber() *AppleSubjectNameFormat {
|
|
v := AppleSubjectNameFormatVCommonNameAsSerialNumber
|
|
return &v
|
|
}
|