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.



2966
2967
2968
# File 'lib/kaltura_types.rb', line 2966

def api_version
  @api_version
end

#client_tagObject

Returns the value of attribute client_tag.



2965
2966
2967
# File 'lib/kaltura_types.rb', line 2965

def client_tag
  @client_tag
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2969
2970
2971
2972
2973
2974
2975
2976
2977
# File 'lib/kaltura_types.rb', line 2969

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