Class: Kaltura::KalturaConversionAttribute
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaConversionAttribute
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#flavor_params_id ⇒ Object
The id of the flavor params, set to null for source flavor.
-
#name ⇒ Object
Attribute name.
-
#value ⇒ Object
Attribute value.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#flavor_params_id ⇒ Object
The id of the flavor params, set to null for source flavor
3183 3184 3185 |
# File 'lib/kaltura_types.rb', line 3183 def flavor_params_id @flavor_params_id end |
#name ⇒ Object
Attribute name
3185 3186 3187 |
# File 'lib/kaltura_types.rb', line 3185 def name @name end |
#value ⇒ Object
Attribute value
3187 3188 3189 |
# File 'lib/kaltura_types.rb', line 3187 def value @value end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 |
# File 'lib/kaltura_types.rb', line 3193 def from_xml(xml_element) super if xml_element.elements['flavorParamsId'] != nil self.flavor_params_id = xml_element.elements['flavorParamsId'].text end if xml_element.elements['name'] != nil self.name = xml_element.elements['name'].text end if xml_element.elements['value'] != nil self.value = xml_element.elements['value'].text end end |