Class: Kaltura::KalturaReportTable
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaReportTable
- 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.
-
#total_count ⇒ Object
Returns the value of attribute total_count.
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.
8518 8519 8520 |
# File 'lib/kaltura_types.rb', line 8518 def data @data end |
#header ⇒ Object
Returns the value of attribute header.
8517 8518 8519 |
# File 'lib/kaltura_types.rb', line 8517 def header @header end |
#total_count ⇒ Object
Returns the value of attribute total_count.
8519 8520 8521 |
# File 'lib/kaltura_types.rb', line 8519 def total_count @total_count end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 |
# File 'lib/kaltura_types.rb', line 8525 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 if xml_element.elements['totalCount'] != nil self.total_count = xml_element.elements['totalCount'].text end end |