Class: Kaltura::KalturaVendorCaptionsCatalogItem
- Inherits:
-
KalturaVendorCatalogItem
- Object
- KalturaObjectBase
- KalturaVendorCatalogItem
- Kaltura::KalturaVendorCaptionsCatalogItem
- Defined in:
- lib/kaltura_plugins/kaltura_reach_client_plugin.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#enable_speaker_id ⇒ Object
Returns the value of attribute enable_speaker_id.
-
#fixed_price_addons ⇒ Object
Returns the value of attribute fixed_price_addons.
-
#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
#enable_speaker_id ⇒ Object
Returns the value of attribute enable_speaker_id.
963 964 965 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 963 def enable_speaker_id @enable_speaker_id end |
#fixed_price_addons ⇒ Object
Returns the value of attribute fixed_price_addons.
964 965 966 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 964 def fixed_price_addons @fixed_price_addons end |
#output_format ⇒ Object
Returns the value of attribute output_format.
962 963 964 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 962 def output_format @output_format end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
976 977 978 979 980 981 982 983 984 985 986 987 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 976 def from_xml(xml_element) super if xml_element.elements['outputFormat'] != nil self.output_format = xml_element.elements['outputFormat'].text end if xml_element.elements['enableSpeakerId'] != nil self.enable_speaker_id = xml_element.elements['enableSpeakerId'].text end if xml_element.elements['fixedPriceAddons'] != nil self.fixed_price_addons = xml_element.elements['fixedPriceAddons'].text end end |