setUserParam($params, "order_no", $this->orderNo); $this->setUserParam($params, "refund_amount", $this->refundAmount); $this->setUserParam($params, "reject_reason", $this->rejectReason); $this->setUserParam($params, "serial_no", $this->serialNo); $this->setUserParam($params, "status", $this->status); } public function getVersion() { return "V1"; } public function getDataType() { return "JSON"; } public function getType() { return "pdd.ticket.order.refund.notifycation"; } public function setOrderNo($orderNo) { $this->orderNo = $orderNo; } public function setRefundAmount($refundAmount) { $this->refundAmount = $refundAmount; } public function setRejectReason($rejectReason) { $this->rejectReason = $rejectReason; } public function setSerialNo($serialNo) { $this->serialNo = $serialNo; } public function setStatus($status) { $this->status = $status; } }