Class: Kaltura::KalturaFilter

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.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

#advanced_searchObject

Returns the value of attribute advanced_search.



3641
3642
3643
# File 'lib/kaltura_types.rb', line 3641

def advanced_search
  @advanced_search
end

#order_byObject

Returns the value of attribute order_by.



3640
3641
3642
# File 'lib/kaltura_types.rb', line 3640

def order_by
  @order_by
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3644
3645
3646
3647
3648
3649
3650
3651
3652
# File 'lib/kaltura_types.rb', line 3644

def from_xml(xml_element)
	super
	if xml_element.elements['orderBy'] != nil
		self.order_by = xml_element.elements['orderBy'].text
	end
	if xml_element.elements['advancedSearch'] != nil
		self.advanced_search = KalturaClientBase.object_from_xml(xml_element.elements['advancedSearch'], 'KalturaSearchItem')
	end
end