Class: Kaltura::KalturaPermissionItem
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaPermissionItem
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
KalturaApiActionPermissionItem, KalturaApiParameterPermissionItem
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#id ⇒ Object
Returns the value of attribute id.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#tags ⇒ Object
Returns the value of attribute tags.
-
#type ⇒ Object
Returns the value of attribute type.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#created_at ⇒ Object
Returns the value of attribute created_at.
4752 4753 4754 |
# File 'lib/kaltura_types.rb', line 4752 def created_at @created_at end |
#id ⇒ Object
Returns the value of attribute id.
4748 4749 4750 |
# File 'lib/kaltura_types.rb', line 4748 def id @id end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
4750 4751 4752 |
# File 'lib/kaltura_types.rb', line 4750 def partner_id @partner_id end |
#tags ⇒ Object
Returns the value of attribute tags.
4751 4752 4753 |
# File 'lib/kaltura_types.rb', line 4751 def @tags end |
#type ⇒ Object
Returns the value of attribute type.
4749 4750 4751 |
# File 'lib/kaltura_types.rb', line 4749 def type @type end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
4753 4754 4755 |
# File 'lib/kaltura_types.rb', line 4753 def updated_at @updated_at end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4768 4769 4770 4771 4772 4773 4774 4775 4776 |
# File 'lib/kaltura_types.rb', line 4768 def from_xml(xml_element) super self.id = xml_element.elements['id'].text self.type = xml_element.elements['type'].text self.partner_id = xml_element.elements['partnerId'].text self. = xml_element.elements['tags'].text self.created_at = xml_element.elements['createdAt'].text self.updated_at = xml_element.elements['updatedAt'].text end |