for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thepixeldeveloper\Mondo\Response\Merchant;
use JMS\Serializer\Annotation as JMS;
/**
* Class Address
*
* @package Thepixeldeveloper\Mondo\Response\Merchant
*/
class Address
{
* Address.
* @var string
* @JMS\Type("string")
protected $address;
* City.
protected $city;
* Country.
protected $country;
* Latitude.
protected $lat;
* Longitude.
protected $lon;
* Post code.
protected $postCode;
* Region.
protected $region;
* @return string
public function getAddress()
return $this->address;
}
public function getCity()
return $this->city;
public function getCountry()
return $this->country;
public function getLat()
return $this->lat;
public function getLon()
return $this->lon;
public function getPostCode()
return $this->postCode;
public function getRegion()
return $this->region;