Class: Kaltura::KalturaExportToCsvOptions

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

#formatObject

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



4339
4340
4341
# File 'lib/kaltura_types.rb', line 4339

def format
  @format
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4342
4343
4344
4345
4346
4347
# File 'lib/kaltura_types.rb', line 4342

def from_xml(xml_element)
	super
	if xml_element.elements['format'] != nil
		self.format = xml_element.elements['format'].text
	end
end