blob: a4a9e4d89ba323fa0baa5a3c68514cb617716557 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// 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
}
|