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
18100 18101 18102 |
# File 'lib/kaltura_types.rb', line 18100 def cached_object_type @cached_object_type end |
#end_object_key ⇒ Object
Returns the value of attribute end_object_key.
18103 18104 18105 |
# File 'lib/kaltura_types.rb', line 18103 def end_object_key @end_object_key end |
#ks_type ⇒ Object
Returns the value of attribute ks_type.
18097 18098 18099 |
# File 'lib/kaltura_types.rb', line 18097 def ks_type @ks_type end |
#object_id ⇒ Object
Returns the value of attribute object_id.
18101 18102 18103 |
# File 'lib/kaltura_types.rb', line 18101 def object_id @object_id end |
#protocol ⇒ Object
http / https
18096 18097 18098 |
# File 'lib/kaltura_types.rb', line 18096 def protocol @protocol end |
#start_object_key ⇒ Object
Returns the value of attribute start_object_key.
18102 18103 18104 |
# File 'lib/kaltura_types.rb', line 18102 def start_object_key @start_object_key end |
#user_roles ⇒ Object
Returns the value of attribute user_roles.
18098 18099 18100 |
# File 'lib/kaltura_types.rb', line 18098 def user_roles @user_roles end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 |
# File 'lib/kaltura_types.rb', line 18109 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 |