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.



726
727
728
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 726

def entry_id
  @entry_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



729
730
731
732
733
734
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 729

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