Values.ImportJobSourceDetails about an import job.
type nonrec t = {jobId : JobId.t option;The identifier of the import job.
*)name : JobName.t option;A user-friendly name for the import job.
*)status : ImportJobStatus.t option;The status of the import job.
*)preSignedUrl : PreSignedUrl.t option;The pre-signed URL target for uploading the input file.
*)importedItemsCount : JobItemsCount.t option;The number of addresses in the input that were successfully imported into the address list.
*)failedItemsCount : JobItemsCount.t option;The number of addresses in the input that failed to get imported into address list.
*)importDataFormat : ImportDataFormat.t option;The format of the input for the import job.
*)addressListId : AddressListId.t option;The unique identifier of the address list the import job was created for.
*)createdTimestamp : Timestamp.t option;The timestamp of when the import job was created.
*)startTimestamp : Timestamp.t option;The timestamp of when the import job was started.
*)completedTimestamp : Timestamp.t option;The timestamp of when the import job was completed.
*)error : ErrorMessage.t option;The reason for failure of an import job.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of JobItemsCount.t
| `String of JobId.t
| `Structure of (string * [> `Enum of string ]) list
| `Timestamp of Timestamp.t ])
list ]