'CertificateListModel', 'requestId' => 'RequestId', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->certificateListModel) { $res['CertificateListModel'] = null !== $this->certificateListModel ? $this->certificateListModel->toMap() : null; } if (null !== $this->requestId) { $res['RequestId'] = $this->requestId; } return $res; } /** * @param array $map * * @return DescribeLiveCertificateListResponseBody */ public static function fromMap($map = []) { $model = new self(); if (isset($map['CertificateListModel'])) { $model->certificateListModel = certificateListModel::fromMap($map['CertificateListModel']); } if (isset($map['RequestId'])) { $model->requestId = $map['RequestId']; } return $model; } }