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.



2336
2337
2338
# File 'lib/kaltura_types.rb', line 2336

def advanced_search
  @advanced_search
end

#order_byObject

Returns the value of attribute order_by.



2335
2336
2337
# File 'lib/kaltura_types.rb', line 2335

def order_by
  @order_by
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2339
2340
2341
2342
2343
# File 'lib/kaltura_types.rb', line 2339

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