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