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.
8712 8713 8714 |
# File 'lib/kaltura_types.rb', line 8712 def data @data end |
#header ⇒ Object
Returns the value of attribute header.
8711 8712 8713 |
# File 'lib/kaltura_types.rb', line 8711 def header @header end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8715 8716 8717 8718 8719 8720 8721 8722 8723 |
# File 'lib/kaltura_types.rb', line 8715 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 |