Class: Kaltura::KalturaStatsKmcEvent

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

#client_verObject

Returns the value of attribute client_ver.



9418
9419
9420
# File 'lib/kaltura_types.rb', line 9418

def client_ver
  @client_ver
end

#entry_idObject

Returns the value of attribute entry_id.



9426
9427
9428
# File 'lib/kaltura_types.rb', line 9426

def entry_id
  @entry_id
end

#event_timestampObject

the client’s timestamp of this event



9422
9423
9424
# File 'lib/kaltura_types.rb', line 9422

def event_timestamp
  @event_timestamp
end

#kmc_event_action_pathObject

Returns the value of attribute kmc_event_action_path.



9419
9420
9421
# File 'lib/kaltura_types.rb', line 9419

def kmc_event_action_path
  @kmc_event_action_path
end

#kmc_event_typeObject

Returns the value of attribute kmc_event_type.



9420
9421
9422
# File 'lib/kaltura_types.rb', line 9420

def kmc_event_type
  @kmc_event_type
end

#partner_idObject

Returns the value of attribute partner_id.



9425
9426
9427
# File 'lib/kaltura_types.rb', line 9425

def partner_id
  @partner_id
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



9424
9425
9426
# File 'lib/kaltura_types.rb', line 9424

def session_id
  @session_id
end

#uiconf_idObject

Returns the value of attribute uiconf_id.



9428
9429
9430
# File 'lib/kaltura_types.rb', line 9428

def uiconf_id
  @uiconf_id
end

#user_idObject

the partner’s user id



9430
9431
9432
# File 'lib/kaltura_types.rb', line 9430

def user_id
  @user_id
end

#user_ipObject

will be retrieved from the request of the user



9432
9433
9434
# File 'lib/kaltura_types.rb', line 9432

def user_ip
  @user_ip
end

#widget_idObject

Returns the value of attribute widget_id.



9427
9428
9429
# File 'lib/kaltura_types.rb', line 9427

def widget_id
  @widget_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9447
9448
9449
9450
9451
9452
9453
9454
9455
9456
9457
9458
9459
9460
9461
9462
9463
9464
9465
9466
9467
9468
9469
9470
9471
9472
9473
9474
9475
9476
9477
9478
9479
9480
9481
9482
# File 'lib/kaltura_types.rb', line 9447

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['kmcEventActionPath'] != nil
    self.kmc_event_action_path = xml_element.elements['kmcEventActionPath'].text
  end
  if xml_element.elements['kmcEventType'] != nil
    self.kmc_event_type = xml_element.elements['kmcEventType'].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['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['userIp'] != nil
    self.user_ip = xml_element.elements['userIp'].text
  end
end