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

package components

type RdpCertificateInfo struct {
	InternalX509ChainFps []string            `json:"internal_x509_chain_fps,omitempty"`
	ProprietaryRsaKey    *RdpEmbeddedRSACert `json:"proprietary_rsa_key,omitempty"`
}

func (o *RdpCertificateInfo) GetInternalX509ChainFps() []string {
	if o == nil {
		return nil
	}
	return o.InternalX509ChainFps
}

func (o *RdpCertificateInfo) GetProprietaryRsaKey() *RdpEmbeddedRSACert {
	if o == nil {
		return nil
	}
	return o.ProprietaryRsaKey
}
