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.
4275 4276 4277 |
# File 'lib/kaltura_types.rb', line 4275 def license_url @license_url end |
#scheme ⇒ Object
Returns the value of attribute scheme.
4274 4275 4276 |
# File 'lib/kaltura_types.rb', line 4274 def scheme @scheme end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4278 4279 4280 4281 4282 4283 4284 4285 4286 |
# File 'lib/kaltura_types.rb', line 4278 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 |