<?php
namespace Documents;
/** @EmbeddedDocument */
class Address
{
/** @String */
private $street;
/** @String */
private $city;
/** @String */
private $state;
/** @String */
private $postalCode;
public function getStreet()
{
return $this->street;
}
public function setStreet($street)
{
$this->street = $street;
}
public function getCity()
{
return $this->city;
}
public function setCity($city)
{
$this->city = $city;
}
public function getState()
{
return $this->state;
}
public function setState($state)
{
$this->state = $state;
}
public function getPostalCode()
{
return $this->postalCode;
}
public function setPostalCode($postalCode)
{
$this->postalCode = $postalCode;
}
}