Class: Kaltura::KalturaDrmPlaybackPluginData
- Inherits:
-
KalturaPluginData
- Object
- KalturaObjectBase
- KalturaPluginData
- Kaltura::KalturaDrmPlaybackPluginData
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#license_url ⇒ Object
Returns the value of attribute license_url.
-
#scheme ⇒ Object
Returns the value of attribute scheme.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#license_url ⇒ Object
Returns the value of attribute license_url.
4261 4262 4263 |
# File 'lib/kaltura_types.rb', line 4261 def license_url @license_url end |
#scheme ⇒ Object
Returns the value of attribute scheme.
4260 4261 4262 |
# File 'lib/kaltura_types.rb', line 4260 def scheme @scheme end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4264 4265 4266 4267 4268 4269 4270 4271 4272 |
# File 'lib/kaltura_types.rb', line 4264 def from_xml(xml_element) super if xml_element.elements['scheme'] != nil self.scheme = xml_element.elements['scheme'].text end if xml_element.elements['licenseURL'] != nil self.license_url = xml_element.elements['licenseURL'].text end end |