class Kaltura::KalturaDeliveryProfileLiveAppleHttp

Attributes

disable_extra_attributes[RW]
force_proxy[RW]

Public Instance Methods

disable_extra_attributes=(val) click to toggle source
# File lib/kaltura_types.rb, line 12759
def disable_extra_attributes=(val)
        @disable_extra_attributes = to_b(val)
end
force_proxy=(val) click to toggle source
# File lib/kaltura_types.rb, line 12762
def force_proxy=(val)
        @force_proxy = to_b(val)
end
from_xml(xml_element) click to toggle source
# File lib/kaltura_types.rb, line 12766
def from_xml(xml_element)
        super
        if xml_element.elements['disableExtraAttributes'] != nil
                self.disable_extra_attributes = xml_element.elements['disableExtraAttributes'].text
        end
        if xml_element.elements['forceProxy'] != nil
                self.force_proxy = xml_element.elements['forceProxy'].text
        end
end