Class: Kaltura::KalturaMoveCategoryEntriesJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaMoveCategoryEntriesJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#dest_category_full_ids ⇒ Object
Destination categories fallback ids.
-
#dest_category_id ⇒ Object
Destination category id.
-
#last_moved_category_entry_page_index ⇒ Object
Saves the last page index of the category entries filter pager In case of crash the batch will restart from that point.
-
#last_moved_category_id ⇒ Object
Saves the last category id that its entries moved completely In case of crash the batch will restart from that point.
-
#last_moved_category_page_index ⇒ Object
Saves the last page index of the child categories filter pager In case of crash the batch will restart from that point.
-
#move_from_children ⇒ Object
All entries from all child categories will be moved as well.
-
#src_category_id ⇒ Object
Source category id.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#dest_category_full_ids ⇒ Object
Destination categories fallback ids
14559 14560 14561 |
# File 'lib/kaltura_types.rb', line 14559 def dest_category_full_ids @dest_category_full_ids end |
#dest_category_id ⇒ Object
Destination category id
14546 14547 14548 |
# File 'lib/kaltura_types.rb', line 14546 def dest_category_id @dest_category_id end |
#last_moved_category_entry_page_index ⇒ Object
Saves the last page index of the category entries filter pager
In case of crash the batch will restart from that point
14555 14556 14557 |
# File 'lib/kaltura_types.rb', line 14555 def last_moved_category_entry_page_index @last_moved_category_entry_page_index end |
#last_moved_category_id ⇒ Object
Saves the last category id that its entries moved completely
In case of crash the batch will restart from that point
14549 14550 14551 |
# File 'lib/kaltura_types.rb', line 14549 def last_moved_category_id @last_moved_category_id end |
#last_moved_category_page_index ⇒ Object
Saves the last page index of the child categories filter pager
In case of crash the batch will restart from that point
14552 14553 14554 |
# File 'lib/kaltura_types.rb', line 14552 def last_moved_category_page_index @last_moved_category_page_index end |
#move_from_children ⇒ Object
All entries from all child categories will be moved as well
14557 14558 14559 |
# File 'lib/kaltura_types.rb', line 14557 def move_from_children @move_from_children end |
#src_category_id ⇒ Object
Source category id
14544 14545 14546 |
# File 'lib/kaltura_types.rb', line 14544 def src_category_id @src_category_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 |
# File 'lib/kaltura_types.rb', line 14580 def from_xml(xml_element) super if xml_element.elements['srcCategoryId'] != nil self.src_category_id = xml_element.elements['srcCategoryId'].text end if xml_element.elements['destCategoryId'] != nil self.dest_category_id = xml_element.elements['destCategoryId'].text end if xml_element.elements['lastMovedCategoryId'] != nil self.last_moved_category_id = xml_element.elements['lastMovedCategoryId'].text end if xml_element.elements['lastMovedCategoryPageIndex'] != nil self.last_moved_category_page_index = xml_element.elements['lastMovedCategoryPageIndex'].text end if xml_element.elements['lastMovedCategoryEntryPageIndex'] != nil self.last_moved_category_entry_page_index = xml_element.elements['lastMovedCategoryEntryPageIndex'].text end if xml_element.elements['moveFromChildren'] != nil self.move_from_children = xml_element.elements['moveFromChildren'].text end if xml_element.elements['destCategoryFullIds'] != nil self.dest_category_full_ids = xml_element.elements['destCategoryFullIds'].text end end |