Values.ConnectorFileTransferResultSourceA structure that contains the details for files transferred using an SFTP connector, during a single transfer.
type nonrec t = {filePath : FilePath.t option;The filename and path to where the file was sent to or retrieved from.
*)statusCode : TransferTableStatus.t option;The current status for the transfer.
*)failureCode : FailureCode.t option;For transfers that fail, this parameter contains a code indicating the reason. For example, RETRIEVE_FILE_NOT_FOUND
*)failureMessage : Message.t option;For transfers that fail, this parameter describes the reason for the failure.
*)}val to_value :
t ->
[> `Structure of (string * [> `Enum of string | `String of FilePath.t ]) list ]