class Kaltura::KalturaAccessControlLimitDeliveryProfilesAction

Attributes

delivery_profile_ids[RW]

Comma separated list of delivery profile ids

is_blocked_list[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaRuleAction#from_xml
# File lib/kaltura_types.rb, line 10696
def from_xml(xml_element)
        super
        if xml_element.elements['deliveryProfileIds'] != nil
                self.delivery_profile_ids = xml_element.elements['deliveryProfileIds'].text
        end
        if xml_element.elements['isBlockedList'] != nil
                self.is_blocked_list = xml_element.elements['isBlockedList'].text
        end
end
is_blocked_list=(val) click to toggle source
# File lib/kaltura_types.rb, line 10692
def is_blocked_list=(val)
        @is_blocked_list = to_b(val)
end