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.



11074
11075
11076
# File 'lib/kaltura_types.rb', line 11074

def action
  @action
end

#objectObject

Returns the value of attribute object.



11072
11073
11074
# File 'lib/kaltura_types.rb', line 11072

def object
  @object
end

#parameterObject

Returns the value of attribute parameter.



11073
11074
11075
# File 'lib/kaltura_types.rb', line 11073

def parameter
  @parameter
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11077
11078
11079
11080
11081
11082
11083
11084
11085
11086
11087
11088
# File 'lib/kaltura_types.rb', line 11077

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