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.
4124 4125 4126 |
# File 'lib/kaltura_types.rb', line 4124 def license_url @license_url end |
#scheme ⇒ Object
Returns the value of attribute scheme.
4123 4124 4125 |
# File 'lib/kaltura_types.rb', line 4123 def scheme @scheme end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4127 4128 4129 4130 4131 4132 4133 4134 4135 |
# File 'lib/kaltura_types.rb', line 4127 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 |