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.
25 lines
603 B
25 lines
603 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\PluginBundle\Zoom\API;
|
|
|
|
class MeetingInfoGet extends MeetingInfo
|
|
{
|
|
/** @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 meeting status, either "waiting", "started" or "finished" */
|
|
public $status;
|
|
|
|
/** @var string undocumented */
|
|
public $pstn_password;
|
|
|
|
/** @var string Encrypted password for third party endpoints (H323/SIP). */
|
|
public $encrypted_password;
|
|
}
|
|
|