Class: Kaltura::KalturaCameraScheduleResource

Inherits:
KalturaScheduleResource show all
Defined in:
lib/kaltura_plugins/kaltura_schedule_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaScheduleResource

#created_at, #description, #id, #name, #parent_id, #partner_id, #status, #system_name, #tags, #updated_at

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#stream_urlObject

URL of the stream



625
626
627
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 625

def stream_url
  @stream_url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



628
629
630
631
632
633
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 628

def from_xml(xml_element)
	super
	if xml_element.elements['streamUrl'] != nil
		self.stream_url = xml_element.elements['streamUrl'].text
	end
end