class Kaltura::KalturaBulkUploadResultScheduleEvent
Attributes
category_ids[RW]
co_editors[RW]
co_publishers[RW]
content_owner_id[RW]
description[RW]
duration[RW]
end_time[RW]
event_organizer_id[RW]
event_type[RW]
recurrence[RW]
reference_id[RW]
resource_id[RW]
ID of the resource specified for the new event.
start_time[RW]
template_entry_id[RW]
template_entry_type[RW]
title[RW]
Public Instance Methods
duration=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb, line 60 def duration=(val) @duration = val.to_i end
end_time=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb, line 63 def end_time=(val) @end_time = val.to_i end
event_type=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb, line 54 def event_type=(val) @event_type = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb, line 67 def from_xml(xml_element) super if xml_element.elements['referenceId'] != nil self.reference_id = xml_element.elements['referenceId'].text end if xml_element.elements['templateEntryId'] != nil self.template_entry_id = xml_element.elements['templateEntryId'].text end if xml_element.elements['eventType'] != nil self.event_type = xml_element.elements['eventType'].text end if xml_element.elements['title'] != nil self.title = xml_element.elements['title'].text end if xml_element.elements['description'] != nil self.description = xml_element.elements['description'].text end if xml_element.elements['tags'] != nil self.tags = xml_element.elements['tags'].text end if xml_element.elements['categoryIds'] != nil self.category_ids = xml_element.elements['categoryIds'].text end if xml_element.elements['resourceId'] != nil self.resource_id = xml_element.elements['resourceId'].text end if xml_element.elements['startTime'] != nil self.start_time = xml_element.elements['startTime'].text end if xml_element.elements['duration'] != nil self.duration = xml_element.elements['duration'].text end if xml_element.elements['endTime'] != nil self.end_time = xml_element.elements['endTime'].text end if xml_element.elements['recurrence'] != nil self.recurrence = xml_element.elements['recurrence'].text end if xml_element.elements['coEditors'] != nil self.co_editors = xml_element.elements['coEditors'].text end if xml_element.elements['coPublishers'] != nil self.co_publishers = xml_element.elements['coPublishers'].text end if xml_element.elements['eventOrganizerId'] != nil self.event_organizer_id = xml_element.elements['eventOrganizerId'].text end if xml_element.elements['contentOwnerId'] != nil self.content_owner_id = xml_element.elements['contentOwnerId'].text end if xml_element.elements['templateEntryType'] != nil self.template_entry_type = xml_element.elements['templateEntryType'].text end end
start_time=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb, line 57 def start_time=(val) @start_time = val.to_i end