Class: Kaltura::KalturaStorageExportJobData

Inherits:
KalturaStorageJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

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

Returns the value of attribute create_link.



17935
17936
17937
# File 'lib/kaltura_types.rb', line 17935

def create_link
  @create_link
end

#forceObject

Returns the value of attribute force.



17934
17935
17936
# File 'lib/kaltura_types.rb', line 17934

def force
  @force
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17944
17945
17946
17947
17948
17949
17950
17951
17952
# File 'lib/kaltura_types.rb', line 17944

def from_xml(xml_element)
	super
	if xml_element.elements['force'] != nil
		self.force = xml_element.elements['force'].text
	end
	if xml_element.elements['createLink'] != nil
		self.create_link = xml_element.elements['createLink'].text
	end
end