Api\ServiceType\ApiService::BMGetInventory PHP Method

BMGetInventory() public method

Method to call the operation originally named BMGetInventory Meta informations extracted from the WSDL - SOAPHeaderNames : RequesterCredentials - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType - SOAPHeaders : required
public BMGetInventory ( Api\StructType\ApiBMGetInventoryReq $bMGetInventoryRequest ) : Api\StructType\ApiBMGetInventoryResponseType | boolean
$bMGetInventoryRequest Api\StructType\ApiBMGetInventoryReq
return Api\StructType\ApiBMGetInventoryResponseType | boolean
    public function BMGetInventory(\Api\StructType\ApiBMGetInventoryReq $bMGetInventoryRequest)
    {
        try {
            $this->setResult(self::getSoapClient()->BMGetInventory($bMGetInventoryRequest));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService