Class: Kaltura::KalturaLiveEntryFilter

Instance Attribute Summary collapse

Attributes inherited from KalturaMediaEntryBaseFilter

#flavor_params_ids_match_and, #flavor_params_ids_match_or, #media_date_greater_than_or_equal, #media_date_less_than_or_equal, #media_type_equal, #media_type_in, #source_type_equal, #source_type_in, #source_type_not_equal, #source_type_not_in

Attributes inherited from KalturaPlayableEntryBaseFilter

#duration_greater_than, #duration_greater_than_or_equal, #duration_less_than, #duration_less_than_or_equal, #duration_type_match_or, #last_played_at_greater_than_or_equal, #last_played_at_less_than_or_equal, #last_played_at_less_than_or_equal_or_null

Attributes inherited from KalturaBaseEntryFilter

#categories_full_name_in, #category_ancestor_id_in, #conversion_profile_id_equal, #description_like, #excluded_free_text_groups, #free_text, #is_root, #redirect_from_entry_id

Attributes inherited from KalturaBaseEntryBaseFilter

#access_control_id_equal, #access_control_id_in, #admin_tags_like, #admin_tags_multi_like_and, #admin_tags_multi_like_or, #categories_ids_empty, #categories_ids_match_and, #categories_ids_match_or, #categories_ids_not_contains, #categories_match_and, #categories_match_or, #categories_not_contains, #created_at_greater_than_or_equal, #created_at_less_than_or_equal, #creator_id_equal, #end_date_greater_than_or_equal, #end_date_greater_than_or_equal_or_null, #end_date_less_than_or_equal, #end_date_less_than_or_equal_or_null, #entitled_users_edit_match_and, #entitled_users_edit_match_or, #entitled_users_publish_match_and, #entitled_users_publish_match_or, #entitled_users_view_match_and, #entitled_users_view_match_or, #group_id_equal, #id_equal, #id_in, #id_not_in, #moderation_status_equal, #moderation_status_in, #moderation_status_not_equal, #moderation_status_not_in, #name_equal, #name_like, #name_multi_like_and, #name_multi_like_or, #parent_entry_id_equal, #partner_id_equal, #partner_id_in, #partner_sort_value_greater_than_or_equal, #partner_sort_value_less_than_or_equal, #rank_greater_than_or_equal, #rank_less_than_or_equal, #reference_id_equal, #reference_id_in, #replaced_entry_id_equal, #replaced_entry_id_in, #replacement_status_equal, #replacement_status_in, #replacing_entry_id_equal, #replacing_entry_id_in, #root_entry_id_equal, #root_entry_id_in, #search_text_match_and, #search_text_match_or, #start_date_greater_than_or_equal, #start_date_greater_than_or_equal_or_null, #start_date_less_than_or_equal, #start_date_less_than_or_equal_or_null, #status_equal, #status_in, #status_not_equal, #status_not_in, #tags_admin_tags_multi_like_and, #tags_admin_tags_multi_like_or, #tags_admin_tags_name_multi_like_and, #tags_admin_tags_name_multi_like_or, #tags_like, #tags_multi_like_and, #tags_multi_like_or, #tags_name_multi_like_and, #tags_name_multi_like_or, #total_rank_greater_than_or_equal, #total_rank_less_than_or_equal, #type_equal, #type_in, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal, #user_id_equal, #user_id_in, #user_id_not_in

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#has_media_server_hostnameObject

Returns the value of attribute has_media_server_hostname.



20457
20458
20459
# File 'lib/kaltura_types.rb', line 20457

def has_media_server_hostname
  @has_media_server_hostname
end

#is_liveObject

Returns the value of attribute is_live.



20455
20456
20457
# File 'lib/kaltura_types.rb', line 20455

def is_live
  @is_live
end

#is_recorded_entry_id_emptyObject

Returns the value of attribute is_recorded_entry_id_empty.



20456
20457
20458
# File 'lib/kaltura_types.rb', line 20456

def is_recorded_entry_id_empty
  @is_recorded_entry_id_empty
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



20466
20467
20468
20469
20470
20471
20472
20473
20474
20475
20476
20477
# File 'lib/kaltura_types.rb', line 20466

def from_xml(xml_element)
	super
	if xml_element.elements['isLive'] != nil
		self.is_live = xml_element.elements['isLive'].text
	end
	if xml_element.elements['isRecordedEntryIdEmpty'] != nil
		self.is_recorded_entry_id_empty = xml_element.elements['isRecordedEntryIdEmpty'].text
	end
	if xml_element.elements['hasMediaServerHostname'] != nil
		self.has_media_server_hostname = xml_element.elements['hasMediaServerHostname'].text
	end
end