class Kaltura::KalturaReportTable

Attributes

data[RW]
header[RW]
total_count[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 8867
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
total_count=(val) click to toggle source
# File lib/kaltura_types.rb, line 8863
def total_count=(val)
        @total_count = val.to_i
end