Class: Kaltura::KalturaLiveStreamPushPublishConfiguration
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaLiveStreamPushPublishConfiguration
- Defined in:
- lib/kaltura_types.rb
Overview
Basic push-publish configuration for Kaltura live stream entry
Direct Known Subclasses
Instance Attribute Summary collapse
-
#backup_publish_url ⇒ Object
Returns the value of attribute backup_publish_url.
-
#port ⇒ Object
Returns the value of attribute port.
-
#publish_url ⇒ Object
Returns the value of attribute publish_url.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#backup_publish_url ⇒ Object
Returns the value of attribute backup_publish_url.
6155 6156 6157 |
# File 'lib/kaltura_types.rb', line 6155 def backup_publish_url @backup_publish_url end |
#port ⇒ Object
Returns the value of attribute port.
6156 6157 6158 |
# File 'lib/kaltura_types.rb', line 6156 def port @port end |
#publish_url ⇒ Object
Returns the value of attribute publish_url.
6154 6155 6156 |
# File 'lib/kaltura_types.rb', line 6154 def publish_url @publish_url end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 |
# File 'lib/kaltura_types.rb', line 6159 def from_xml(xml_element) super if xml_element.elements['publishUrl'] != nil self.publish_url = xml_element.elements['publishUrl'].text end if xml_element.elements['backupPublishUrl'] != nil self.backup_publish_url = xml_element.elements['backupPublishUrl'].text end if xml_element.elements['port'] != nil self.port = xml_element.elements['port'].text end end |