Class: Kaltura::KalturaVendorExtendedAudioDescriptionCatalogItem
- Inherits:
-
KalturaVendorCatalogItem
- Object
- KalturaObjectBase
- KalturaVendorCatalogItem
- Kaltura::KalturaVendorExtendedAudioDescriptionCatalogItem
- Defined in:
- lib/kaltura_plugins/kaltura_reach_client_plugin.rb
Instance Attribute Summary collapse
-
#clear_audio_flavor_params_id ⇒ Object
Returns the value of attribute clear_audio_flavor_params_id.
-
#flavor_params_id ⇒ Object
Returns the value of attribute flavor_params_id.
-
#output_format ⇒ Object
Returns the value of attribute output_format.
Attributes inherited from KalturaVendorCatalogItem
#allow_resubmission, #created_at, #engine_type, #id, #name, #pricing, #service_feature, #service_type, #source_language, #status, #system_name, #turn_around_time, #updated_at, #vendor_partner_id
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#clear_audio_flavor_params_id ⇒ Object
Returns the value of attribute clear_audio_flavor_params_id.
1119 1120 1121 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1119 def clear_audio_flavor_params_id @clear_audio_flavor_params_id end |
#flavor_params_id ⇒ Object
Returns the value of attribute flavor_params_id.
1118 1119 1120 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1118 def flavor_params_id @flavor_params_id end |
#output_format ⇒ Object
Returns the value of attribute output_format.
1120 1121 1122 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1120 def output_format @output_format end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1132 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['clearAudioFlavorParamsId'] != nil self.clear_audio_flavor_params_id = xml_element.elements['clearAudioFlavorParamsId'].text end if xml_element.elements['outputFormat'] != nil self.output_format = xml_element.elements['outputFormat'].text end end |