40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
/*+***********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*************************************************************************************/
|
|
require_once 'modules/WSAPP/synclib/models/BaseModel.php';
|
|
|
|
class WSAPP_PullResultModel extends WSAPP_BaseModel{
|
|
|
|
public function setPulledRecords($records){
|
|
return $this->set('pulledrecords',$records);
|
|
}
|
|
|
|
public function getPulledRecords(){
|
|
return $this->get('pulledrecords');
|
|
}
|
|
|
|
public function setNextSyncState(WSAPP_SyncStateModel $syncStateModel){
|
|
return $this->set('nextsyncstate',$syncStateModel);
|
|
}
|
|
|
|
public function getNextSyncState(){
|
|
return $this->get('nextsyncstate');
|
|
}
|
|
|
|
public function setPrevSyncState(WSAPP_SyncStateModel $syncStateModel){
|
|
return $this->set('prevsyncstate',$syncStateModel);
|
|
}
|
|
|
|
public function getPrevSyncState(){
|
|
return $this->get('prevsyncstate');
|
|
}
|
|
}
|
|
|
|
?>
|