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



9033
9034
9035
# File 'lib/kaltura_types.rb', line 9033

def cached_object_type
  @cached_object_type
end

#end_object_keyObject

Returns the value of attribute end_object_key.



9036
9037
9038
# File 'lib/kaltura_types.rb', line 9036

def end_object_key
  @end_object_key
end

#is_first_loopObject

Returns the value of attribute is_first_loop.



9038
9039
9040
# File 'lib/kaltura_types.rb', line 9038

def is_first_loop
  @is_first_loop
end

#job_created_atObject

Returns the value of attribute job_created_at.



9037
9038
9039
# File 'lib/kaltura_types.rb', line 9037

def job_created_at
  @job_created_at
end

#limitObject

Maximum number of keys to recalculate



9031
9032
9033
# File 'lib/kaltura_types.rb', line 9031

def limit
  @limit
end

#object_idObject

Returns the value of attribute object_id.



9034
9035
9036
# File 'lib/kaltura_types.rb', line 9034

def object_id
  @object_id
end

#start_object_keyObject

Returns the value of attribute start_object_key.



9035
9036
9037
# File 'lib/kaltura_types.rb', line 9035

def start_object_key
  @start_object_key
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9050
9051
9052
9053
9054
9055
9056
9057
9058
9059
9060
9061
9062
9063
9064
9065
9066
9067
9068
9069
9070
9071
9072
9073
# File 'lib/kaltura_types.rb', line 9050

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