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
2906 2907 2908 |
# File 'lib/kaltura_types.rb', line 2906 def category_full_ids @category_full_ids end |
#category_id ⇒ Object
Returns the value of attribute category_id.
2900 2901 2902 |
# File 'lib/kaltura_types.rb', line 2900 def category_id @category_id end |
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds)
2904 2905 2906 |
# File 'lib/kaltura_types.rb', line 2904 def created_at @created_at end |
#creator_user_id ⇒ Object
CategroyEntry creator puser ID
2910 2911 2912 |
# File 'lib/kaltura_types.rb', line 2910 def creator_user_id @creator_user_id end |
#entry_id ⇒ Object
entry id
2902 2903 2904 |
# File 'lib/kaltura_types.rb', line 2902 def entry_id @entry_id end |
#status ⇒ Object
CategroyEntry status
2908 2909 2910 |
# File 'lib/kaltura_types.rb', line 2908 def status @status end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 |
# File 'lib/kaltura_types.rb', line 2922 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 |