class Kaltura::KalturaLiveStreamPushPublishRTMPConfiguration
A representation of an RTMP live stream configuration
Attributes
application_name[RW]
password[RW]
stream_name[RW]
user_id[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaLiveStreamPushPublishConfiguration#from_xml
# File lib/kaltura_types.rb, line 14037 def from_xml(xml_element) super if xml_element.elements['userId'] != nil self.user_id = xml_element.elements['userId'].text end if xml_element.elements['password'] != nil self.password = xml_element.elements['password'].text end if xml_element.elements['streamName'] != nil self.stream_name = xml_element.elements['streamName'].text end if xml_element.elements['applicationName'] != nil self.application_name = xml_element.elements['applicationName'].text end end