| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- class MfaInnerSendCodeToMobileRequest
- {
- private $apiParas = array();
-
- public function getApiMethodName(){
- return "jingdong.mfa.inner.sendCodeToMobile";
- }
-
- 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 $rKey;
-
- public function setRKey($rKey){
- $this->rKey = $rKey;
- $this->apiParas["rKey"] = $rKey;
- }
- public function getRKey(){
- return $this->rKey;
- }
- private $validateType;
-
- public function setValidateType($validateType){
- $this->validateType = $validateType;
- $this->apiParas["validateType"] = $validateType;
- }
- public function getValidateType(){
- return $this->validateType;
- }
- }
-
-
|