Class: Kaltura::KalturaScheduledVendorTaskData

Inherits:
KalturaVendorTaskData show all
Defined in:
lib/kaltura_plugins/kaltura_reach_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaVendorTaskData

#entry_duration

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#end_dateObject

Returns the value of attribute end_date.



911
912
913
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 911

def end_date
  @end_date
end

#scheduled_event_idObject

Returns the value of attribute scheduled_event_id.



912
913
914
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 912

def scheduled_event_id
  @scheduled_event_id
end

#start_dateObject

Returns the value of attribute start_date.



910
911
912
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 910

def start_date
  @start_date
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



924
925
926
927
928
929
930
931
932
933
934
935
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 924

def from_xml(xml_element)
	super
	if xml_element.elements['startDate'] != nil
		self.start_date = xml_element.elements['startDate'].text
	end
	if xml_element.elements['endDate'] != nil
		self.end_date = xml_element.elements['endDate'].text
	end
	if xml_element.elements['scheduledEventId'] != nil
		self.scheduled_event_id = xml_element.elements['scheduledEventId'].text
	end
end