'CertifyId', 'certifyUrl' => 'CertifyUrl', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->certifyId) { $res['CertifyId'] = $this->certifyId; } if (null !== $this->certifyUrl) { $res['CertifyUrl'] = $this->certifyUrl; } return $res; } /** * @param array $map * * @return resultObject */ public static function fromMap($map = []) { $model = new self(); if (isset($map['CertifyId'])) { $model->certifyId = $map['CertifyId']; } if (isset($map['CertifyUrl'])) { $model->certifyUrl = $map['CertifyUrl']; } return $model; } }