Class: Kaltura::KalturaAssetFilter

Inherits:
KalturaAssetBaseFilter show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaAssetBaseFilter

#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #deleted_at_greater_than_or_equal, #deleted_at_less_than_or_equal, #entry_id_equal, #entry_id_in, #id_equal, #id_in, #partner_id_equal, #partner_id_in, #size_greater_than_or_equal, #size_less_than_or_equal, #tags_like, #tags_multi_like_and, #tags_multi_like_or, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal

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

#type_inObject

Returns the value of attribute type_in.



3770
3771
3772
# File 'lib/kaltura_types.rb', line 3770

def type_in
  @type_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3773
3774
3775
3776
3777
3778
# File 'lib/kaltura_types.rb', line 3773

def from_xml(xml_element)
	super
	if xml_element.elements['typeIn'] != nil
		self.type_in = xml_element.elements['typeIn'].text
	end
end