Class: Kaltura::KalturaCatalogItemAdvancedFilter

Inherits:
KalturaSearchItem show all
Defined in:
lib/kaltura_plugins/kaltura_reach_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

#service_feature_equalObject

Returns the value of attribute service_feature_equal.



704
705
706
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 704

def service_feature_equal
  @service_feature_equal
end

#service_feature_inObject

Returns the value of attribute service_feature_in.



705
706
707
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 705

def service_feature_in
  @service_feature_in
end

#service_type_equalObject

Returns the value of attribute service_type_equal.



702
703
704
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 702

def service_type_equal
  @service_type_equal
end

#service_type_inObject

Returns the value of attribute service_type_in.



703
704
705
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 703

def service_type_in
  @service_type_in
end

#source_language_equalObject

Returns the value of attribute source_language_equal.



708
709
710
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 708

def source_language_equal
  @source_language_equal
end

#target_language_equalObject

Returns the value of attribute target_language_equal.



709
710
711
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 709

def target_language_equal
  @target_language_equal
end

#turn_around_time_equalObject

Returns the value of attribute turn_around_time_equal.



706
707
708
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 706

def turn_around_time_equal
  @turn_around_time_equal
end

#turn_around_time_inObject

Returns the value of attribute turn_around_time_in.



707
708
709
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 707

def turn_around_time_in
  @turn_around_time_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 721

def from_xml(xml_element)
  super
  if xml_element.elements['serviceTypeEqual'] != nil
    self.service_type_equal = xml_element.elements['serviceTypeEqual'].text
  end
  if xml_element.elements['serviceTypeIn'] != nil
    self.service_type_in = xml_element.elements['serviceTypeIn'].text
  end
  if xml_element.elements['serviceFeatureEqual'] != nil
    self.service_feature_equal = xml_element.elements['serviceFeatureEqual'].text
  end
  if xml_element.elements['serviceFeatureIn'] != nil
    self.service_feature_in = xml_element.elements['serviceFeatureIn'].text
  end
  if xml_element.elements['turnAroundTimeEqual'] != nil
    self.turn_around_time_equal = xml_element.elements['turnAroundTimeEqual'].text
  end
  if xml_element.elements['turnAroundTimeIn'] != nil
    self.turn_around_time_in = xml_element.elements['turnAroundTimeIn'].text
  end
  if xml_element.elements['sourceLanguageEqual'] != nil
    self.source_language_equal = xml_element.elements['sourceLanguageEqual'].text
  end
  if xml_element.elements['targetLanguageEqual'] != nil
    self.target_language_equal = xml_element.elements['targetLanguageEqual'].text
  end
end