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.



1702
1703
1704
# File 'lib/kaltura_types.rb', line 1702

def api_version
  @api_version
end

#client_tagObject

Returns the value of attribute client_tag.



1701
1702
1703
# File 'lib/kaltura_types.rb', line 1701

def client_tag
  @client_tag
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1705
1706
1707
1708
1709
# File 'lib/kaltura_types.rb', line 1705

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