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



8869
8870
8871
# File 'lib/kaltura_types.rb', line 8869

def ks
  @ks
end

#partner_idObject

Impersonated partner id



8867
8868
8869
# File 'lib/kaltura_types.rb', line 8867

def partner_id
  @partner_id
end

#response_profileObject

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



8871
8872
8873
# File 'lib/kaltura_types.rb', line 8871

def response_profile
  @response_profile
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8877
8878
8879
8880
8881
8882
8883
8884
8885
8886
8887
8888
# File 'lib/kaltura_types.rb', line 8877

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