Values.FraudsterRegistrationJobSummarySourceContains a summary of information about a fraudster registration job.
type nonrec t = {createdAt : Timestamp.t option;A timestamp of when the fraudster registration job was created.
*)domainId : DomainId.t option;The identifier of the domain that contains the fraudster registration job.
*)endedAt : Timestamp.t option;A timestamp of when the fraudster registration job ended.
*)failureDetails : FailureDetails.t option;Contains details that are populated when an entire batch job fails. In cases of individual registration job failures, the batch job as a whole doesn't fail; it is completed with a JobStatus of COMPLETED_WITH_ERRORS. You can use the job output file to identify the individual registration requests that failed.
*)jobId : JobId.t option;The service-generated identifier for the fraudster registration job.
*)jobName : JobName.t option;The client-provided name for the fraudster registration job.
*)jobProgress : JobProgress.t option;Shows the completed percentage of registration requests listed in the input file.
*)jobStatus : FraudsterRegistrationJobStatus.t option;The current status of the fraudster registration job.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of DomainId.t
| `Structure of
(string * [> `Integer of Integer.t | `String of String_.t ]) list
| `Timestamp of Timestamp.t ])
list ]