setODataType("#microsoft.graph.clientCertificateAuthentication"); } /** * Gets the certificateList * The list of certificates uploaded for this API connector. * * @return Pkcs12CertificateInformation|null The certificateList */ public function getCertificateList() { if (array_key_exists("certificateList", $this->_propDict)) { if (is_a($this->_propDict["certificateList"], "\Microsoft\Graph\Model\Pkcs12CertificateInformation") || is_null($this->_propDict["certificateList"])) { return $this->_propDict["certificateList"]; } else { $this->_propDict["certificateList"] = new Pkcs12CertificateInformation($this->_propDict["certificateList"]); return $this->_propDict["certificateList"]; } } return null; } /** * Sets the certificateList * The list of certificates uploaded for this API connector. * * @param Pkcs12CertificateInformation $val The value to assign to the certificateList * * @return ClientCertificateAuthentication The ClientCertificateAuthentication */ public function setCertificateList($val) { $this->_propDict["certificateList"] = $val; return $this; } }