Class: Kaltura::KalturaRequestConfiguration

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Overview

Define client request 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

#ksObject

Kaltura API session



9024
9025
9026
# File 'lib/kaltura_types.rb', line 9024

def ks
  @ks
end

#partner_idObject

Impersonated partner id



9022
9023
9024
# File 'lib/kaltura_types.rb', line 9022

def partner_id
  @partner_id
end

#response_profileObject

Response profile - this attribute will be automatically unset after every API call.



9026
9027
9028
# File 'lib/kaltura_types.rb', line 9026

def response_profile
  @response_profile
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9032
9033
9034
9035
9036
9037
9038
9039
9040
9041
9042
9043
# File 'lib/kaltura_types.rb', line 9032

def from_xml(xml_element)
  super
  if xml_element.elements['partnerId'] != nil
    self.partner_id = xml_element.elements['partnerId'].text
  end
  if xml_element.elements['ks'] != nil
    self.ks = xml_element.elements['ks'].text
  end
  if xml_element.elements['responseProfile'] != nil
    self.response_profile = KalturaClientBase.object_from_xml(xml_element.elements['responseProfile'], 'KalturaBaseResponseProfile')
  end
end