class Kaltura::KalturaAkamaiUniversalProvisionJobData
Attributes
domain_name[RW]
dvr_enabled[RW]
dvr_window[RW]
notification_email[RW]
primary_contact[RW]
secondary_contact[RW]
stream_id[RW]
stream_type[RW]
system_password[RW]
system_user_name[RW]
Public Instance Methods
dvr_enabled=(val)
click to toggle source
# File lib/kaltura_types.rb, line 16316 def dvr_enabled=(val) @dvr_enabled = val.to_i end
dvr_window=(val)
click to toggle source
# File lib/kaltura_types.rb, line 16319 def dvr_window=(val) @dvr_window = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaProvisionJobData#from_xml
# File lib/kaltura_types.rb, line 16323 def from_xml(xml_element) super if xml_element.elements['streamId'] != nil self.stream_id = xml_element.elements['streamId'].text end if xml_element.elements['systemUserName'] != nil self.system_user_name = xml_element.elements['systemUserName'].text end if xml_element.elements['systemPassword'] != nil self.system_password = xml_element.elements['systemPassword'].text end if xml_element.elements['domainName'] != nil self.domain_name = xml_element.elements['domainName'].text end if xml_element.elements['dvrEnabled'] != nil self.dvr_enabled = xml_element.elements['dvrEnabled'].text end if xml_element.elements['dvrWindow'] != nil self.dvr_window = xml_element.elements['dvrWindow'].text end if xml_element.elements['primaryContact'] != nil self.primary_contact = xml_element.elements['primaryContact'].text end if xml_element.elements['secondaryContact'] != nil self.secondary_contact = xml_element.elements['secondaryContact'].text end if xml_element.elements['streamType'] != nil self.stream_type = xml_element.elements['streamType'].text end if xml_element.elements['notificationEmail'] != nil self.notification_email = xml_element.elements['notificationEmail'].text end end
stream_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 16313 def stream_id=(val) @stream_id = val.to_i end