'CertName', 'ownerId' => 'OwnerId', 'securityToken' => 'SecurityToken', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->certName) { $res['CertName'] = $this->certName; } if (null !== $this->ownerId) { $res['OwnerId'] = $this->ownerId; } if (null !== $this->securityToken) { $res['SecurityToken'] = $this->securityToken; } return $res; } /** * @param array $map * * @return DescribeLiveCertificateDetailRequest */ public static function fromMap($map = []) { $model = new self(); if (isset($map['CertName'])) { $model->certName = $map['CertName']; } if (isset($map['OwnerId'])) { $model->ownerId = $map['OwnerId']; } if (isset($map['SecurityToken'])) { $model->securityToken = $map['SecurityToken']; } return $model; } }