message = $message; $this->apiParas["message"] = $message; } public function getMessage() { return $this->message; } public function setOperator($operator) { $this->operator = $operator; $this->apiParas["operator"] = $operator; } public function getOperator() { return $this->operator; } public function setRefundId($refundId) { $this->refundId = $refundId; $this->apiParas["refund_id"] = $refundId; } public function getRefundId() { return $this->refundId; } public function setRefundPhase($refundPhase) { $this->refundPhase = $refundPhase; $this->apiParas["refund_phase"] = $refundPhase; } public function getRefundPhase() { return $this->refundPhase; } public function setRefundVersion($refundVersion) { $this->refundVersion = $refundVersion; $this->apiParas["refund_version"] = $refundVersion; } public function getRefundVersion() { return $this->refundVersion; } public function setResult($result) { $this->result = $result; $this->apiParas["result"] = $result; } public function getResult() { return $this->result; } public function getApiMethodName() { return "taobao.rp.refund.review"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->message,"message"); RequestCheckUtil::checkNotNull($this->operator,"operator"); RequestCheckUtil::checkNotNull($this->refundId,"refundId"); RequestCheckUtil::checkNotNull($this->refundPhase,"refundPhase"); RequestCheckUtil::checkNotNull($this->refundVersion,"refundVersion"); RequestCheckUtil::checkNotNull($this->result,"result"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }