Class: Kaltura::KalturaWidget
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaWidget
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#add_embed_html5support ⇒ Object
Addes the HTML5 script line to the widget’s embed code.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#enforce_entitlement ⇒ Object
Should enforce entitlement on feed entries.
-
#entry_id ⇒ Object
Returns the value of attribute entry_id.
-
#id ⇒ Object
Returns the value of attribute id.
-
#partner_data ⇒ Object
Can be used to store various partner related data as a string.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#privacy_context ⇒ Object
Set privacy context for search entries that assiged to private and public categories within a category privacy context.
-
#privileges ⇒ Object
Returns the value of attribute privileges.
-
#roles ⇒ Object
Returns the value of attribute roles.
-
#root_widget_id ⇒ Object
Returns the value of attribute root_widget_id.
-
#security_policy ⇒ Object
Returns the value of attribute security_policy.
-
#security_type ⇒ Object
Returns the value of attribute security_type.
-
#source_widget_id ⇒ Object
Returns the value of attribute source_widget_id.
-
#ui_conf_id ⇒ Object
Returns the value of attribute ui_conf_id.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
-
#widget_ht_ml ⇒ Object
Returns the value of attribute widget_ht_ml.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#add_embed_html5support ⇒ Object
Addes the HTML5 script line to the widget’s embed code
10219 10220 10221 |
# File 'lib/kaltura_types.rb', line 10219 def @add_embed_html5support end |
#created_at ⇒ Object
Returns the value of attribute created_at.
10209 10210 10211 |
# File 'lib/kaltura_types.rb', line 10209 def created_at @created_at end |
#enforce_entitlement ⇒ Object
Should enforce entitlement on feed entries
10215 10216 10217 |
# File 'lib/kaltura_types.rb', line 10215 def enforce_entitlement @enforce_entitlement end |
#entry_id ⇒ Object
Returns the value of attribute entry_id.
10205 10206 10207 |
# File 'lib/kaltura_types.rb', line 10205 def entry_id @entry_id end |
#id ⇒ Object
Returns the value of attribute id.
10201 10202 10203 |
# File 'lib/kaltura_types.rb', line 10201 def id @id end |
#partner_data ⇒ Object
Can be used to store various partner related data as a string
10212 10213 10214 |
# File 'lib/kaltura_types.rb', line 10212 def partner_data @partner_data end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
10204 10205 10206 |
# File 'lib/kaltura_types.rb', line 10204 def partner_id @partner_id end |
#privacy_context ⇒ Object
Set privacy context for search entries that assiged to private and public categories within a category privacy context.
10217 10218 10219 |
# File 'lib/kaltura_types.rb', line 10217 def privacy_context @privacy_context end |
#privileges ⇒ Object
Returns the value of attribute privileges.
10221 10222 10223 |
# File 'lib/kaltura_types.rb', line 10221 def privileges @privileges end |
#roles ⇒ Object
Returns the value of attribute roles.
10220 10221 10222 |
# File 'lib/kaltura_types.rb', line 10220 def roles @roles end |
#root_widget_id ⇒ Object
Returns the value of attribute root_widget_id.
10203 10204 10205 |
# File 'lib/kaltura_types.rb', line 10203 def @root_widget_id end |
#security_policy ⇒ Object
Returns the value of attribute security_policy.
10208 10209 10210 |
# File 'lib/kaltura_types.rb', line 10208 def security_policy @security_policy end |
#security_type ⇒ Object
Returns the value of attribute security_type.
10207 10208 10209 |
# File 'lib/kaltura_types.rb', line 10207 def security_type @security_type end |
#source_widget_id ⇒ Object
Returns the value of attribute source_widget_id.
10202 10203 10204 |
# File 'lib/kaltura_types.rb', line 10202 def @source_widget_id end |
#ui_conf_id ⇒ Object
Returns the value of attribute ui_conf_id.
10206 10207 10208 |
# File 'lib/kaltura_types.rb', line 10206 def ui_conf_id @ui_conf_id end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
10210 10211 10212 |
# File 'lib/kaltura_types.rb', line 10210 def updated_at @updated_at end |
#widget_ht_ml ⇒ Object
Returns the value of attribute widget_ht_ml.
10213 10214 10215 |
# File 'lib/kaltura_types.rb', line 10213 def @widget_ht_ml end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 |
# File 'lib/kaltura_types.rb', line 10248 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['sourceWidgetId'] != nil self. = xml_element.elements['sourceWidgetId'].text end if xml_element.elements['rootWidgetId'] != nil self. = xml_element.elements['rootWidgetId'].text end if xml_element.elements['partnerId'] != nil self.partner_id = xml_element.elements['partnerId'].text end if xml_element.elements['entryId'] != nil self.entry_id = xml_element.elements['entryId'].text end if xml_element.elements['uiConfId'] != nil self.ui_conf_id = xml_element.elements['uiConfId'].text end if xml_element.elements['securityType'] != nil self.security_type = xml_element.elements['securityType'].text end if xml_element.elements['securityPolicy'] != nil self.security_policy = xml_element.elements['securityPolicy'].text end if xml_element.elements['createdAt'] != nil self.created_at = xml_element.elements['createdAt'].text end if xml_element.elements['updatedAt'] != nil self.updated_at = xml_element.elements['updatedAt'].text end if xml_element.elements['partnerData'] != nil self.partner_data = xml_element.elements['partnerData'].text end if xml_element.elements['widgetHTML'] != nil self. = xml_element.elements['widgetHTML'].text end if xml_element.elements['enforceEntitlement'] != nil self.enforce_entitlement = xml_element.elements['enforceEntitlement'].text end if xml_element.elements['privacyContext'] != nil self.privacy_context = xml_element.elements['privacyContext'].text end if xml_element.elements['addEmbedHtml5Support'] != nil self. = xml_element.elements['addEmbedHtml5Support'].text end if xml_element.elements['roles'] != nil self.roles = xml_element.elements['roles'].text end if xml_element.elements['privileges'] != nil self.privileges = xml_element.elements['privileges'].text end end |