class Kaltura::KalturaLimitFlavorsRestriction

Attributes

flavor_params_ids[RW]

Comma separated list of flavor params ids to allow to deny

limit_flavors_restriction_type[RW]

Limit flavors restriction type (Allow or deny)

Public Instance Methods

from_xml(xml_element) click to toggle source
# File lib/kaltura_types.rb, line 13881
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
limit_flavors_restriction_type=(val) click to toggle source
# File lib/kaltura_types.rb, line 13877
def limit_flavors_restriction_type=(val)
        @limit_flavors_restriction_type = val.to_i
end