Class: Kaltura::KalturaLiveFeature

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#post_end_timeObject

Returns the value of attribute post_end_time.



214
215
216
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 214

def post_end_time
  @post_end_time
end

#pre_start_timeObject

Returns the value of attribute pre_start_time.



213
214
215
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 213

def pre_start_time
  @pre_start_time
end

#system_nameObject

Returns the value of attribute system_name.



212
213
214
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 212

def system_name
  @system_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



223
224
225
226
227
228
229
230
231
232
233
234
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 223

def from_xml(xml_element)
	super
	if xml_element.elements['systemName'] != nil
		self.system_name = xml_element.elements['systemName'].text
	end
	if xml_element.elements['preStartTime'] != nil
		self.pre_start_time = xml_element.elements['preStartTime'].text
	end
	if xml_element.elements['postEndTime'] != nil
		self.post_end_time = xml_element.elements['postEndTime'].text
	end
end