for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace XoteliaClient\Model;
use JMS\Serializer\Annotation as Serializer;
/**
* @Serializer\ExclusionPolicy("all")
*/
class Currency
{
* @Serializer\Expose()
* @Serializer\Type("string")
*
* @var string
protected $symbol;
protected $name;
protected $symbolNative;
* @Serializer\Type("integer")
* @var int
protected $decimalDigits;
protected $rounding;
protected $code;
protected $namePlural;
* @return string
public function getSymbol()
return $this->symbol;
}
public function getCode()
return $this->code;
* @param $code
* @return $this
public function setCode($code)
$this->code = $code;
return $this;
public function getSymbolNative()
return $this->symbolNative;
public function getName()
return $this->name;