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, #id_not_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.



1242
1243
1244
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1242

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.



1243
1244
1245
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1243

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.



1241
1242
1243
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1241

def free_text
  @free_text
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1252

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