Class: Kaltura::KalturaDataEntry
- Inherits:
-
KalturaBaseEntry
- Object
- KalturaObjectBase
- KalturaBaseEntry
- Kaltura::KalturaDataEntry
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#data_content ⇒ Object
The data of the entry.
-
#retrieve_data_content_by_get ⇒ Object
indicator whether to return the object for get action with the dataContent field.
Attributes inherited from KalturaBaseEntry
#access_control_id, #admin_tags, #application, #application_version, #block_auto_transcript, #capabilities, #categories, #categories_ids, #conversion_profile_id, #created_at, #creator_id, #description, #display_in_search, #download_url, #end_date, #entitled_users_edit, #entitled_users_publish, #entitled_users_view, #group_id, #id, #license_type, #moderation_count, #moderation_status, #multi_lingual_description, #multi_lingual_name, #multi_lingual_tags, #name, #operation_attributes, #parent_entry_id, #partner_data, #partner_id, #partner_sort_value, #rank, #redirect_entry_id, #reference_id, #replaced_entry_id, #replacement_status, #replacing_entry_id, #root_entry_id, #search_text, #start_date, #status, #tags, #template_entry_id, #thumbnail_url, #total_rank, #type, #updated_at, #user_id, #version, #votes
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#data_content ⇒ Object
The data of the entry
3777 3778 3779 |
# File 'lib/kaltura_types.rb', line 3777 def data_content @data_content end |
#retrieve_data_content_by_get ⇒ Object
indicator whether to return the object for get action with the dataContent field.
3779 3780 3781 |
# File 'lib/kaltura_types.rb', line 3779 def retrieve_data_content_by_get @retrieve_data_content_by_get end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
3785 3786 3787 3788 3789 3790 3791 3792 3793 |
# File 'lib/kaltura_types.rb', line 3785 def from_xml(xml_element) super if xml_element.elements['dataContent'] != nil self.data_content = xml_element.elements['dataContent'].text end if xml_element.elements['retrieveDataContentByGet'] != nil self.retrieve_data_content_by_get = xml_element.elements['retrieveDataContentByGet'].text end end |