github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/trust/x509_crl.go (about) 1 /* Copyright © 2017 VMware, Inc. All Rights Reserved. 2 SPDX-License-Identifier: BSD-2-Clause 3 4 Generated by: https://github.com/swagger-api/swagger-codegen.git */ 5 6 package trust 7 8 // A CRL is a time-stamped list identifying revoked certificates. 9 type X509Crl struct { 10 11 // list of X509CrlEntry 12 CrlEntries []X509CrlEntry `json:"crl_entries,omitempty"` 13 14 // Issuer's distinguished name(DN) 15 Issuer string `json:"issuer,omitempty"` 16 17 // Next update time for the CRL 18 NextUpdate string `json:"next_update,omitempty"` 19 20 // CRL's version number either 1 or 2 21 Version string `json:"version,omitempty"` 22 }