Class: Kaltura::KalturaLimitFlavorsRestriction
- Inherits:
-
KalturaBaseRestriction
- Object
- KalturaObjectBase
- KalturaBaseRestriction
- Kaltura::KalturaLimitFlavorsRestriction
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#flavor_params_ids ⇒ Object
Comma separated list of flavor params ids to allow to deny.
-
#limit_flavors_restriction_type ⇒ Object
Limit flavors restriction type (Allow or deny).
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#flavor_params_ids ⇒ Object
Comma separated list of flavor params ids to allow to deny
13274 13275 13276 |
# File 'lib/kaltura_types.rb', line 13274 def flavor_params_ids @flavor_params_ids end |
#limit_flavors_restriction_type ⇒ Object
Limit flavors restriction type (Allow or deny)
13272 13273 13274 |
# File 'lib/kaltura_types.rb', line 13272 def limit_flavors_restriction_type @limit_flavors_restriction_type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13280 13281 13282 13283 13284 13285 13286 13287 13288 |
# File 'lib/kaltura_types.rb', line 13280 def from_xml(xml_element) super if xml_element.elements['limitFlavorsRestrictionType'] != nil self.limit_flavors_restriction_type = xml_element.elements['limitFlavorsRestrictionType'].text end if xml_element.elements['flavorParamsIds'] != nil self.flavor_params_ids = xml_element.elements['flavorParamsIds'].text end end |