YsdkMemberApplyJsfServiceQueryMemberStatusRequest.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. class YsdkMemberApplyJsfServiceQueryMemberStatusRequest
  3. {
  4. private $apiParas = array();
  5. public function getApiMethodName(){
  6. return "jingdong.ysdk.MemberApplyJsfService.queryMemberStatus";
  7. }
  8. public function getApiParas(){
  9. if(empty($this->apiParas)){
  10. return "{}";
  11. }
  12. return $this->apiParas;
  13. }
  14. public function check(){
  15. }
  16. public function putOtherTextParam($key, $value){
  17. $this->apiParas[$key] = $value;
  18. $this->$key = $value;
  19. }
  20. private $version;
  21. public function setVersion($version){
  22. $this->version = $version;
  23. }
  24. public function getVersion(){
  25. return $this->version;
  26. }
  27. private $requestId;
  28. public function setRequestId($requestId){
  29. $this->requestId = $requestId;
  30. $this->apiParas["requestId"] = $requestId;
  31. }
  32. public function getRequestId(){
  33. return $this->requestId;
  34. }
  35. private $platformCode;
  36. public function setPlatformCode($platformCode){
  37. $this->platformCode = $platformCode;
  38. $this->apiParas["platformCode"] = $platformCode;
  39. }
  40. public function getPlatformCode(){
  41. return $this->platformCode;
  42. }
  43. }