mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-28 13:42:01 -08:00
20 lines
760 B
Go
20 lines
760 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// WindowsInformationProtectionDataRecoveryCertificate undocumented
|
||
|
type WindowsInformationProtectionDataRecoveryCertificate struct {
|
||
|
// Object is the base model of WindowsInformationProtectionDataRecoveryCertificate
|
||
|
Object
|
||
|
// SubjectName Data recovery Certificate subject name
|
||
|
SubjectName *string `json:"subjectName,omitempty"`
|
||
|
// Description Data recovery Certificate description
|
||
|
Description *string `json:"description,omitempty"`
|
||
|
// ExpirationDateTime Data recovery Certificate expiration datetime
|
||
|
ExpirationDateTime *time.Time `json:"expirationDateTime,omitempty"`
|
||
|
// Certificate Data recovery Certificate
|
||
|
Certificate *Binary `json:"certificate,omitempty"`
|
||
|
}
|