Class: Kaltura::KalturaFlavorAssetBaseFilter

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

Direct Known Subclasses

KalturaFlavorAssetFilter

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

#flavor_params_id_equalObject

Returns the value of attribute flavor_params_id_equal.



13322
13323
13324
# File 'lib/kaltura_types.rb', line 13322

def flavor_params_id_equal
  @flavor_params_id_equal
end

#flavor_params_id_inObject

Returns the value of attribute flavor_params_id_in.



13323
13324
13325
# File 'lib/kaltura_types.rb', line 13323

def flavor_params_id_in
  @flavor_params_id_in
end

#status_equalObject

Returns the value of attribute status_equal.



13324
13325
13326
# File 'lib/kaltura_types.rb', line 13324

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



13325
13326
13327
# File 'lib/kaltura_types.rb', line 13325

def status_in
  @status_in
end

#status_not_inObject

Returns the value of attribute status_not_in.



13326
13327
13328
# File 'lib/kaltura_types.rb', line 13326

def status_not_in
  @status_not_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13335
13336
13337
13338
13339
13340
13341
13342
# File 'lib/kaltura_types.rb', line 13335

def from_xml(xml_element)
	super
	self.flavor_params_id_equal = xml_element.elements['flavorParamsIdEqual'].text
	self.flavor_params_id_in = xml_element.elements['flavorParamsIdIn'].text
	self.status_equal = xml_element.elements['statusEqual'].text
	self.status_in = xml_element.elements['statusIn'].text
	self.status_not_in = xml_element.elements['statusNotIn'].text
end