body = $body; $this->apiParas["body"] = $body; } public function getBody() { return $this->body; } public function setTarget($target) { $this->target = $target; $this->apiParas["target"] = $target; } public function getTarget() { return $this->target; } public function setTargetValue($targetValue) { $this->targetValue = $targetValue; $this->apiParas["target_value"] = $targetValue; } public function getTargetValue() { return $this->targetValue; } public function getApiMethodName() { return "taobao.cloudpush.message.android"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->body,"body"); RequestCheckUtil::checkNotNull($this->target,"target"); RequestCheckUtil::checkNotNull($this->targetValue,"targetValue"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }