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.
7791 7792 7793 |
# File 'lib/kaltura_types.rb', line 7791 def created_at @created_at end |
#id ⇒ Object
Returns the value of attribute id.
7787 7788 7789 |
# File 'lib/kaltura_types.rb', line 7787 def id @id end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
7789 7790 7791 |
# File 'lib/kaltura_types.rb', line 7789 def partner_id @partner_id end |
#tags ⇒ Object
Returns the value of attribute tags.
7790 7791 7792 |
# File 'lib/kaltura_types.rb', line 7790 def end |
#type ⇒ Object
Returns the value of attribute type.
7788 7789 7790 |
# File 'lib/kaltura_types.rb', line 7788 def type @type end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
7792 7793 7794 |
# File 'lib/kaltura_types.rb', line 7792 def updated_at @updated_at end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 |
# File 'lib/kaltura_types.rb', line 7807 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['type'] != nil self.type = xml_element.elements['type'].text end if xml_element.elements['partnerId'] != nil self.partner_id = xml_element.elements['partnerId'].text end if xml_element.elements['tags'] != nil self. = xml_element.elements['tags'].text end if xml_element.elements['createdAt'] != nil self.created_at = xml_element.elements['createdAt'].text end if xml_element.elements['updatedAt'] != nil self.updated_at = xml_element.elements['updatedAt'].text end end |