Class: Kaltura::KalturaRemotePath
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaRemotePath
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#storage_profile_id ⇒ Object
Returns the value of attribute storage_profile_id.
-
#uri ⇒ Object
Returns the value of attribute uri.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#storage_profile_id ⇒ Object
Returns the value of attribute storage_profile_id.
8479 8480 8481 |
# File 'lib/kaltura_types.rb', line 8479 def storage_profile_id @storage_profile_id end |
#uri ⇒ Object
Returns the value of attribute uri.
8480 8481 8482 |
# File 'lib/kaltura_types.rb', line 8480 def uri @uri end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8486 8487 8488 8489 8490 8491 8492 8493 8494 |
# File 'lib/kaltura_types.rb', line 8486 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 |