Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/inc/entity/survey_invitation.class.php

271 lines
4.5 KiB

<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class SurveyInvitation extends \CourseEntity
{
/**
* @return \Entity\Repository\SurveyInvitationRepository
*/
public static function repository(){
return \Entity\Repository\SurveyInvitationRepository::instance();
}
/**
* @return \Entity\SurveyInvitation
*/
public static function create(){
return new self();
}
/**
* @var integer $c_id
*/
protected $c_id;
/**
* @var integer $survey_invitation_id
*/
protected $survey_invitation_id;
/**
* @var string $survey_code
*/
protected $survey_code;
/**
* @var string $user
*/
protected $user;
/**
* @var string $invitation_code
*/
protected $invitation_code;
/**
* @var datetime $invitation_date
*/
protected $invitation_date;
/**
* @var datetime $reminder_date
*/
protected $reminder_date;
/**
* @var integer $answered
*/
protected $answered;
/**
* @var integer $session_id
*/
protected $session_id;
/**
* Set c_id
*
* @param integer $value
* @return SurveyInvitation
*/
public function set_c_id($value)
{
$this->c_id = $value;
return $this;
}
/**
* Get c_id
*
* @return integer
*/
public function get_c_id()
{
return $this->c_id;
}
/**
* Set survey_invitation_id
*
* @param integer $value
* @return SurveyInvitation
*/
public function set_survey_invitation_id($value)
{
$this->survey_invitation_id = $value;
return $this;
}
/**
* Get survey_invitation_id
*
* @return integer
*/
public function get_survey_invitation_id()
{
return $this->survey_invitation_id;
}
/**
* Set survey_code
*
* @param string $value
* @return SurveyInvitation
*/
public function set_survey_code($value)
{
$this->survey_code = $value;
return $this;
}
/**
* Get survey_code
*
* @return string
*/
public function get_survey_code()
{
return $this->survey_code;
}
/**
* Set user
*
* @param string $value
* @return SurveyInvitation
*/
public function set_user($value)
{
$this->user = $value;
return $this;
}
/**
* Get user
*
* @return string
*/
public function get_user()
{
return $this->user;
}
/**
* Set invitation_code
*
* @param string $value
* @return SurveyInvitation
*/
public function set_invitation_code($value)
{
$this->invitation_code = $value;
return $this;
}
/**
* Get invitation_code
*
* @return string
*/
public function get_invitation_code()
{
return $this->invitation_code;
}
/**
* Set invitation_date
*
* @param datetime $value
* @return SurveyInvitation
*/
public function set_invitation_date($value)
{
$this->invitation_date = $value;
return $this;
}
/**
* Get invitation_date
*
* @return datetime
*/
public function get_invitation_date()
{
return $this->invitation_date;
}
/**
* Set reminder_date
*
* @param datetime $value
* @return SurveyInvitation
*/
public function set_reminder_date($value)
{
$this->reminder_date = $value;
return $this;
}
/**
* Get reminder_date
*
* @return datetime
*/
public function get_reminder_date()
{
return $this->reminder_date;
}
/**
* Set answered
*
* @param integer $value
* @return SurveyInvitation
*/
public function set_answered($value)
{
$this->answered = $value;
return $this;
}
/**
* Get answered
*
* @return integer
*/
public function get_answered()
{
return $this->answered;
}
/**
* Set session_id
*
* @param integer $value
* @return SurveyInvitation
*/
public function set_session_id($value)
{
$this->session_id = $value;
return $this;
}
/**
* Get session_id
*
* @return integer
*/
public function get_session_id()
{
return $this->session_id;
}
}