Class: Kaltura::KalturaGeoTimeLiveStats

Inherits:
KalturaEntryLiveStats show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaEntryLiveStats

#entry_id, #peak_audience, #peak_dvr_audience

Attributes inherited from KalturaLiveStats

#audience, #avg_bitrate, #buffer_time, #dvr_audience, #plays, #seconds_viewed, #start_event, #timestamp

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#cityObject

Returns the value of attribute city.



16785
16786
16787
# File 'lib/kaltura_types.rb', line 16785

def city
  @city
end

#countryObject

Returns the value of attribute country.



16786
16787
16788
# File 'lib/kaltura_types.rb', line 16786

def country
  @country
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16789
16790
16791
16792
16793
16794
16795
16796
16797
# File 'lib/kaltura_types.rb', line 16789

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