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

#asset_idObject

Returns the value of attribute asset_id.



18367
18368
18369
# File 'lib/kaltura_types.rb', line 18367

def asset_id
  @asset_id
end

Returns the value of attribute create_link.



18366
18367
18368
# File 'lib/kaltura_types.rb', line 18366

def create_link
  @create_link
end

#external_urlObject

Returns the value of attribute external_url.



18368
18369
18370
# File 'lib/kaltura_types.rb', line 18368

def external_url
  @external_url
end

#forceObject

Returns the value of attribute force.



18365
18366
18367
# File 'lib/kaltura_types.rb', line 18365

def force
  @force
end

#portObject

Returns the value of attribute port.



18369
18370
18371
# File 'lib/kaltura_types.rb', line 18369

def port
  @port
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



18381
18382
18383
18384
18385
18386
18387
18388
18389
18390
18391
18392
18393
18394
18395
18396
18397
18398
# File 'lib/kaltura_types.rb', line 18381

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
	if xml_element.elements['assetId'] != nil
		self.asset_id = xml_element.elements['assetId'].text
	end
	if xml_element.elements['externalUrl'] != nil
		self.external_url = xml_element.elements['externalUrl'].text
	end
	if xml_element.elements['port'] != nil
		self.port = xml_element.elements['port'].text
	end
end