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



5137
5138
5139
# File 'lib/kaltura_types.rb', line 5137

def cached_object_type
  @cached_object_type
end

#end_object_keyObject

Returns the value of attribute end_object_key.



5140
5141
5142
# File 'lib/kaltura_types.rb', line 5140

def end_object_key
  @end_object_key
end

#is_first_loopObject

Returns the value of attribute is_first_loop.



5142
5143
5144
# File 'lib/kaltura_types.rb', line 5142

def is_first_loop
  @is_first_loop
end

#job_created_atObject

Returns the value of attribute job_created_at.



5141
5142
5143
# File 'lib/kaltura_types.rb', line 5141

def job_created_at
  @job_created_at
end

#limitObject

Maximum number of keys to recalculate



5134
5135
5136
# File 'lib/kaltura_types.rb', line 5134

def limit
  @limit
end

#object_idObject

Returns the value of attribute object_id.



5138
5139
5140
# File 'lib/kaltura_types.rb', line 5138

def object_id
  @object_id
end

#start_object_keyObject

Returns the value of attribute start_object_key.



5139
5140
5141
# File 'lib/kaltura_types.rb', line 5139

def start_object_key
  @start_object_key
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
# File 'lib/kaltura_types.rb', line 5154

def from_xml(xml_element)
	super
	self.limit = xml_element.elements['limit'].text
	self.cached_object_type = xml_element.elements['cachedObjectType'].text
	self.object_id = xml_element.elements['objectId'].text
	self.start_object_key = xml_element.elements['startObjectKey'].text
	self.end_object_key = xml_element.elements['endObjectKey'].text
	self.job_created_at = xml_element.elements['jobCreatedAt'].text
	self.is_first_loop = xml_element.elements['isFirstLoop'].text
end