* *
  • City: string
  • *
  • State: string
  • *
  • Country: string
  • * * */ class FBAOutboundServiceMWS_Model_TrackingAddress extends FBAOutboundServiceMWS_Model { public function __construct($data = null) { $this->_fields = array ( 'City' => array('FieldValue' => null, 'FieldType' => 'string'), 'State' => array('FieldValue' => null, 'FieldType' => 'string'), 'Country' => array('FieldValue' => null, 'FieldType' => 'string'), ); parent::__construct($data); } /** * Get the value of the City property. * * @return String City. */ public function getCity() { return $this->_fields['City']['FieldValue']; } /** * Set the value of the City property. * * @param string city * @return this instance */ public function setCity($value) { $this->_fields['City']['FieldValue'] = $value; return $this; } /** * Check to see if City is set. * * @return true if City is set. */ public function isSetCity() { return !is_null($this->_fields['City']['FieldValue']); } /** * Set the value of City, return this. * * @param city * The new value to set. * * @return This instance. */ public function withCity($value) { $this->setCity($value); return $this; } /** * Get the value of the State property. * * @return String State. */ public function getState() { return $this->_fields['State']['FieldValue']; } /** * Set the value of the State property. * * @param string state * @return this instance */ public function setState($value) { $this->_fields['State']['FieldValue'] = $value; return $this; } /** * Check to see if State is set. * * @return true if State is set. */ public function isSetState() { return !is_null($this->_fields['State']['FieldValue']); } /** * Set the value of State, return this. * * @param state * The new value to set. * * @return This instance. */ public function withState($value) { $this->setState($value); return $this; } /** * Get the value of the Country property. * * @return String Country. */ public function getCountry() { return $this->_fields['Country']['FieldValue']; } /** * Set the value of the Country property. * * @param string country * @return this instance */ public function setCountry($value) { $this->_fields['Country']['FieldValue'] = $value; return $this; } /** * Check to see if Country is set. * * @return true if Country is set. */ public function isSetCountry() { return !is_null($this->_fields['Country']['FieldValue']); } /** * Set the value of Country, return this. * * @param country * The new value to set. * * @return This instance. */ public function withCountry($value) { $this->setCountry($value); return $this; } }