Class: Kaltura::KalturaInternalToolsSession
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaInternalToolsSession
- Defined in:
- lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb
Instance Attribute Summary collapse
-
#error ⇒ Object
Returns the value of attribute error.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#partner_pattern ⇒ Object
Returns the value of attribute partner_pattern.
-
#privileges ⇒ Object
Returns the value of attribute privileges.
-
#rand ⇒ Object
Returns the value of attribute rand.
-
#type ⇒ Object
Returns the value of attribute type.
-
#user ⇒ Object
Returns the value of attribute user.
-
#valid_until ⇒ Object
Returns the value of attribute valid_until.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#error ⇒ Object
Returns the value of attribute error.
37 38 39 |
# File 'lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb', line 37 def error @error end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
33 34 35 |
# File 'lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb', line 33 def partner_id @partner_id end |
#partner_pattern ⇒ Object
Returns the value of attribute partner_pattern.
35 36 37 |
# File 'lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb', line 35 def partner_pattern @partner_pattern end |
#privileges ⇒ Object
Returns the value of attribute privileges.
40 41 42 |
# File 'lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb', line 40 def privileges @privileges end |
#rand ⇒ Object
Returns the value of attribute rand.
38 39 40 |
# File 'lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb', line 38 def rand @rand end |
#type ⇒ Object
Returns the value of attribute type.
36 37 38 |
# File 'lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb', line 36 def type @type end |
#user ⇒ Object
Returns the value of attribute user.
39 40 41 |
# File 'lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb', line 39 def user @user end |
#valid_until ⇒ Object
Returns the value of attribute valid_until.
34 35 36 |
# File 'lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb', line 34 def valid_until @valid_until end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/kaltura_plugins/kaltura_kaltura_internal_tools_client_plugin.rb', line 55 def from_xml(xml_element) super self.partner_id = xml_element.elements['partner_id'].text self.valid_until = xml_element.elements['valid_until'].text self.partner_pattern = xml_element.elements['partner_pattern'].text self.type = xml_element.elements['type'].text self.error = xml_element.elements['error'].text self.rand = xml_element.elements['rand'].text self.user = xml_element.elements['user'].text self.privileges = xml_element.elements['privileges'].text end |