'AppId', 'groupId' => 'GroupId', 'userIdList' => 'UserIdList', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->appId) { $res['AppId'] = $this->appId; } if (null !== $this->groupId) { $res['GroupId'] = $this->groupId; } if (null !== $this->userIdList) { $res['UserIdList'] = $this->userIdList; } return $res; } /** * @param array $map * * @return ListMessageGroupUserByIdRequest */ public static function fromMap($map = []) { $model = new self(); if (isset($map['AppId'])) { $model->appId = $map['AppId']; } if (isset($map['GroupId'])) { $model->groupId = $map['GroupId']; } if (isset($map['UserIdList'])) { if (!empty($map['UserIdList'])) { $model->userIdList = $map['UserIdList']; } } return $model; } }