Class: Kaltura::KalturaStatsEvent

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

Overview

Will hold data from the Kaltura UI components to be passed on to the reports and analytics system

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#application_idObject

kaltura application name



9533
9534
9535
# File 'lib/kaltura_types.rb', line 9533

def application_id
  @application_id
end

#client_verObject

Returns the value of attribute client_ver.



9500
9501
9502
# File 'lib/kaltura_types.rb', line 9500

def client_ver
  @client_ver
end

#context_idObject

Returns the value of attribute context_id.



9534
9535
9536
# File 'lib/kaltura_types.rb', line 9534

def context_id
  @context_id
end

#control_idObject

the id of the GUI control - will be used in the future to better understand what the user clicked



9523
9524
9525
# File 'lib/kaltura_types.rb', line 9523

def control_id
  @control_id
end

#current_pointObject

the timestamp along the video when the event happend



9515
9516
9517
# File 'lib/kaltura_types.rb', line 9515

def current_point
  @current_point
end

#durationObject

the duration of the video in milliseconds - will make it much faster than quering the db for each entry



9517
9518
9519
# File 'lib/kaltura_types.rb', line 9517

def duration
  @duration
end

#entry_idObject

Returns the value of attribute entry_id.



9507
9508
9509
# File 'lib/kaltura_types.rb', line 9507

def entry_id
  @entry_id
end

#event_timestampObject

the client’s timestamp of this event



9503
9504
9505
# File 'lib/kaltura_types.rb', line 9503

def event_timestamp
  @event_timestamp
end

#event_typeObject

Returns the value of attribute event_type.



9501
9502
9503
# File 'lib/kaltura_types.rb', line 9501

def event_type
  @event_type
end

#feature_typeObject

Returns the value of attribute feature_type.



9535
9536
9537
# File 'lib/kaltura_types.rb', line 9535

def feature_type
  @feature_type
end

#is_first_in_sessionObject

will indicate if the event is thrown for the first video in the session



9531
9532
9533
# File 'lib/kaltura_types.rb', line 9531

def is_first_in_session
  @is_first_in_session
end

#new_pointObject

timestamp of the new point on the timeline of the video after the user seeks



9527
9528
9529
# File 'lib/kaltura_types.rb', line 9527

def new_point
  @new_point
end

#partner_idObject

Returns the value of attribute partner_id.



9506
9507
9508
# File 'lib/kaltura_types.rb', line 9506

def partner_id
  @partner_id
end

#process_durationObject

the time in milliseconds the event took



9521
9522
9523
# File 'lib/kaltura_types.rb', line 9521

def process_duration
  @process_duration
end

#referrerObject

the referrer of the client



9529
9530
9531
# File 'lib/kaltura_types.rb', line 9529

def referrer
  @referrer
end

#seekObject

true if the user ever used seek in this session



9525
9526
9527
# File 'lib/kaltura_types.rb', line 9525

def seek
  @seek
end

#session_idObject

a unique string generated by the client that will represent the client-side session: the primary component will pass it on to other components that sprout from it



9505
9506
9507
# File 'lib/kaltura_types.rb', line 9505

def session_id
  @session_id
end

#uiconf_idObject

Returns the value of attribute uiconf_id.



9511
9512
9513
# File 'lib/kaltura_types.rb', line 9511

def uiconf_id
  @uiconf_id
end

#unique_viewerObject

the UV cookie - creates in the operational system and should be passed on ofr every event



9509
9510
9511
# File 'lib/kaltura_types.rb', line 9509

def unique_viewer
  @unique_viewer
end

#user_idObject

the partner’s user id



9513
9514
9515
# File 'lib/kaltura_types.rb', line 9513

def user_id
  @user_id
end

#user_ipObject

will be retrieved from the request of the user



9519
9520
9521
# File 'lib/kaltura_types.rb', line 9519

def user_ip
  @user_ip
end

#widget_idObject

Returns the value of attribute widget_id.



9510
9511
9512
# File 'lib/kaltura_types.rb', line 9510

def widget_id
  @widget_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9574
9575
9576
9577
9578
9579
9580
9581
9582
9583
9584
9585
9586
9587
9588
9589
9590
9591
9592
9593
9594
9595
9596
9597
9598
9599
9600
9601
9602
9603
9604
9605
9606
9607
9608
9609
9610
9611
9612
9613
9614
9615
9616
9617
9618
9619
9620
9621
9622
9623
9624
9625
9626
9627
9628
9629
9630
9631
9632
9633
9634
9635
9636
9637
9638
9639
9640
9641
9642
# File 'lib/kaltura_types.rb', line 9574

def from_xml(xml_element)
	super
	if xml_element.elements['clientVer'] != nil
		self.client_ver = xml_element.elements['clientVer'].text
	end
	if xml_element.elements['eventType'] != nil
		self.event_type = xml_element.elements['eventType'].text
	end
	if xml_element.elements['eventTimestamp'] != nil
		self.event_timestamp = xml_element.elements['eventTimestamp'].text
	end
	if xml_element.elements['sessionId'] != nil
		self.session_id = xml_element.elements['sessionId'].text
	end
	if xml_element.elements['partnerId'] != nil
		self.partner_id = xml_element.elements['partnerId'].text
	end
	if xml_element.elements['entryId'] != nil
		self.entry_id = xml_element.elements['entryId'].text
	end
	if xml_element.elements['uniqueViewer'] != nil
		self.unique_viewer = xml_element.elements['uniqueViewer'].text
	end
	if xml_element.elements['widgetId'] != nil
		self.widget_id = xml_element.elements['widgetId'].text
	end
	if xml_element.elements['uiconfId'] != nil
		self.uiconf_id = xml_element.elements['uiconfId'].text
	end
	if xml_element.elements['userId'] != nil
		self.user_id = xml_element.elements['userId'].text
	end
	if xml_element.elements['currentPoint'] != nil
		self.current_point = xml_element.elements['currentPoint'].text
	end
	if xml_element.elements['duration'] != nil
		self.duration = xml_element.elements['duration'].text
	end
	if xml_element.elements['userIp'] != nil
		self.user_ip = xml_element.elements['userIp'].text
	end
	if xml_element.elements['processDuration'] != nil
		self.process_duration = xml_element.elements['processDuration'].text
	end
	if xml_element.elements['controlId'] != nil
		self.control_id = xml_element.elements['controlId'].text
	end
	if xml_element.elements['seek'] != nil
		self.seek = xml_element.elements['seek'].text
	end
	if xml_element.elements['newPoint'] != nil
		self.new_point = xml_element.elements['newPoint'].text
	end
	if xml_element.elements['referrer'] != nil
		self.referrer = xml_element.elements['referrer'].text
	end
	if xml_element.elements['isFirstInSession'] != nil
		self.is_first_in_session = xml_element.elements['isFirstInSession'].text
	end
	if xml_element.elements['applicationId'] != nil
		self.application_id = xml_element.elements['applicationId'].text
	end
	if xml_element.elements['contextId'] != nil
		self.context_id = xml_element.elements['contextId'].text
	end
	if xml_element.elements['featureType'] != nil
		self.feature_type = xml_element.elements['featureType'].text
	end
end