Class: Kaltura::KalturaRemotePath

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#storage_profile_idObject

Returns the value of attribute storage_profile_id.



7997
7998
7999
# File 'lib/kaltura_types.rb', line 7997

def storage_profile_id
  @storage_profile_id
end

#uriObject

Returns the value of attribute uri.



7998
7999
8000
# File 'lib/kaltura_types.rb', line 7998

def uri
  @uri
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8004
8005
8006
8007
8008
8009
8010
8011
8012
# File 'lib/kaltura_types.rb', line 8004

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