Class: Kaltura::KalturaExportToCsvOptions
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaExportToCsvOptions
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#default_header ⇒ Object
Returns the value of attribute default_header.
-
#format ⇒ Object
The format of the outputted date string.
-
#type_equal ⇒ Object
Setting this property will cause additional columns to be added to the final report.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#default_header ⇒ Object
Returns the value of attribute default_header.
4594 4595 4596 |
# File 'lib/kaltura_types.rb', line 4594 def default_header @default_header end |
#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
4590 4591 4592 |
# File 'lib/kaltura_types.rb', line 4590 def format @format end |
#type_equal ⇒ Object
Setting this property will cause additional columns to be added to the final report. The columns will be related to the specific object type passed (currently only MEDIA_CLIP is supported). Please note that this property will NOT change the result filter in any way (i.e passing MEDIA_CLIP here will not force the report to return only media items).
4593 4594 4595 |
# File 'lib/kaltura_types.rb', line 4593 def type_equal @type_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 |
# File 'lib/kaltura_types.rb', line 4600 def from_xml(xml_element) super if xml_element.elements['format'] != nil self.format = xml_element.elements['format'].text end if xml_element.elements['typeEqual'] != nil self.type_equal = xml_element.elements['typeEqual'].text end if xml_element.elements['defaultHeader'] != nil self.default_header = xml_element.elements['defaultHeader'].text end end |