Class: Kaltura::KalturaFileContainer
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaFileContainer
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#encryption_key ⇒ Object
Returns the value of attribute encryption_key.
-
#file_path ⇒ Object
Returns the value of attribute file_path.
-
#file_size ⇒ Object
Returns the value of attribute file_size.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#encryption_key ⇒ Object
Returns the value of attribute encryption_key.
4914 4915 4916 |
# File 'lib/kaltura_types.rb', line 4914 def encryption_key @encryption_key end |
#file_path ⇒ Object
Returns the value of attribute file_path.
4913 4914 4915 |
# File 'lib/kaltura_types.rb', line 4913 def file_path @file_path end |
#file_size ⇒ Object
Returns the value of attribute file_size.
4915 4916 4917 |
# File 'lib/kaltura_types.rb', line 4915 def file_size @file_size end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 |
# File 'lib/kaltura_types.rb', line 4921 def from_xml(xml_element) super if xml_element.elements['filePath'] != nil self.file_path = xml_element.elements['filePath'].text end if xml_element.elements['encryptionKey'] != nil self.encryption_key = xml_element.elements['encryptionKey'].text end if xml_element.elements['fileSize'] != nil self.file_size = xml_element.elements['fileSize'].text end end |