nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Get nombre * * @return string */ public function __toString() { return $this->nombre; } /** * Set identificador * * @param string $identificador * @return TipoDocumentos */ public function setIdentificador($identificador) { $this->identificador = $identificador; return $this; } /** * Get identificador * * @return string */ public function getIdentificador() { return $this->identificador; } }