Class: Kaltura::KalturaRecalculateResponseProfileCacheJobData

Inherits:
KalturaRecalculateCacheJobData 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



11978
11979
11980
# File 'lib/kaltura_types.rb', line 11978

def cached_object_type
  @cached_object_type
end

#end_object_keyObject

Returns the value of attribute end_object_key.



11981
11982
11983
# File 'lib/kaltura_types.rb', line 11981

def end_object_key
  @end_object_key
end

#ks_typeObject

Returns the value of attribute ks_type.



11974
11975
11976
# File 'lib/kaltura_types.rb', line 11974

def ks_type
  @ks_type
end

#object_idObject

Returns the value of attribute object_id.



11979
11980
11981
# File 'lib/kaltura_types.rb', line 11979

def object_id
  @object_id
end

#protocolObject

http / https



11973
11974
11975
# File 'lib/kaltura_types.rb', line 11973

def protocol
  @protocol
end

#start_object_keyObject

Returns the value of attribute start_object_key.



11980
11981
11982
# File 'lib/kaltura_types.rb', line 11980

def start_object_key
  @start_object_key
end

#user_rolesObject

Returns the value of attribute user_roles.



11975
11976
11977
# File 'lib/kaltura_types.rb', line 11975

def user_roles
  @user_roles
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11987
11988
11989
11990
11991
11992
11993
11994
11995
11996
# File 'lib/kaltura_types.rb', line 11987

def from_xml(xml_element)
	super
	self.protocol = xml_element.elements['protocol'].text
	self.ks_type = xml_element.elements['ksType'].text
	self.user_roles = KalturaClientBase.object_from_xml(xml_element.elements['userRoles'], 'KalturaIntegerValue')
	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
end