| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- class KplOpenWfpVscQueryCertListRequest
- {
- private $apiParas = array();
-
- public function getApiMethodName(){
- return "jingdong.kpl.open.wfp.vsc.queryCertList";
- }
-
- 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 $interfaceName;
- public function setInterfaceName($interfaceName){
- $this->apiParas['interfaceName'] = $interfaceName;
- }
- public function getInterfaceName(){
- return $this->apiParas['interfaceName'];
- }
- private $methodName;
- public function setMethodName($methodName){
- $this->apiParas['methodName'] = $methodName;
- }
- public function getMethodName(){
- return $this->apiParas['methodName'];
- }
- private $param;
- public function setParam($param){
- $this->apiParas['param'] = $param;
- }
- public function getParam(){
- return $this->apiParas['param'];
- }
- }
- ?>
|