Class: Kaltura::KalturaExportToCsvOptions
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaExportToCsvOptions
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#format ⇒ Object
The format of the outputted date string.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#format ⇒ Object
The format of the outputted date string. There are also several predefined date constants that may be used instead, so for example DATE_RSS contains the format string ‘D, d M Y H:i:s’. www.php.net/manual/en/function.date.php
4536 4537 4538 |
# File 'lib/kaltura_types.rb', line 4536 def format @format end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4539 4540 4541 4542 4543 4544 |
# File 'lib/kaltura_types.rb', line 4539 def from_xml(xml_element) super if xml_element.elements['format'] != nil self.format = xml_element.elements['format'].text end end |