Class: Kaltura::KalturaRecalculateResponseProfileCacheJobData
- Inherits:
-
KalturaRecalculateCacheJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaRecalculateCacheJobData
- Kaltura::KalturaRecalculateResponseProfileCacheJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#cached_object_type ⇒ Object
Class name.
-
#end_object_key ⇒ Object
Returns the value of attribute end_object_key.
-
#ks_type ⇒ Object
Returns the value of attribute ks_type.
-
#object_id ⇒ Object
Returns the value of attribute object_id.
-
#protocol ⇒ Object
http / https.
-
#start_object_key ⇒ Object
Returns the value of attribute start_object_key.
-
#user_roles ⇒ Object
Returns the value of attribute user_roles.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#cached_object_type ⇒ Object
Class name
17534 17535 17536 |
# File 'lib/kaltura_types.rb', line 17534 def cached_object_type @cached_object_type end |
#end_object_key ⇒ Object
Returns the value of attribute end_object_key.
17537 17538 17539 |
# File 'lib/kaltura_types.rb', line 17537 def end_object_key @end_object_key end |
#ks_type ⇒ Object
Returns the value of attribute ks_type.
17531 17532 17533 |
# File 'lib/kaltura_types.rb', line 17531 def ks_type @ks_type end |
#object_id ⇒ Object
Returns the value of attribute object_id.
17535 17536 17537 |
# File 'lib/kaltura_types.rb', line 17535 def object_id @object_id end |
#protocol ⇒ Object
http / https
17530 17531 17532 |
# File 'lib/kaltura_types.rb', line 17530 def protocol @protocol end |
#start_object_key ⇒ Object
Returns the value of attribute start_object_key.
17536 17537 17538 |
# File 'lib/kaltura_types.rb', line 17536 def start_object_key @start_object_key end |
#user_roles ⇒ Object
Returns the value of attribute user_roles.
17532 17533 17534 |
# File 'lib/kaltura_types.rb', line 17532 def user_roles @user_roles end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 |
# File 'lib/kaltura_types.rb', line 17543 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 |