Class: Kaltura::KalturaClientConfiguration
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaClientConfiguration
- Defined in:
- lib/kaltura_types.rb
Overview
Define client optional configurations
/
Instance Attribute Summary collapse
-
#api_version ⇒ Object
Returns the value of attribute api_version.
-
#client_tag ⇒ Object
Returns the value of attribute client_tag.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#api_version ⇒ Object
Returns the value of attribute api_version.
3002 3003 3004 |
# File 'lib/kaltura_types.rb', line 3002 def api_version @api_version end |
#client_tag ⇒ Object
Returns the value of attribute client_tag.
3001 3002 3003 |
# File 'lib/kaltura_types.rb', line 3001 def client_tag @client_tag end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
3005 3006 3007 3008 3009 3010 3011 3012 3013 |
# File 'lib/kaltura_types.rb', line 3005 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 |