Class: Kaltura::KalturaLiveStreamPushPublishRTMPConfiguration
- Inherits:
-
KalturaLiveStreamPushPublishConfiguration
- Object
- KalturaObjectBase
- KalturaLiveStreamPushPublishConfiguration
- Kaltura::KalturaLiveStreamPushPublishRTMPConfiguration
- Defined in:
- lib/kaltura_types.rb
Overview
A representation of an RTMP live stream configuration
Instance Attribute Summary collapse
-
#application_name ⇒ Object
Returns the value of attribute application_name.
-
#password ⇒ Object
Returns the value of attribute password.
-
#stream_name ⇒ Object
Returns the value of attribute stream_name.
-
#user_id ⇒ Object
Returns the value of attribute user_id.
Attributes inherited from KalturaLiveStreamPushPublishConfiguration
#backup_publish_url, #port, #publish_url
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#application_name ⇒ Object
Returns the value of attribute application_name.
14300 14301 14302 |
# File 'lib/kaltura_types.rb', line 14300 def application_name @application_name end |
#password ⇒ Object
Returns the value of attribute password.
14298 14299 14300 |
# File 'lib/kaltura_types.rb', line 14298 def password @password end |
#stream_name ⇒ Object
Returns the value of attribute stream_name.
14299 14300 14301 |
# File 'lib/kaltura_types.rb', line 14299 def stream_name @stream_name end |
#user_id ⇒ Object
Returns the value of attribute user_id.
14297 14298 14299 |
# File 'lib/kaltura_types.rb', line 14297 def user_id @user_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 |
# File 'lib/kaltura_types.rb', line 14303 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 |