class Kaltura::KalturaListResponse

Attributes

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 39
def from_xml(xml_element)
        super
        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 35
def total_count=(val)
        @total_count = val.to_i
end