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.
4036 4037 4038 |
# File 'lib/kaltura_types.rb', line 4036 def license_url @license_url end |
#scheme ⇒ Object
Returns the value of attribute scheme.
4035 4036 4037 |
# File 'lib/kaltura_types.rb', line 4035 def scheme @scheme end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4039 4040 4041 4042 4043 4044 4045 4046 4047 |
# File 'lib/kaltura_types.rb', line 4039 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 |