Api\ServiceType\ApiService::BMUpdateButton PHP Method

BMUpdateButton() public method

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