Class: Kaltura::KalturaVendorCaptionsCatalogItem

Inherits:
KalturaVendorCatalogItem show all
Defined in:
lib/kaltura_plugins/kaltura_reach_client_plugin.rb

Direct Known Subclasses

KalturaVendorTranslationCatalogItem

Instance Attribute Summary collapse

Attributes inherited from KalturaVendorCatalogItem

#created_at, #id, #name, #pricing, #service_feature, #service_type, #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

#camelcase, #to_b, #to_params

Instance Attribute Details

#enable_speaker_idObject

Returns the value of attribute enable_speaker_id.



920
921
922
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 920

def enable_speaker_id
  @enable_speaker_id
end

#fixed_price_addonsObject

Returns the value of attribute fixed_price_addons.



921
922
923
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 921

def fixed_price_addons
  @fixed_price_addons
end

#output_formatObject

Returns the value of attribute output_format.



919
920
921
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 919

def output_format
  @output_format
end

#source_languageObject

Returns the value of attribute source_language.



918
919
920
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 918

def source_language
  @source_language
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 933

def from_xml(xml_element)
	super
	if xml_element.elements['sourceLanguage'] != nil
		self.source_language = xml_element.elements['sourceLanguage'].text
	end
	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