Api\ServiceType\ApiService::messageReport PHP Method

messageReport() public method

Method to call the operation originally named messageReport Meta informations extracted from the WSDL - SOAPHeaderNames : SessionHeader, ClusterHeader - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader - SOAPHeaders : optional, required
public messageReport ( Api\StructType\ApiMessageReport $parameter ) : Api\StructType\ApiMessageReportResponse | boolean
$parameter Api\StructType\ApiMessageReport
return Api\StructType\ApiMessageReportResponse | boolean
    public function messageReport(\Api\StructType\ApiMessageReport $parameter)
    {
        try {
            $this->setResult(self::getSoapClient()->messageReport($parameter));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService