for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the timechimp bundle package.
* (c) Connect Holland.
*/
namespace ConnectHolland\TimechimpBundle\Api\Model;
class InvoiceRow
{
/**
* @var int|null
protected $id;
protected $invoiceId;
* @var string|null
protected $description;
* @var float|null
protected $quantity;
protected $price;
protected $tax;
protected $total;
protected $index;
protected $code;
public function getId(): ?int
return $this->id;
}
public function setId(?int $id): self
$this->id = $id;
return $this;
public function getInvoiceId(): ?int
return $this->invoiceId;
public function setInvoiceId(?int $invoiceId): self
$this->invoiceId = $invoiceId;
public function getDescription(): ?string
return $this->description;
public function setDescription(?string $description): self
$this->description = $description;
public function getQuantity(): ?float
return $this->quantity;
public function setQuantity(?float $quantity): self
$this->quantity = $quantity;
public function getPrice(): ?float
return $this->price;
public function setPrice(?float $price): self
$this->price = $price;
public function getTax(): ?float
return $this->tax;
public function setTax(?float $tax): self
$this->tax = $tax;
public function getTotal(): ?float
return $this->total;
public function setTotal(?float $total): self
$this->total = $total;
public function getIndex(): ?int
return $this->index;
public function setIndex(?int $index): self
$this->index = $index;
public function getCode(): ?string
return $this->code;
public function setCode(?string $code): self
$this->code = $code;