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.
5027 5028 5029 |
# File 'lib/kaltura_types.rb', line 5027 def data @data end |
#header ⇒ Object
Returns the value of attribute header.
5026 5027 5028 |
# File 'lib/kaltura_types.rb', line 5026 def header @header end |
#total_count ⇒ Object
Returns the value of attribute total_count.
5028 5029 5030 |
# File 'lib/kaltura_types.rb', line 5028 def total_count @total_count end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
5034 5035 5036 5037 5038 5039 |
# File 'lib/kaltura_types.rb', line 5034 def from_xml(xml_element) super self.header = xml_element.elements['header'].text self.data = xml_element.elements['data'].text self.total_count = xml_element.elements['totalCount'].text end |