Class: Kaltura::KalturaGeoTimeLiveStats
- Inherits:
-
KalturaEntryLiveStats
- Object
- KalturaObjectBase
- KalturaLiveStats
- KalturaEntryLiveStats
- Kaltura::KalturaGeoTimeLiveStats
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#city ⇒ Object
Returns the value of attribute city.
-
#country ⇒ Object
Returns the value of attribute country.
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
Instance Attribute Details
#city ⇒ Object
Returns the value of attribute city.
17056 17057 17058 |
# File 'lib/kaltura_types.rb', line 17056 def city @city end |
#country ⇒ Object
Returns the value of attribute country.
17057 17058 17059 |
# File 'lib/kaltura_types.rb', line 17057 def country @country end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17060 17061 17062 17063 17064 17065 17066 17067 17068 |
# File 'lib/kaltura_types.rb', line 17060 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 |