content = $content; $this->apiParas["content"] = $content; } public function getContent() { return $this->content; } public function setImage($image) { $this->image = $image; $this->apiParas["image"] = $image; } public function getImage() { return $this->image; } public function setRefundId($refundId) { $this->refundId = $refundId; $this->apiParas["refund_id"] = $refundId; } public function getRefundId() { return $this->refundId; } public function getApiMethodName() { return "taobao.refund.message.add"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->content,"content"); RequestCheckUtil::checkNotNull($this->image,"image"); RequestCheckUtil::checkNotNull($this->refundId,"refundId"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }