class Kaltura::KalturaGeoTimeLiveStats

Attributes

city[RW]
country[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaEntryLiveStats#from_xml
# File lib/kaltura_types.rb, line 17453
def from_xml(xml_element)
        super
        if xml_element.elements['city'] != nil
                self.city = KalturaClientBase.object_from_xml(xml_element.elements['city'], 'KalturaCoordinate')
        end
        if xml_element.elements['country'] != nil
                self.country = KalturaClientBase.object_from_xml(xml_element.elements['country'], 'KalturaCoordinate')
        end
end