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



18130
18131
18132
# File 'lib/kaltura_types.rb', line 18130

def cached_object_type
  @cached_object_type
end

#end_object_keyObject

Returns the value of attribute end_object_key.



18133
18134
18135
# File 'lib/kaltura_types.rb', line 18133

def end_object_key
  @end_object_key
end

#ks_typeObject

Returns the value of attribute ks_type.



18127
18128
18129
# File 'lib/kaltura_types.rb', line 18127

def ks_type
  @ks_type
end

#object_idObject

Returns the value of attribute object_id.



18131
18132
18133
# File 'lib/kaltura_types.rb', line 18131

def object_id
  @object_id
end

#protocolObject

http / https



18126
18127
18128
# File 'lib/kaltura_types.rb', line 18126

def protocol
  @protocol
end

#start_object_keyObject

Returns the value of attribute start_object_key.



18132
18133
18134
# File 'lib/kaltura_types.rb', line 18132

def start_object_key
  @start_object_key
end

#user_rolesObject

Returns the value of attribute user_roles.



18128
18129
18130
# File 'lib/kaltura_types.rb', line 18128

def user_roles
  @user_roles
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



18139
18140
18141
18142
18143
18144
18145
18146
18147
18148
18149
18150
18151
18152
18153
18154
18155
18156
18157
18158
18159
18160
18161
18162
# File 'lib/kaltura_types.rb', line 18139

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