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.
3029 3030 3031 |
# File 'lib/kaltura_types.rb', line 3029 def api_version @api_version end |
#client_tag ⇒ Object
Returns the value of attribute client_tag.
3028 3029 3030 |
# File 'lib/kaltura_types.rb', line 3028 def client_tag @client_tag end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
3032 3033 3034 3035 3036 3037 3038 3039 3040 |
# File 'lib/kaltura_types.rb', line 3032 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 |