id; } public function setName($name) { $this->name = $name; return $this; } public function getName() { return $this->name; } public function setTicketType(TicketType $ticket_type) { $this->ticket_type = $ticket_type; return $this; } public function getTicketType() { return $this->ticket_type; } public function setCode($code) { $this->code = $code; return $this; } public function getCode() { return $this->code; } }