Class: Kaltura::KalturaVendorAlignmentCatalogItem

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

Instance Attribute Summary collapse

Attributes inherited from KalturaVendorCatalogItem

#allow_resubmission, #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

#output_formatObject

Returns the value of attribute output_format.



892
893
894
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 892

def output_format
  @output_format
end

#source_languageObject

Returns the value of attribute source_language.



891
892
893
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 891

def source_language
  @source_language
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



898
899
900
901
902
903
904
905
906
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 898

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
end