for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thepixeldeveloper\Mondo\Response;
use JMS\Serializer\Annotation as JMS;
use Thepixeldeveloper\Mondo\Response\Merchant\Address;
/**
* Class Merchant
*
* @package Thepixeldeveloper\Mondo\Response
*/
class Merchant
{
* Address.
* @var Address
* @JMS\Type("Thepixeldeveloper\Mondo\Response\Merchant\Address")
protected $address;
* Created date.
* @var \DateTime
* @JMS\Type("DateTime")
protected $created;
* Group Id.
* @var string
* @JMS\Type("string")
protected $groupId;
* Id.
protected $id;
* Logo.
protected $logo;
* Emoji.
protected $emoji;
* Name.
protected $name;
* Category.
protected $category;
* @return Address
public function getAddress()
return $this->address;
}
* @return \DateTime
public function getCreated()
return $this->created;
* @return string
public function getGroupId()
return $this->groupId;
public function getId()
return $this->id;
public function getLogo()
return $this->logo;
public function getEmoji()
return $this->emoji;
public function getName()
return $this->name;
public function getCategory()
return $this->category;