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.



10753
10754
10755
# File 'lib/kaltura_types.rb', line 10753

def action
  @action
end

#objectObject

Returns the value of attribute object.



10751
10752
10753
# File 'lib/kaltura_types.rb', line 10751

def object
  @object
end

#parameterObject

Returns the value of attribute parameter.



10752
10753
10754
# File 'lib/kaltura_types.rb', line 10752

def parameter
  @parameter
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10756
10757
10758
10759
10760
10761
10762
10763
10764
10765
10766
10767
# File 'lib/kaltura_types.rb', line 10756

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