class Kaltura::KalturaDeliveryProfileCondition

Attributes

delivery_profile_ids[RW]

The delivery ids that are accepted by this condition

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaCondition#from_xml
# File lib/kaltura_types.rb, line 12660
def from_xml(xml_element)
        super
        if xml_element.elements['deliveryProfileIds'] != nil
                self.delivery_profile_ids = KalturaClientBase.object_from_xml(xml_element.elements['deliveryProfileIds'], 'KalturaIntegerValue')
        end
end