Class: Kaltura::KalturaKontikiStorageExportJobData

Inherits:
KalturaStorageExportJobData show all
Defined in:
lib/kaltura_plugins/kaltura_kontiki_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaStorageExportJobData

#create_link, #force

Attributes inherited from KalturaStorageJobData

#dest_file_sync_stored_path, #ftp_passive_mode, #server_pass_phrase, #server_password, #server_private_key, #server_public_key, #server_url, #server_username, #src_file_sync_id, #src_file_sync_local_path

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#content_moidObject

Unique Kontiki MOID for the content uploaded to Kontiki



71
72
73
# File 'lib/kaltura_plugins/kaltura_kontiki_client_plugin.rb', line 71

def content_moid
  @content_moid
end

#flavor_asset_idObject

Holds the id of the exported asset



68
69
70
# File 'lib/kaltura_plugins/kaltura_kontiki_client_plugin.rb', line 68

def flavor_asset_id
  @flavor_asset_id
end

#service_tokenObject

Returns the value of attribute service_token.



72
73
74
# File 'lib/kaltura_plugins/kaltura_kontiki_client_plugin.rb', line 72

def service_token
  @service_token
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



75
76
77
78
79
80
# File 'lib/kaltura_plugins/kaltura_kontiki_client_plugin.rb', line 75

def from_xml(xml_element)
  super
  self.flavor_asset_id = xml_element.elements['flavorAssetId'].text
  self.content_moid = xml_element.elements['contentMoid'].text
  self.service_token = xml_element.elements['serviceToken'].text
end