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.
-
#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
9943 9944 9945 |
# File 'lib/kaltura_types.rb', line 9943 def end |
#created_at ⇒ Object
Returns the value of attribute created_at.
9933 9934 9935 |
# File 'lib/kaltura_types.rb', line 9933 def created_at @created_at end |
#enforce_entitlement ⇒ Object
Should enforce entitlement on feed entries
9939 9940 9941 |
# File 'lib/kaltura_types.rb', line 9939 def enforce_entitlement @enforce_entitlement end |
#entry_id ⇒ Object
Returns the value of attribute entry_id.
9929 9930 9931 |
# File 'lib/kaltura_types.rb', line 9929 def entry_id @entry_id end |
#id ⇒ Object
Returns the value of attribute id.
9925 9926 9927 |
# File 'lib/kaltura_types.rb', line 9925 def id @id end |
#partner_data ⇒ Object
Can be used to store various partner related data as a string
9936 9937 9938 |
# File 'lib/kaltura_types.rb', line 9936 def partner_data @partner_data end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
9928 9929 9930 |
# File 'lib/kaltura_types.rb', line 9928 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.
9941 9942 9943 |
# File 'lib/kaltura_types.rb', line 9941 def privacy_context @privacy_context end |
#roles ⇒ Object
Returns the value of attribute roles.
9944 9945 9946 |
# File 'lib/kaltura_types.rb', line 9944 def roles @roles end |
#root_widget_id ⇒ Object
Returns the value of attribute root_widget_id.
9927 9928 9929 |
# File 'lib/kaltura_types.rb', line 9927 def end |
#security_policy ⇒ Object
Returns the value of attribute security_policy.
9932 9933 9934 |
# File 'lib/kaltura_types.rb', line 9932 def security_policy @security_policy end |
#security_type ⇒ Object
Returns the value of attribute security_type.
9931 9932 9933 |
# File 'lib/kaltura_types.rb', line 9931 def security_type @security_type end |
#source_widget_id ⇒ Object
Returns the value of attribute source_widget_id.
9926 9927 9928 |
# File 'lib/kaltura_types.rb', line 9926 def end |
#ui_conf_id ⇒ Object
Returns the value of attribute ui_conf_id.
9930 9931 9932 |
# File 'lib/kaltura_types.rb', line 9930 def ui_conf_id @ui_conf_id end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
9934 9935 9936 |
# File 'lib/kaltura_types.rb', line 9934 def updated_at @updated_at end |
#widget_ht_ml ⇒ Object
Returns the value of attribute widget_ht_ml.
9937 9938 9939 |
# File 'lib/kaltura_types.rb', line 9937 def end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 |
# File 'lib/kaltura_types.rb', line 9971 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 end |