id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Set htNoReduc * * @param float $htNoReduc * * @return BillTotalDetail */ public function setHtNoReduc($htNoReduc) { $this->htNoReduc = $htNoReduc; return $this; } /** * Get htNoReduc * * @return float */ public function getHtNoReduc() { return $this->htNoReduc; } /** * Set ht * * @param float $ht * * @return BillTotalDetail */ public function setHt($ht) { $this->ht = $ht; return $this; } /** * Get ht * * @return float */ public function getHt() { return $this->ht; } /** * Set ttc * * @param float $ttc * * @return BillTotalDetail */ public function setTtc($ttc) { $this->ttc = $ttc; return $this; } /** * Get ttc * * @return float */ public function getTtc() { return $this->ttc; } /** * Set totalReduction * * @param float $totalReduction * * @return BillTotalDetail */ public function setTotalReduction($totalReduction) { $this->totalReduction = $totalReduction; return $this; } /** * Get totalReduction * * @return float */ public function getTotalReduction() { return $this->totalReduction; } /** * Set vat * * @param array $vat * * @return BillTotalDetail */ public function setVat($vat) { $this->vat = $vat; return $this; } /** * Get vat * * @return array */ public function getVat() { return $this->vat; } }