Class: Kaltura::KalturaResponseProfileCacheRecalculateOptions
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaResponseProfileCacheRecalculateOptions
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#cached_object_type ⇒ Object
Class name.
-
#end_object_key ⇒ Object
Returns the value of attribute end_object_key.
-
#is_first_loop ⇒ Object
Returns the value of attribute is_first_loop.
-
#job_created_at ⇒ Object
Returns the value of attribute job_created_at.
-
#limit ⇒ Object
Maximum number of keys to recalculate.
-
#object_id ⇒ Object
Returns the value of attribute object_id.
-
#start_object_key ⇒ Object
Returns the value of attribute start_object_key.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#cached_object_type ⇒ Object
Class name
8548 8549 8550 |
# File 'lib/kaltura_types.rb', line 8548 def cached_object_type @cached_object_type end |
#end_object_key ⇒ Object
Returns the value of attribute end_object_key.
8551 8552 8553 |
# File 'lib/kaltura_types.rb', line 8551 def end_object_key @end_object_key end |
#is_first_loop ⇒ Object
Returns the value of attribute is_first_loop.
8553 8554 8555 |
# File 'lib/kaltura_types.rb', line 8553 def is_first_loop @is_first_loop end |
#job_created_at ⇒ Object
Returns the value of attribute job_created_at.
8552 8553 8554 |
# File 'lib/kaltura_types.rb', line 8552 def job_created_at @job_created_at end |
#limit ⇒ Object
Maximum number of keys to recalculate
8546 8547 8548 |
# File 'lib/kaltura_types.rb', line 8546 def limit @limit end |
#object_id ⇒ Object
Returns the value of attribute object_id.
8549 8550 8551 |
# File 'lib/kaltura_types.rb', line 8549 def object_id @object_id end |
#start_object_key ⇒ Object
Returns the value of attribute start_object_key.
8550 8551 8552 |
# File 'lib/kaltura_types.rb', line 8550 def start_object_key @start_object_key end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 |
# File 'lib/kaltura_types.rb', line 8565 def from_xml(xml_element) super if xml_element.elements['limit'] != nil self.limit = xml_element.elements['limit'].text end if xml_element.elements['cachedObjectType'] != nil self.cached_object_type = xml_element.elements['cachedObjectType'].text end if xml_element.elements['objectId'] != nil self.object_id = xml_element.elements['objectId'].text end if xml_element.elements['startObjectKey'] != nil self.start_object_key = xml_element.elements['startObjectKey'].text end if xml_element.elements['endObjectKey'] != nil self.end_object_key = xml_element.elements['endObjectKey'].text end if xml_element.elements['jobCreatedAt'] != nil self.job_created_at = xml_element.elements['jobCreatedAt'].text end if xml_element.elements['isFirstLoop'] != nil self.is_first_loop = xml_element.elements['isFirstLoop'].text end end |