for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Mapado\RestClientSdk\Tests\Model\Hal;
/**
* Class Order
*
* @author Julien Deniau <[email protected]>
*/
class Order
{
private $id;
private $total;
private $currency;
private $status;
* Getter for id
* @return string
public function getId()
return $this->id;
}
* Setter for id
* @param string $id
* @return Order
public function setId($id)
$this->id = $id;
return $this;
* Getter for total
* @return float
public function getTotal()
return $this->total;
* Setter for total
* @param float $total
public function setTotal($total)
$this->total = $total;
* Getter for currency
public function getCurrency()
return $this->currency;
* Setter for currency
* @param string $currency
public function setCurrency($currency)
$this->currency = $currency;
* Getter for status
public function getStatus()
return $this->status;
* Setter for status
* @param string $status
public function setStatus($status)
$this->status = $status;