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.



751
752
753
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 751

def service_feature_equal
  @service_feature_equal
end

#service_feature_inObject

Returns the value of attribute service_feature_in.



752
753
754
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 752

def service_feature_in
  @service_feature_in
end

#service_type_equalObject

Returns the value of attribute service_type_equal.



749
750
751
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 749

def service_type_equal
  @service_type_equal
end

#service_type_inObject

Returns the value of attribute service_type_in.



750
751
752
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 750

def service_type_in
  @service_type_in
end

#source_language_equalObject

Returns the value of attribute source_language_equal.



755
756
757
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 755

def source_language_equal
  @source_language_equal
end

#target_language_equalObject

Returns the value of attribute target_language_equal.



756
757
758
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 756

def target_language_equal
  @target_language_equal
end

#turn_around_time_equalObject

Returns the value of attribute turn_around_time_equal.



753
754
755
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 753

def turn_around_time_equal
  @turn_around_time_equal
end

#turn_around_time_inObject

Returns the value of attribute turn_around_time_in.



754
755
756
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 754

def turn_around_time_in
  @turn_around_time_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 768

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