Class: Kaltura::KalturaUserEntry
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaUserEntry
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#entry_id ⇒ Object
Returns the value of attribute entry_id.
-
#id ⇒ Object
unique auto-generated identifier.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#status ⇒ Object
Returns the value of attribute status.
-
#type ⇒ Object
Returns the value of attribute type.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
-
#user_id ⇒ Object
Returns the value of attribute user_id.
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.
6584 6585 6586 |
# File 'lib/kaltura_types.rb', line 6584 def created_at @created_at end |
#entry_id ⇒ Object
Returns the value of attribute entry_id.
6580 6581 6582 |
# File 'lib/kaltura_types.rb', line 6580 def entry_id @entry_id end |
#id ⇒ Object
unique auto-generated identifier
6579 6580 6581 |
# File 'lib/kaltura_types.rb', line 6579 def id @id end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
6582 6583 6584 |
# File 'lib/kaltura_types.rb', line 6582 def partner_id @partner_id end |
#status ⇒ Object
Returns the value of attribute status.
6583 6584 6585 |
# File 'lib/kaltura_types.rb', line 6583 def status @status end |
#type ⇒ Object
Returns the value of attribute type.
6586 6587 6588 |
# File 'lib/kaltura_types.rb', line 6586 def type @type end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
6585 6586 6587 |
# File 'lib/kaltura_types.rb', line 6585 def updated_at @updated_at end |
#user_id ⇒ Object
Returns the value of attribute user_id.
6581 6582 6583 |
# File 'lib/kaltura_types.rb', line 6581 def user_id @user_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 |
# File 'lib/kaltura_types.rb', line 6601 def from_xml(xml_element) super self.id = xml_element.elements['id'].text self.entry_id = xml_element.elements['entryId'].text self.user_id = xml_element.elements['userId'].text self.partner_id = xml_element.elements['partnerId'].text self.status = xml_element.elements['status'].text self.created_at = xml_element.elements['createdAt'].text self.updated_at = xml_element.elements['updatedAt'].text self.type = xml_element.elements['type'].text end |