github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelEnterprise.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // EnterpriseCodeSigningCertificate undocumented
     8  type EnterpriseCodeSigningCertificate struct {
     9  	// Entity is the base model of EnterpriseCodeSigningCertificate
    10  	Entity
    11  	// Content The Windows Enterprise Code-Signing Certificate in the raw data format.
    12  	Content *Binary `json:"content,omitempty"`
    13  	// Status The Certificate Status Provisioned or not Provisioned.
    14  	Status *CertificateStatus `json:"status,omitempty"`
    15  	// SubjectName The Subject Name for the cert.
    16  	SubjectName *string `json:"subjectName,omitempty"`
    17  	// Subject The Subject Value for the cert.
    18  	Subject *string `json:"subject,omitempty"`
    19  	// IssuerName The Issuer Name for the cert.
    20  	IssuerName *string `json:"issuerName,omitempty"`
    21  	// Issuer The Issuer value for the cert.
    22  	Issuer *string `json:"issuer,omitempty"`
    23  	// ExpirationDateTime The Cert Expiration Date.
    24  	ExpirationDateTime *time.Time `json:"expirationDateTime,omitempty"`
    25  	// UploadDateTime The date time of CodeSigning Cert when it is uploaded.
    26  	UploadDateTime *time.Time `json:"uploadDateTime,omitempty"`
    27  }