id; } /** * Set agreement * * @param boolean $agreement * @return ValidationData */ public function setAgreement($agreement) { $this->agreement = $agreement; return $this; } /** * Get agreement * * @return boolean */ public function getAgreement() { return $this->agreement; } /** * Set note * * @param string $note * @return ValidationData */ public function setNote($note) { $this->note = $note; return $this; } /** * Get note * * @return string */ public function getNote() { return $this->note; } /** * Set updated * * @param \DateTime $updated * @return ValidationData */ public function setUpdated(\DateTime $updated) { $this->updated = $updated; return $this; } /** * Get updated * * @return \DateTime */ public function getUpdated() { return $this->updated; } /** * Set participant * * @param ValidationParticipant $participant * @return ValidationData */ public function setParticipant(ValidationParticipant $participant = null) { $this->participant = $participant; return $this; } /** * Get participant * * @return ValidationParticipant */ public function getParticipant() { return $this->participant; } /** * Set basket_element * * @param BasketElement $basketElement * @return ValidationData */ public function setBasketElement(BasketElement $basketElement = null) { $this->basket_element = $basketElement; return $this; } /** * Get basket_element * * @return BasketElement */ public function getBasketElement() { return $this->basket_element; } }