Class: Kaltura::KalturaAccessControlLimitFlavorsAction

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

Instance Attribute Summary collapse

Attributes inherited from KalturaRuleAction

#type

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_idsObject

Comma separated list of flavor ids



10264
10265
10266
# File 'lib/kaltura_types.rb', line 10264

def flavor_params_ids
  @flavor_params_ids
end

#is_blocked_listObject

Returns the value of attribute is_blocked_list.



10265
10266
10267
# File 'lib/kaltura_types.rb', line 10265

def is_blocked_list
  @is_blocked_list
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10271
10272
10273
10274
10275
10276
10277
10278
10279
# File 'lib/kaltura_types.rb', line 10271

def from_xml(xml_element)
	super
	if xml_element.elements['flavorParamsIds'] != nil
		self.flavor_params_ids = xml_element.elements['flavorParamsIds'].text
	end
	if xml_element.elements['isBlockedList'] != nil
		self.is_blocked_list = xml_element.elements['isBlockedList'].text
	end
end