Class: Kaltura::KalturaLiveStreamScheduleEvent

Inherits:
KalturaBaseLiveScheduleEvent show all
Defined in:
lib/kaltura_plugins/kaltura_schedule_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaEntryScheduleEvent

#blackout_conflicts, #category_ids, #entry_ids, #template_entry_id

Attributes inherited from KalturaScheduleEvent

#classification_type, #comment, #contact, #created_at, #description, #duration, #end_date, #geo_latitude, #geo_longitude, #id, #linked_by, #linked_to, #location, #organizer, #owner_id, #parent_id, #partner_id, #priority, #recurrence, #recurrence_type, #reference_id, #sequence, #start_date, #status, #summary, #tags, #updated_at

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#is_content_interruptibleObject

Detect whether “real” live can interrupt to the “main” content



1126
1127
1128
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1126

def is_content_interruptible
  @is_content_interruptible
end

#post_end_entry_idObject

The entry id of the post end entry



1124
1125
1126
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1124

def post_end_entry_id
  @post_end_entry_id
end

#post_end_timeObject

The time relative time before the endTime considered as postEnd time



1120
1121
1122
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1120

def post_end_time
  @post_end_time
end

#pre_start_entry_idObject

The entry id of the pre start entry



1122
1123
1124
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1122

def pre_start_entry_id
  @pre_start_entry_id
end

#pre_start_timeObject

The time relative time before the startTime considered as preStart time



1118
1119
1120
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1118

def pre_start_time
  @pre_start_time
end

#projected_audienceObject

Defines the expected audience.



1116
1117
1118
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1116

def projected_audience
  @projected_audience
end

#source_entry_idObject

The entry ID of the source entry (for simulive)



1114
1115
1116
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1114

def source_entry_id
  @source_entry_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1141

def from_xml(xml_element)
	super
	if xml_element.elements['sourceEntryId'] != nil
		self.source_entry_id = xml_element.elements['sourceEntryId'].text
	end
	if xml_element.elements['projectedAudience'] != nil
		self.projected_audience = xml_element.elements['projectedAudience'].text
	end
	if xml_element.elements['preStartTime'] != nil
		self.pre_start_time = xml_element.elements['preStartTime'].text
	end
	if xml_element.elements['postEndTime'] != nil
		self.post_end_time = xml_element.elements['postEndTime'].text
	end
	if xml_element.elements['preStartEntryId'] != nil
		self.pre_start_entry_id = xml_element.elements['preStartEntryId'].text
	end
	if xml_element.elements['postEndEntryId'] != nil
		self.post_end_entry_id = xml_element.elements['postEndEntryId'].text
	end
	if xml_element.elements['isContentInterruptible'] != nil
		self.is_content_interruptible = xml_element.elements['isContentInterruptible'].text
	end
end