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).
-
#creator_user_id ⇒ Object
CategroyEntry creator puser ID.
-
#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
2816 2817 2818 |
# File 'lib/kaltura_types.rb', line 2816 def category_full_ids @category_full_ids end |
#category_id ⇒ Object
Returns the value of attribute category_id.
2810 2811 2812 |
# File 'lib/kaltura_types.rb', line 2810 def category_id @category_id end |
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds)
2814 2815 2816 |
# File 'lib/kaltura_types.rb', line 2814 def created_at @created_at end |
#creator_user_id ⇒ Object
CategroyEntry creator puser ID
2820 2821 2822 |
# File 'lib/kaltura_types.rb', line 2820 def creator_user_id @creator_user_id end |
#entry_id ⇒ Object
entry id
2812 2813 2814 |
# File 'lib/kaltura_types.rb', line 2812 def entry_id @entry_id end |
#status ⇒ Object
CategroyEntry status
2818 2819 2820 |
# File 'lib/kaltura_types.rb', line 2818 def status @status end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 |
# File 'lib/kaltura_types.rb', line 2832 def from_xml(xml_element) super if xml_element.elements['categoryId'] != nil self.category_id = xml_element.elements['categoryId'].text end if xml_element.elements['entryId'] != nil self.entry_id = xml_element.elements['entryId'].text end if xml_element.elements['createdAt'] != nil self.created_at = xml_element.elements['createdAt'].text end if xml_element.elements['categoryFullIds'] != nil self.category_full_ids = xml_element.elements['categoryFullIds'].text end if xml_element.elements['status'] != nil self.status = xml_element.elements['status'].text end if xml_element.elements['creatorUserId'] != nil self.creator_user_id = xml_element.elements['creatorUserId'].text end end |