class Kaltura::KalturaRemotePath

Attributes

storage_profile_id[RW]
uri[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 8316
def from_xml(xml_element)
        super
        if xml_element.elements['storageProfileId'] != nil
                self.storage_profile_id = xml_element.elements['storageProfileId'].text
        end
        if xml_element.elements['uri'] != nil
                self.uri = xml_element.elements['uri'].text
        end
end
storage_profile_id=(val) click to toggle source
# File lib/kaltura_types.rb, line 8312
def storage_profile_id=(val)
        @storage_profile_id = val.to_i
end