Class: Kaltura::KalturaPartnerPublicInfo

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

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

#analytics_persistent_session_idObject

Returns the value of attribute analytics_persistent_session_id.



7604
7605
7606
# File 'lib/kaltura_types.rb', line 7604

def analytics_persistent_session_id
  @analytics_persistent_session_id
end

#analytics_urlObject

Returns the value of attribute analytics_url.



7602
7603
7604
# File 'lib/kaltura_types.rb', line 7602

def analytics_url
  @analytics_url
end

#ott_environment_urlObject

Returns the value of attribute ott_environment_url.



7603
7604
7605
# File 'lib/kaltura_types.rb', line 7603

def ott_environment_url
  @ott_environment_url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
# File 'lib/kaltura_types.rb', line 7610

def from_xml(xml_element)
	super
	if xml_element.elements['analyticsUrl'] != nil
		self.analytics_url = xml_element.elements['analyticsUrl'].text
	end
	if xml_element.elements['ottEnvironmentUrl'] != nil
		self.ott_environment_url = xml_element.elements['ottEnvironmentUrl'].text
	end
	if xml_element.elements['analyticsPersistentSessionId'] != nil
		self.analytics_persistent_session_id = xml_element.elements['analyticsPersistentSessionId'].text
	end
end