Class: Kaltura::KalturaApiParameterPermissionItem

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

Instance Attribute Summary collapse

Attributes inherited from KalturaPermissionItem

#created_at, #id, #partner_id, #tags, #type, #updated_at

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#actionObject

Returns the value of attribute action.



6892
6893
6894
# File 'lib/kaltura_types.rb', line 6892

def action
  @action
end

#objectObject

Returns the value of attribute object.



6890
6891
6892
# File 'lib/kaltura_types.rb', line 6890

def object
  @object
end

#parameterObject

Returns the value of attribute parameter.



6891
6892
6893
# File 'lib/kaltura_types.rb', line 6891

def parameter
  @parameter
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6895
6896
6897
6898
6899
6900
# File 'lib/kaltura_types.rb', line 6895

def from_xml(xml_element)
	super
	self.object = xml_element.elements['object'].text
	self.parameter = xml_element.elements['parameter'].text
	self.action = xml_element.elements['action'].text
end