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.



1148
1149
1150
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1148

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.



1149
1150
1151
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1149

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.



1147
1148
1149
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1147

def free_text
  @free_text
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1158

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