. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_TimeContextField extends Kaltura_Client_Type_IntegerField { public function getKalturaObjectType() { return 'KalturaTimeContextField'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; if(count($xml->offset)) $this->offset = (int)$xml->offset; } /** * Time offset in seconds since current time * * * @var int */ public $offset = null; }