enabled; } /** * @param int|null $enabled */ public function setEnabled($enabled) { $this->enabled = $enabled; } /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * @return mixed */ public function getUser() { return $this->user; } /** * @param mixed $user */ public function setUser($user) { $this->user = $user; } /** * Set name. * * @param string $name * * @return ExpenseKind */ public function setName($name) { $this->name = $name; return $this; } /** * Get name. * * @return string */ public function getName() { return $this->name; } /** * Set delay. * * @param int|null $delay * * @return ExpenseKind */ public function setDelay($delay = null) { $this->delay = $delay; return $this; } /** * Get delay. * * @return int|null */ public function getDelay() { return $this->delay; } /** * Set repeatitions. * * @param int|null $repeatitions * * @return ExpenseKind */ public function setRepeatitions($repeatitions = null) { $this->repeatitions = $repeatitions; return $this; } /** * Get repeatitions. * * @return int|null */ public function getRepeatitions() { return $this->repeatitions; } /** * Set amount. * * @param float $amount * * @return ExpenseKind */ public function setAmount($amount) { $this->amount = $amount; return $this; } /** * Get amount. * * @return float */ public function getAmount() { return $this->amount; } public function getAdmin(): ?Admin { return $this->admin; } public function setAdmin(?Admin $admin): static { $this->admin = $admin; return $this; } }