class Kaltura::KalturaExportToCsvOptions

Attributes

format[RW]

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'.

https://www.php.net/manual/en/function.date.php

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 4489
def from_xml(xml_element)
        super
        if xml_element.elements['format'] != nil
                self.format = xml_element.elements['format'].text
        end
end