Class: Kaltura::KalturaClientConfiguration

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

Overview

Define client optional configurations

/

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

#api_versionObject

Returns the value of attribute api_version.



2875
2876
2877
# File 'lib/kaltura_types.rb', line 2875

def api_version
  @api_version
end

#client_tagObject

Returns the value of attribute client_tag.



2874
2875
2876
# File 'lib/kaltura_types.rb', line 2874

def client_tag
  @client_tag
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2878
2879
2880
2881
2882
2883
2884
2885
2886
# File 'lib/kaltura_types.rb', line 2878

def from_xml(xml_element)
	super
	if xml_element.elements['clientTag'] != nil
		self.client_tag = xml_element.elements['clientTag'].text
	end
	if xml_element.elements['apiVersion'] != nil
		self.api_version = xml_element.elements['apiVersion'].text
	end
end