. */ namespace SP\DataModel; /** * Class AccountHistoryData * * @package SP\DataModel */ class AccountHistoryData extends AccountExtData { /** * @var bool */ public $isModify = 0; /** * @var bool */ public $isDeleted = 0; /** * @var int */ public $accountId; /** * @return int */ public function isIsModify() { return (int)$this->isModify; } /** * @param boolean $isModify */ public function setIsModify($isModify) { $this->isModify = (int)$isModify; } /** * @return int */ public function isIsDeleted() { return (int)$this->isDeleted; } /** * @param boolean $isDeleted */ public function setIsDeleted($isDeleted) { $this->isDeleted = (int)$isDeleted; } /** * @return int */ public function getAccountId() { return $this->accountId; } /** * @param int $accountId */ public function setAccountId($accountId) { $this->accountId = $accountId; } }