Api\ServiceType\ApiService::GetIncentiveEvaluation PHP Method

GetIncentiveEvaluation() public method

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