Class: Kaltura::KalturaResponseProfileCacheRecalculateOptions

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#cached_object_typeObject

Class name



8955
8956
8957
# File 'lib/kaltura_types.rb', line 8955

def cached_object_type
  @cached_object_type
end

#end_object_keyObject

Returns the value of attribute end_object_key.



8958
8959
8960
# File 'lib/kaltura_types.rb', line 8958

def end_object_key
  @end_object_key
end

#is_first_loopObject

Returns the value of attribute is_first_loop.



8960
8961
8962
# File 'lib/kaltura_types.rb', line 8960

def is_first_loop
  @is_first_loop
end

#job_created_atObject

Returns the value of attribute job_created_at.



8959
8960
8961
# File 'lib/kaltura_types.rb', line 8959

def job_created_at
  @job_created_at
end

#limitObject

Maximum number of keys to recalculate



8953
8954
8955
# File 'lib/kaltura_types.rb', line 8953

def limit
  @limit
end

#object_idObject

Returns the value of attribute object_id.



8956
8957
8958
# File 'lib/kaltura_types.rb', line 8956

def object_id
  @object_id
end

#start_object_keyObject

Returns the value of attribute start_object_key.



8957
8958
8959
# File 'lib/kaltura_types.rb', line 8957

def start_object_key
  @start_object_key
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8972
8973
8974
8975
8976
8977
8978
8979
8980
8981
8982
8983
8984
8985
8986
8987
8988
8989
8990
8991
8992
8993
8994
8995
# File 'lib/kaltura_types.rb', line 8972

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