Files
Phraseanet/lib/Alchemy/Phrasea/Account/Command/UpdateAccountCommand.php
2015-10-20 09:12:22 +02:00

304 lines
4.5 KiB
PHP

<?php
namespace Alchemy\Phrasea\Account\Command;
class UpdateAccountCommand
{
private $email = null;
private $gender = null;
private $firstName = null;
private $lastName = null;
private $address = null;
private $zipCode = null;
private $city = null;
private $phone = null;
private $fax = null;
private $job = null;
private $company = null;
private $position = null;
private $geonameId = null;
private $notifications = null;
/**
* @return string|null
*/
public function getEmail()
{
return $this->email;
}
/**
* @param $email
* @return $this
*/
public function setEmail($email)
{
$this->email = $email;
return $this;
}
/**
* @return mixed
*/
public function getGender()
{
return $this->gender;
}
/**
* @param mixed $gender
* @return $this
*/
public function setGender($gender)
{
$this->gender = $gender;
return $this;
}
/**
* @return mixed
*/
public function getFirstName()
{
return $this->firstName;
}
/**
* @param mixed $firstName
* @return $this
*/
public function setFirstName($firstName)
{
$this->firstName = $firstName;
return $this;
}
/**
* @return mixed
*/
public function getLastName()
{
return $this->lastName;
}
/**
* @param mixed $lastName
* @return $this
*/
public function setLastName($lastName)
{
$this->lastName = $lastName;
return $this;
}
/**
* @return mixed
*/
public function getAddress()
{
return $this->address;
}
/**
* @param mixed $address
* @return $this
*/
public function setAddress($address)
{
$this->address = $address;
return $this;
}
/**
* @return mixed
*/
public function getZipCode()
{
return $this->zipCode;
}
/**
* @param mixed $zipCode
* @return $this
*/
public function setZipCode($zipCode)
{
$this->zipCode = $zipCode;
return $this;
}
/**
* @return mixed
*/
public function getCity()
{
return $this->city;
}
/**
* @param mixed $city
* @return $this
*/
public function setCity($city)
{
$this->city = $city;
return $this;
}
/**
* @return mixed
*/
public function getPhone()
{
return $this->phone;
}
/**
* @param mixed $phone
* @return $this
*/
public function setPhone($phone)
{
$this->phone = $phone;
return $this;
}
/**
* @return mixed
*/
public function getFax()
{
return $this->fax;
}
/**
* @param mixed $fax
* @return $this
*/
public function setFax($fax)
{
$this->fax = $fax;
return $this;
}
/**
* @return mixed
*/
public function getJob()
{
return $this->job;
}
/**
* @param mixed $job
* @return $this
*/
public function setJob($job)
{
$this->job = $job;
return $this;
}
/**
* @return mixed
*/
public function getCompany()
{
return $this->company;
}
/**
* @param mixed $company
* @return $this
*/
public function setCompany($company)
{
$this->company = $company;
return $this;
}
/**
* @return mixed
*/
public function getPosition()
{
return $this->position;
}
/**
* @param mixed $position
* @return $this
*/
public function setPosition($position)
{
$this->position = $position;
return $this;
}
/**
* @return mixed
*/
public function getGeonameId()
{
return $this->geonameId;
}
/**
* @param mixed $geonameId
* @return $this
*/
public function setGeonameId($geonameId)
{
$this->geonameId = $geonameId;
return $this;
}
/**
* @return mixed
*/
public function getNotifications()
{
return $this->notifications;
}
/**
* @param mixed $notifications
* @return $this
*/
public function setNotifications($notifications)
{
$this->notifications = $notifications;
return $this;
}
}