Class: Kaltura::KalturaReportTotal
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaReportTotal
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#header ⇒ Object
Returns the value of attribute header.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data.
8465 8466 8467 |
# File 'lib/kaltura_types.rb', line 8465 def data @data end |
#header ⇒ Object
Returns the value of attribute header.
8464 8465 8466 |
# File 'lib/kaltura_types.rb', line 8464 def header @header end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8468 8469 8470 8471 8472 8473 8474 8475 8476 |
# File 'lib/kaltura_types.rb', line 8468 def from_xml(xml_element) super if xml_element.elements['header'] != nil self.header = xml_element.elements['header'].text end if xml_element.elements['data'] != nil self.data = xml_element.elements['data'].text end end |