| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <?php
- class MfaUserUnifiedAuthenticationRequest
- {
- private $apiParas = array();
-
- public function getApiMethodName(){
- return "jingdong.mfa.userUnifiedAuthentication";
- }
-
- 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 $returnUrl;
-
- public function setReturnUrl($returnUrl){
- $this->returnUrl = $returnUrl;
- $this->apiParas["returnUrl"] = $returnUrl;
- }
- public function getReturnUrl(){
- return $this->returnUrl;
- }
- private $deviceOSType;
-
- public function setDeviceOSType($deviceOSType){
- $this->deviceOSType = $deviceOSType;
- $this->apiParas["deviceOSType"] = $deviceOSType;
- }
- public function getDeviceOSType(){
- return $this->deviceOSType;
- }
- private $appId;
-
- public function setAppId($appId){
- $this->appId = $appId;
- $this->apiParas["appId"] = $appId;
- }
- public function getAppId(){
- return $this->appId;
- }
- private $businessType;
-
- public function setBusinessType($businessType){
- $this->businessType = $businessType;
- $this->apiParas["businessType"] = $businessType;
- }
- public function getBusinessType(){
- return $this->businessType;
- }
- private $eid;
-
- public function setEid($eid){
- $this->eid = $eid;
- $this->apiParas["eid"] = $eid;
- }
- public function getEid(){
- return $this->eid;
- }
- private $openUDID;
-
- public function setOpenUDID($openUDID){
- $this->openUDID = $openUDID;
- $this->apiParas["openUDID"] = $openUDID;
- }
- public function getOpenUDID(){
- return $this->openUDID;
- }
- private $source;
-
- public function setSource($source){
- $this->source = $source;
- $this->apiParas["source"] = $source;
- }
- public function getSource(){
- return $this->source;
- }
- private $deviceName;
-
- public function setDeviceName($deviceName){
- $this->deviceName = $deviceName;
- $this->apiParas["deviceName"] = $deviceName;
- }
- public function getDeviceName(){
- return $this->deviceName;
- }
- private $email;
-
- public function setEmail($email){
- $this->email = $email;
- $this->apiParas["email"] = $email;
- }
- public function getEmail(){
- return $this->email;
- }
- private $deviceOSVersion;
-
- public function setDeviceOSVersion($deviceOSVersion){
- $this->deviceOSVersion = $deviceOSVersion;
- $this->apiParas["deviceOSVersion"] = $deviceOSVersion;
- }
- public function getDeviceOSVersion(){
- return $this->deviceOSVersion;
- }
- private $pin;
-
- public function setPin($pin){
- $this->pin = $pin;
- $this->apiParas["pin"] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
- private $appVersion;
-
- public function setAppVersion($appVersion){
- $this->appVersion = $appVersion;
- $this->apiParas["appVersion"] = $appVersion;
- }
- public function getAppVersion(){
- return $this->appVersion;
- }
- private $loginChannel;
-
- public function setLoginChannel($loginChannel){
- $this->loginChannel = $loginChannel;
- $this->apiParas["loginChannel"] = $loginChannel;
- }
- public function getLoginChannel(){
- return $this->loginChannel;
- }
- private $authType;
-
- public function setAuthType($authType){
- $this->authType = $authType;
- $this->apiParas["authType"] = $authType;
- }
- public function getAuthType(){
- return $this->authType;
- }
- private $clientIp;
-
- public function setClientIp($clientIp){
- $this->clientIp = $clientIp;
- $this->apiParas["clientIp"] = $clientIp;
- }
- public function getClientIp(){
- return $this->clientIp;
- }
- private $uuid;
-
- public function setUuid($uuid){
- $this->uuid = $uuid;
- $this->apiParas["uuid"] = $uuid;
- }
- public function getUuid(){
- return $this->uuid;
- }
- private $mobile;
-
- public function setMobile($mobile){
- $this->mobile = $mobile;
- $this->apiParas["mobile"] = $mobile;
- }
- public function getMobile(){
- return $this->mobile;
- }
- private $openIdBuyer;
-
- public function setOpenIdBuyer($openIdBuyer){
- $this->openIdBuyer = $openIdBuyer;
- $this->apiParas["open_id_buyer"] = $openIdBuyer;
- }
- public function getOpenIdBuyer(){
- return $this->openIdBuyer;
- }
- private $xidBuyer;
-
- public function setXidBuyer($xidBuyer){
- $this->xidBuyer = $xidBuyer;
- $this->apiParas["xid_buyer"] = $xidBuyer;
- }
- public function getXidBuyer(){
- return $this->xidBuyer;
- }
- }
-
-
|