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, #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

#post_end_timeObject

The time relative time before the endTime considered as postEnd time



1075
1076
1077
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1075

def post_end_time
  @post_end_time
end

#pre_start_timeObject

The time relative time before the startTime considered as preStart time



1073
1074
1075
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1073

def pre_start_time
  @pre_start_time
end

#projected_audienceObject

Defines the expected audience.



1071
1072
1073
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1071

def projected_audience
  @projected_audience
end

#source_entry_idObject

The entry ID of the source entry (for simulive)



1069
1070
1071
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1069

def source_entry_id
  @source_entry_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1087

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
end