mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 16:50:27 +00:00
34 lines
1.5 KiB
Go
34 lines
1.5 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// CertificateDestinationStore undocumented
|
||
|
type CertificateDestinationStore int
|
||
|
|
||
|
const (
|
||
|
// CertificateDestinationStoreVComputerCertStoreRoot undocumented
|
||
|
CertificateDestinationStoreVComputerCertStoreRoot CertificateDestinationStore = 0
|
||
|
// CertificateDestinationStoreVComputerCertStoreIntermediate undocumented
|
||
|
CertificateDestinationStoreVComputerCertStoreIntermediate CertificateDestinationStore = 1
|
||
|
// CertificateDestinationStoreVUserCertStoreIntermediate undocumented
|
||
|
CertificateDestinationStoreVUserCertStoreIntermediate CertificateDestinationStore = 2
|
||
|
)
|
||
|
|
||
|
// CertificateDestinationStorePComputerCertStoreRoot returns a pointer to CertificateDestinationStoreVComputerCertStoreRoot
|
||
|
func CertificateDestinationStorePComputerCertStoreRoot() *CertificateDestinationStore {
|
||
|
v := CertificateDestinationStoreVComputerCertStoreRoot
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// CertificateDestinationStorePComputerCertStoreIntermediate returns a pointer to CertificateDestinationStoreVComputerCertStoreIntermediate
|
||
|
func CertificateDestinationStorePComputerCertStoreIntermediate() *CertificateDestinationStore {
|
||
|
v := CertificateDestinationStoreVComputerCertStoreIntermediate
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// CertificateDestinationStorePUserCertStoreIntermediate returns a pointer to CertificateDestinationStoreVUserCertStoreIntermediate
|
||
|
func CertificateDestinationStorePUserCertStoreIntermediate() *CertificateDestinationStore {
|
||
|
v := CertificateDestinationStoreVUserCertStoreIntermediate
|
||
|
return &v
|
||
|
}
|