Class: Kaltura::KalturaEntryVendorTaskFilter

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

Instance Attribute Summary collapse

Attributes inherited from KalturaEntryVendorTaskBaseFilter

#catalog_item_id_equal, #catalog_item_id_in, #context_equal, #created_at_greater_than_or_equal, #created_at_less_than_or_equal, #entry_id_equal, #finish_time_greater_than_or_equal, #finish_time_less_than_or_equal, #id_equal, #id_in, #queue_time_greater_than_or_equal, #queue_time_less_than_or_equal, #reach_profile_id_equal, #reach_profile_id_in, #status_equal, #status_in, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal, #user_id_equal, #vendor_partner_id_equal, #vendor_partner_id_in

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#expected_finish_time_greater_than_or_equalObject

Returns the value of attribute expected_finish_time_greater_than_or_equal.



1201
1202
1203
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1201

def expected_finish_time_greater_than_or_equal
  @expected_finish_time_greater_than_or_equal
end

#expected_finish_time_less_than_or_equalObject

Returns the value of attribute expected_finish_time_less_than_or_equal.



1202
1203
1204
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1202

def expected_finish_time_less_than_or_equal
  @expected_finish_time_less_than_or_equal
end

#free_textObject

Returns the value of attribute free_text.



1200
1201
1202
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1200

def free_text
  @free_text
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1211

def from_xml(xml_element)
	super
	if xml_element.elements['freeText'] != nil
		self.free_text = xml_element.elements['freeText'].text
	end
	if xml_element.elements['expectedFinishTimeGreaterThanOrEqual'] != nil
		self.expected_finish_time_greater_than_or_equal = xml_element.elements['expectedFinishTimeGreaterThanOrEqual'].text
	end
	if xml_element.elements['expectedFinishTimeLessThanOrEqual'] != nil
		self.expected_finish_time_less_than_or_equal = xml_element.elements['expectedFinishTimeLessThanOrEqual'].text
	end
end