Class: Kaltura::KalturaApiActionPermissionItem
- Inherits:
-
KalturaPermissionItem
- Object
- KalturaObjectBase
- KalturaPermissionItem
- Kaltura::KalturaApiActionPermissionItem
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
Returns the value of attribute action.
-
#service ⇒ Object
Returns the value of attribute service.
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
Instance Attribute Details
#action ⇒ Object
Returns the value of attribute action.
10827 10828 10829 |
# File 'lib/kaltura_types.rb', line 10827 def action @action end |
#service ⇒ Object
Returns the value of attribute service.
10826 10827 10828 |
# File 'lib/kaltura_types.rb', line 10826 def service @service end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10830 10831 10832 10833 10834 10835 10836 10837 10838 |
# File 'lib/kaltura_types.rb', line 10830 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 |