Class: Kaltura::KalturaApiActionPermissionItem

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.



11004
11005
11006
# File 'lib/kaltura_types.rb', line 11004

def action
  @action
end

#serviceObject

Returns the value of attribute service.



11003
11004
11005
# File 'lib/kaltura_types.rb', line 11003

def service
  @service
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11007
11008
11009
11010
11011
11012
11013
11014
11015
# File 'lib/kaltura_types.rb', line 11007

def from_xml(xml_element)
	super
	if xml_element.elements['service'] != nil
		self.service = xml_element.elements['service'].text
	end
	if xml_element.elements['action'] != nil
		self.action = xml_element.elements['action'].text
	end
end