Class: Kaltura::KalturaSyncCategoryPrivacyContextJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaSyncCategoryPrivacyContextJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#category_id ⇒ Object
category id.
-
#last_updated_category_created_at ⇒ Object
Saves the last sub category creation date that was updated In case of crash the batch will restart from that point.
-
#last_updated_category_entry_created_at ⇒ Object
Saves the last category entry creation date that was updated In case of crash the batch will restart from that point.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#category_id ⇒ Object
category id
15594 15595 15596 |
# File 'lib/kaltura_types.rb', line 15594 def category_id @category_id end |
#last_updated_category_created_at ⇒ Object
Saves the last sub category creation date that was updated
In case of crash the batch will restart from that point
15600 15601 15602 |
# File 'lib/kaltura_types.rb', line 15600 def last_updated_category_created_at @last_updated_category_created_at end |
#last_updated_category_entry_created_at ⇒ Object
Saves the last category entry creation date that was updated
In case of crash the batch will restart from that point
15597 15598 15599 |
# File 'lib/kaltura_types.rb', line 15597 def last_updated_category_entry_created_at @last_updated_category_entry_created_at end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 |
# File 'lib/kaltura_types.rb', line 15612 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['lastUpdatedCategoryEntryCreatedAt'] != nil self.last_updated_category_entry_created_at = xml_element.elements['lastUpdatedCategoryEntryCreatedAt'].text end if xml_element.elements['lastUpdatedCategoryCreatedAt'] != nil self.last_updated_category_created_at = xml_element.elements['lastUpdatedCategoryCreatedAt'].text end end |