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/public/plugin/zoom/lib/API/MeetingListItem.php

44 lines
800 B

<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\PluginBundle\Zoom\API;
use Exception;
/**
* Class MeetingListItem. Item of a list of meetings.
*
* @see MeetingList
*/
class MeetingListItem
{
use BaseMeetingTrait;
use JsonDeserializableTrait;
/** @var string unique meeting instance ID */
public $uuid;
/** @var string meeting number */
public $id;
/** @var string host Zoom user id */
public $host_id;
/** @var string */
public $created_at;
/** @var string */
public $join_url;
/** @var string truncated to 250 characters */
// public $agenda;
/**
* {@inheritdoc}
*/
public function itemClass($propertyName)
{
throw new Exception("no such array property $propertyName");
}
}