Api\ServiceType\ApiService::BMSetInventory PHP Method

BMSetInventory() public method

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