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.



3090
3091
3092
# File 'lib/kaltura_types.rb', line 3090

def api_version
  @api_version
end

#client_tagObject

Returns the value of attribute client_tag.



3089
3090
3091
# File 'lib/kaltura_types.rb', line 3089

def client_tag
  @client_tag
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3093
3094
3095
3096
3097
3098
3099
3100
3101
# File 'lib/kaltura_types.rb', line 3093

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