Class: Kaltura::KalturaRequestConfiguration
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaRequestConfiguration
- Defined in:
- lib/kaltura_types.rb
Overview
Define client request optional configurations
/
Instance Attribute Summary collapse
-
#ks ⇒ Object
Kaltura API session.
-
#partner_id ⇒ Object
Impersonated partner id.
-
#response_profile ⇒ Object
Response profile - this attribute will be automatically unset after every API call.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#ks ⇒ Object
Kaltura API session
5064 5065 5066 |
# File 'lib/kaltura_types.rb', line 5064 def ks @ks end |
#partner_id ⇒ Object
Impersonated partner id
5061 5062 5063 |
# File 'lib/kaltura_types.rb', line 5061 def partner_id @partner_id end |
#response_profile ⇒ Object
Response profile - this attribute will be automatically unset after every API call.
5067 5068 5069 |
# File 'lib/kaltura_types.rb', line 5067 def response_profile @response_profile end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
5073 5074 5075 5076 5077 5078 |
# File 'lib/kaltura_types.rb', line 5073 def from_xml(xml_element) super self.partner_id = xml_element.elements['partnerId'].text self.ks = xml_element.elements['ks'].text self.response_profile = KalturaClientBase.object_from_xml(xml_element.elements['responseProfile'], 'KalturaBaseResponseProfile') end |