| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- class PopOrderGetmobilelistRequest
- {
- private $apiParas = array();
-
- public function getApiMethodName(){
- return "jingdong.pop.order.getmobilelist";
- }
-
- public function getApiParas(){
- if(empty($this->apiParas)){
- return "{}";
- }
- return $this->apiParas;
- }
-
- public function check(){
-
- }
-
- public function putOtherTextParam($key, $value){
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- private $version;
- public function setVersion($version){
- $this->version = $version;
- }
- public function getVersion(){
- return $this->version;
- }
- private $appName;
-
- public function setAppName($appName){
- $this->appName = $appName;
- $this->apiParas["appName"] = $appName;
- }
- public function getAppName(){
- return $this->appName;
- }
- private $region;
-
- public function setRegion($region){
- $this->region = $region;
- $this->apiParas["region"] = $region;
- }
- public function getRegion(){
- return $this->region;
- }
- private $orderId;
- public function setOrderId($orderId ){
- $this->orderId=$orderId;
- $this->apiParas["orderId"] = $orderId;
- }
- public function getOrderId(){
- return $this->orderId;
- }
- private $expiration;
-
- public function setExpiration($expiration){
- $this->expiration = $expiration;
- $this->apiParas["expiration"] = $expiration;
- }
- public function getExpiration(){
- return $this->expiration;
- }
- private $orderType;
-
- public function setOrderType($orderType){
- $this->orderType = $orderType;
- $this->apiParas["orderType"] = $orderType;
- }
- public function getOrderType(){
- return $this->orderType;
- }
- }
-
-
|