Class: Kaltura::KalturaVendorCaptionsCatalogItem
- Inherits:
-
KalturaVendorCatalogItem
- Object
- KalturaObjectBase
- KalturaVendorCatalogItem
- Kaltura::KalturaVendorCaptionsCatalogItem
- Defined in:
- lib/kaltura_plugins/kaltura_reach_client_plugin.rb
Direct Known Subclasses
KalturaVendorLiveCaptionCatalogItem, KalturaVendorTranslationCatalogItem
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.
1003 1004 1005 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1003 def enable_speaker_id @enable_speaker_id end |
#fixed_price_addons ⇒ Object
Returns the value of attribute fixed_price_addons.
1004 1005 1006 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1004 def fixed_price_addons @fixed_price_addons end |
#output_format ⇒ Object
Returns the value of attribute output_format.
1002 1003 1004 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1002 def output_format @output_format end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1016 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 |