Values.UploadJobItemSourceThe summary information for an individual upload job.
type nonrec t = {jobId : Uuid.t option;The unique identifier of the upload job.
*)displayName : String1To255.t option;The name of the upload job.
*)status : UploadJobStatus.t option;The current status of the upload job.
*)statusReason : StatusReason.t option;The reason for the current status of the upload job.
*)createdAt : Timestamp.t option;The timestamp when the upload job was created.
*)completedAt : Timestamp.t option;The timestamp when the upload job was completed.
*)dataExpiry : ExpirationDaysInteger.t option;The expiry duration for the profiles ingested with the upload job.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of ExpirationDaysInteger.t
| `String of Uuid.t
| `Timestamp of Timestamp.t ])
list ]