ServiceType\Get::GetChanges PHP Method

GetChanges() public method

Method to call the operation originally named GetChanges
public GetChanges ( StructType\GetChangesRequest $params ) : StructType\GetChangesResponse | boolean
$params StructType\GetChangesRequest
return StructType\GetChangesResponse | boolean
    public function GetChanges(\StructType\GetChangesRequest $params)
    {
        try {
            $this->setResult(self::getSoapClient()->GetChanges($params));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }