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.
46 lines
1016 B
46 lines
1016 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\PluginBundle\Zoom\API;
|
|
|
|
class PastMeeting extends Meeting
|
|
{
|
|
/** @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 $topic;
|
|
|
|
/** @var int @see Meeting */
|
|
public $type;
|
|
|
|
/** @var string user display name */
|
|
public $user_name;
|
|
|
|
/** @var string */
|
|
public $user_email;
|
|
|
|
/** @var string "yyyy-MM-dd'T'HH:mm:ss'Z'" (GMT) */
|
|
public $start_time;
|
|
|
|
/** @var string "yyyy-MM-dd'T'HH:mm:ss'Z'" (GMT) */
|
|
public $end_time;
|
|
|
|
/** @var int in minutes, for scheduled meetings only */
|
|
public $duration;
|
|
|
|
/** @var int sum of meeting minutes from all participants in the meeting. */
|
|
public $total_minutes;
|
|
|
|
/** @var int number of meeting participants */
|
|
public $participants_count;
|
|
|
|
/** @var string undocumented */
|
|
public $dept;
|
|
}
|
|
|