Class: Kaltura::KalturaLiveEntryScheduleResource

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

#entry_idObject

Returns the value of attribute entry_id.



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

def entry_id
  @entry_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



632
633
634
635
636
637
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 632

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