for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the MailChimpEcommerceBundle package.
*
* Copyright (c) 2017 kevin92dev.es
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
* Feel free to edit as you please, and have fun.
* @author Kevin Murillo <[email protected]>
*/
namespace Kevin92dev\MailChimpEcommerceBundle\Entities;
class Store
{
/**
* @var string
private $id;
private $listId;
private $name;
private $domain;
private $emailAddress;
private $currencyCode;
* @return string
public function getId()
return $this->id;
}
* @param string $id
public function setId($id)
$this->id = $id;
public function getListId()
return $this->listId;
* @param string $listId
public function setListId($listId)
$this->listId = $listId;
public function getName()
return $this->name;
* @param string $name
public function setName($name)
$this->name = $name;
public function getDomain()
return $this->domain;
* @param string $domain
public function setDomain($domain)
$this->domain = $domain;
public function getEmailAddress()
return $this->emailAddress;
* @param string $emailAddress
public function setEmailAddress($emailAddress)
$this->emailAddress = $emailAddress;
public function getCurrencyCode()
return $this->currencyCode;
* @param string $currencyCode
public function setCurrencyCode($currencyCode)
$this->currencyCode = $currencyCode;