Class: Kaltura::KalturaCategoryEntry
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaCategoryEntry
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#category_full_ids ⇒ Object
The full ids of the Category.
-
#category_id ⇒ Object
Returns the value of attribute category_id.
-
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds).
-
#entry_id ⇒ Object
entry id.
-
#status ⇒ Object
CategroyEntry status.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#category_full_ids ⇒ Object
The full ids of the Category
1604 1605 1606 |
# File 'lib/kaltura_types.rb', line 1604 def category_full_ids @category_full_ids end |
#category_id ⇒ Object
Returns the value of attribute category_id.
1595 1596 1597 |
# File 'lib/kaltura_types.rb', line 1595 def category_id @category_id end |
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds)
1601 1602 1603 |
# File 'lib/kaltura_types.rb', line 1601 def created_at @created_at end |
#entry_id ⇒ Object
entry id
1598 1599 1600 |
# File 'lib/kaltura_types.rb', line 1598 def entry_id @entry_id end |
#status ⇒ Object
CategroyEntry status
1607 1608 1609 |
# File 'lib/kaltura_types.rb', line 1607 def status @status end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1619 1620 1621 1622 1623 1624 1625 1626 |
# File 'lib/kaltura_types.rb', line 1619 def from_xml(xml_element) super self.category_id = xml_element.elements['categoryId'].text self.entry_id = xml_element.elements['entryId'].text self.created_at = xml_element.elements['createdAt'].text self.category_full_ids = xml_element.elements['categoryFullIds'].text self.status = xml_element.elements['status'].text end |