// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type CertificateRevocation struct {
	Crl  *CertificateRevocationRevocationInfo `json:"crl,omitempty"`
	Ocsp *CertificateRevocationRevocationInfo `json:"ocsp,omitempty"`
}

func (o *CertificateRevocation) GetCrl() *CertificateRevocationRevocationInfo {
	if o == nil {
		return nil
	}
	return o.Crl
}

func (o *CertificateRevocation) GetOcsp() *CertificateRevocationRevocationInfo {
	if o == nil {
		return nil
	}
	return o.Ocsp
}
