. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_LiveChannel extends Kaltura_Client_Type_LiveEntry { public function getKalturaObjectType() { return 'KalturaLiveChannel'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->playlistId = (string)$xml->playlistId; if(count($xml->repeat)) $this->repeat = (int)$xml->repeat; } /** * Playlist id to be played * * * @var string */ public $playlistId = null; /** * Indicates that the segments should be repeated for ever * * * @var Kaltura_Client_Enum_NullableBoolean */ public $repeat = null; }