Class: Kaltura::KalturaWidget

Inherits:
KalturaObjectBase 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

#add_embed_html5supportObject

Addes the HTML5 script line to the widget’s embed code



10443
10444
10445
# File 'lib/kaltura_types.rb', line 10443

def add_embed_html5support
  @add_embed_html5support
end

#created_atObject

Returns the value of attribute created_at.



10433
10434
10435
# File 'lib/kaltura_types.rb', line 10433

def created_at
  @created_at
end

#enforce_entitlementObject

Should enforce entitlement on feed entries



10439
10440
10441
# File 'lib/kaltura_types.rb', line 10439

def enforce_entitlement
  @enforce_entitlement
end

#entry_idObject

Returns the value of attribute entry_id.



10429
10430
10431
# File 'lib/kaltura_types.rb', line 10429

def entry_id
  @entry_id
end

#idObject

Returns the value of attribute id.



10425
10426
10427
# File 'lib/kaltura_types.rb', line 10425

def id
  @id
end

#partner_dataObject

Can be used to store various partner related data as a string



10436
10437
10438
# File 'lib/kaltura_types.rb', line 10436

def partner_data
  @partner_data
end

#partner_idObject

Returns the value of attribute partner_id.



10428
10429
10430
# File 'lib/kaltura_types.rb', line 10428

def partner_id
  @partner_id
end

#privacy_contextObject

Set privacy context for search entries that assiged to private and public categories within a category privacy context.



10441
10442
10443
# File 'lib/kaltura_types.rb', line 10441

def privacy_context
  @privacy_context
end

#privilegesObject

Returns the value of attribute privileges.



10445
10446
10447
# File 'lib/kaltura_types.rb', line 10445

def privileges
  @privileges
end

#rolesObject

Returns the value of attribute roles.



10444
10445
10446
# File 'lib/kaltura_types.rb', line 10444

def roles
  @roles
end

#root_widget_idObject

Returns the value of attribute root_widget_id.



10427
10428
10429
# File 'lib/kaltura_types.rb', line 10427

def root_widget_id
  @root_widget_id
end

#security_policyObject

Returns the value of attribute security_policy.



10432
10433
10434
# File 'lib/kaltura_types.rb', line 10432

def security_policy
  @security_policy
end

#security_typeObject

Returns the value of attribute security_type.



10431
10432
10433
# File 'lib/kaltura_types.rb', line 10431

def security_type
  @security_type
end

#source_widget_idObject

Returns the value of attribute source_widget_id.



10426
10427
10428
# File 'lib/kaltura_types.rb', line 10426

def source_widget_id
  @source_widget_id
end

#ui_conf_idObject

Returns the value of attribute ui_conf_id.



10430
10431
10432
# File 'lib/kaltura_types.rb', line 10430

def ui_conf_id
  @ui_conf_id
end

#updated_atObject

Returns the value of attribute updated_at.



10434
10435
10436
# File 'lib/kaltura_types.rb', line 10434

def updated_at
  @updated_at
end

#widget_ht_mlObject

Returns the value of attribute widget_ht_ml.



10437
10438
10439
# File 'lib/kaltura_types.rb', line 10437

def widget_ht_ml
  @widget_ht_ml
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10472
10473
10474
10475
10476
10477
10478
10479
10480
10481
10482
10483
10484
10485
10486
10487
10488
10489
10490
10491
10492
10493
10494
10495
10496
10497
10498
10499
10500
10501
10502
10503
10504
10505
10506
10507
10508
10509
10510
10511
10512
10513
10514
10515
10516
10517
10518
10519
10520
10521
10522
10523
10524
10525
# File 'lib/kaltura_types.rb', line 10472

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.source_widget_id = xml_element.elements['sourceWidgetId'].text
  end
  if xml_element.elements['rootWidgetId'] != nil
    self.root_widget_id = 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.widget_ht_ml = 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.add_embed_html5support = 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