false])] #[Assert\Type(type: 'boolean')] #[Assert\NotNull] #[Groups(['billdebitbalance'])] private $isUsed = false; /** * Constructor */ public function __construct() { $this->accessBilling = new ArrayCollection(); } /** * Sets id. * * @param int $id * * @return $this */ public function setId($id) { $this->id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Set amount * * @param float $amount * * @return BillDebitBalance */ public function setAmount($amount) { $this->amount = $amount; return $this; } /** * Get amount * * @return float */ public function getAmount() { return $this->amount; } /** * Set accessBilling * * @param \AppBundle\Entity\Billing\AccessBilling $accessBilling * * @return BillDebitBalance */ public function setAccessBilling(\AppBundle\Entity\Billing\AccessBilling $accessBilling) { $this->accessBilling = $accessBilling; return $this; } /** * Get accessBilling * * @return \AppBundle\Entity\Billing\AccessBilling */ public function getAccessBilling() { return $this->accessBilling; } /** * Set billPayment * * @param \AppBundle\Entity\Billing\BillPayment $billPayment * * @return BillDebitBalance */ public function setBillPayment(\AppBundle\Entity\Billing\BillPayment $billPayment) { $this->billPayment = $billPayment; return $this; } /** * Get billPayment * * @return \AppBundle\Entity\Billing\BillPayment */ public function getBillPayment() { return $this->billPayment; } /** * Set isUsed * * @param boolean $isUsed * * @return BillDebitBalance */ public function setIsUsed($isUsed) { $this->isUsed = $isUsed; return $this; } /** * Get isUsed * * @return boolean */ public function getIsUsed() { return $this->isUsed; } }