fields = $fields; $this->apiParas["fields"] = $fields; } public function getFields() { return $this->fields; } public function setPageNo($pageNo) { $this->pageNo = $pageNo; $this->apiParas["page_no"] = $pageNo; } public function getPageNo() { return $this->pageNo; } public function setPageSize($pageSize) { $this->pageSize = $pageSize; $this->apiParas["page_size"] = $pageSize; } public function getPageSize() { return $this->pageSize; } 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 getApiMethodName() { return "taobao.refund.messages.get"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->fields,"fields"); RequestCheckUtil::checkMaxListSize($this->fields,100,"fields"); RequestCheckUtil::checkNotNull($this->refundId,"refundId"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }