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



17551
17552
17553
# File 'lib/kaltura_types.rb', line 17551

def cached_object_type
  @cached_object_type
end

#end_object_keyObject

Returns the value of attribute end_object_key.



17554
17555
17556
# File 'lib/kaltura_types.rb', line 17554

def end_object_key
  @end_object_key
end

#ks_typeObject

Returns the value of attribute ks_type.



17548
17549
17550
# File 'lib/kaltura_types.rb', line 17548

def ks_type
  @ks_type
end

#object_idObject

Returns the value of attribute object_id.



17552
17553
17554
# File 'lib/kaltura_types.rb', line 17552

def object_id
  @object_id
end

#protocolObject

http / https



17547
17548
17549
# File 'lib/kaltura_types.rb', line 17547

def protocol
  @protocol
end

#start_object_keyObject

Returns the value of attribute start_object_key.



17553
17554
17555
# File 'lib/kaltura_types.rb', line 17553

def start_object_key
  @start_object_key
end

#user_rolesObject

Returns the value of attribute user_roles.



17549
17550
17551
# File 'lib/kaltura_types.rb', line 17549

def user_roles
  @user_roles
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17560
17561
17562
17563
17564
17565
17566
17567
17568
17569
17570
17571
17572
17573
17574
17575
17576
17577
17578
17579
17580
17581
17582
17583
# File 'lib/kaltura_types.rb', line 17560

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