_propDict)) { return $this->_propDict["code"]; } else { return null; } } /** * Sets the code * A codified representation for this country/region of origin. * * @param string $val The value of the code * * @return IntelligenceProfileCountryOrRegionOfOrigin */ public function setCode($val) { $this->_propDict["code"] = $val; return $this; } /** * Gets the label * A display label for this ountry/region of origin. * * @return string|null The label */ public function getLabel() { if (array_key_exists("label", $this->_propDict)) { return $this->_propDict["label"]; } else { return null; } } /** * Sets the label * A display label for this ountry/region of origin. * * @param string $val The value of the label * * @return IntelligenceProfileCountryOrRegionOfOrigin */ public function setLabel($val) { $this->_propDict["label"] = $val; return $this; } }