Inheritance: extends PayPal\EBLBaseComponents\AbstractResponseType
 /**
  * Service Call: GetMobileStatus
  * @param GetMobileStatusReq $getMobileStatusReq
  * @param mixed $apiCredential - Optional API credential - can either be
  * 		a username configured in sdk_config.ini or a ICredential object
  *      created dynamically
  * @return PayPalAPI\GetMobileStatusResponseType
  * @throws APIException
  */
 public function GetMobileStatus($getMobileStatusReq, $apiCredential = NULL)
 {
     $apiContext = new PPApiContext($this->config);
     $handlers = array(new PPMerchantServiceHandler($apiCredential, self::$SDK_NAME, self::$SDK_VERSION));
     $this->setStandardParams($getMobileStatusReq->GetMobileStatusRequest);
     $ret = new GetMobileStatusResponseType();
     $resp = $this->call('PayPalAPI', 'GetMobileStatus', $getMobileStatusReq, $apiContext, $handlers);
     $ret->init(PPUtils::xmlToArray($resp));
     return $ret;
 }
 /**
  * Service Call: GetMobileStatus
  * @param GetMobileStatusReq $getMobileStatusReq
  * @param mixed $apiCredential - Optional API credential - can either be
  * 		a username configured in sdk_config.ini or a ICredential object
  *      created dynamically 		
  * @return PayPalAPI\GetMobileStatusResponseType
  * @throws APIException
  */
 public function GetMobileStatus($getMobileStatusReq, $apiCredential = NULL)
 {
     $this->setStandardParams($getMobileStatusReq->GetMobileStatusRequest);
     $ret = new GetMobileStatusResponseType();
     $resp = $this->call('PayPalAPI', 'GetMobileStatus', $getMobileStatusReq, $apiCredential);
     $ret->init(PPUtils::xmlToArray($resp));
     return $ret;
 }