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.
8021 8022 8023 |
# File 'lib/kaltura_types.rb', line 8021 def created_at @created_at end |
#id ⇒ Object
Returns the value of attribute id.
8017 8018 8019 |
# File 'lib/kaltura_types.rb', line 8017 def id @id end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
8019 8020 8021 |
# File 'lib/kaltura_types.rb', line 8019 def partner_id @partner_id end |
#tags ⇒ Object
Returns the value of attribute tags.
8020 8021 8022 |
# File 'lib/kaltura_types.rb', line 8020 def @tags end |
#type ⇒ Object
Returns the value of attribute type.
8018 8019 8020 |
# File 'lib/kaltura_types.rb', line 8018 def type @type end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
8022 8023 8024 |
# File 'lib/kaltura_types.rb', line 8022 def updated_at @updated_at end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 |
# File 'lib/kaltura_types.rb', line 8037 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 |