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



17816
17817
17818
# File 'lib/kaltura_types.rb', line 17816

def cached_object_type
  @cached_object_type
end

#end_object_keyObject

Returns the value of attribute end_object_key.



17819
17820
17821
# File 'lib/kaltura_types.rb', line 17819

def end_object_key
  @end_object_key
end

#ks_typeObject

Returns the value of attribute ks_type.



17813
17814
17815
# File 'lib/kaltura_types.rb', line 17813

def ks_type
  @ks_type
end

#object_idObject

Returns the value of attribute object_id.



17817
17818
17819
# File 'lib/kaltura_types.rb', line 17817

def object_id
  @object_id
end

#protocolObject

http / https



17812
17813
17814
# File 'lib/kaltura_types.rb', line 17812

def protocol
  @protocol
end

#start_object_keyObject

Returns the value of attribute start_object_key.



17818
17819
17820
# File 'lib/kaltura_types.rb', line 17818

def start_object_key
  @start_object_key
end

#user_rolesObject

Returns the value of attribute user_roles.



17814
17815
17816
# File 'lib/kaltura_types.rb', line 17814

def user_roles
  @user_roles
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17825
17826
17827
17828
17829
17830
17831
17832
17833
17834
17835
17836
17837
17838
17839
17840
17841
17842
17843
17844
17845
17846
17847
17848
# File 'lib/kaltura_types.rb', line 17825

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