Rev 5050 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
<?php
declare(strict_types=1);
namespace LeadersLinked\Model;
class CalendarEvent
{
const TYPE_ZOOM = 'zoom';
const TYPE_PERFORMANCE_EVALUATION = 'performance-evaluation';
const TYPE_RECRUITMENT_SELECTION_INTERVIEW = 'recruitment-selection-interview';
const TYPE_SURVEY_NORMAL = 'survey-normal';
const TYPE_SURVEY_ORGANIZATIONAL_CLIMATE = 'survey-organizational-climate';
/**
*
* @var int
*/
public $id;
/**
*
* @var int
*/
public $user_id;
/**
*
* @var string
*/
public $start_time;
/**
*
* @var string
*/
public $end_time;
/**
*
* @var string
*/
public $type;
/**
*
* @var int
*/
public $relational_id;
/**
*
* @var string
*/
public $added_on;
}