Module Values.FraudsterRegistrationJobSummarySource

Contains a summary of information about a fraudster registration job.

Sourcetype nonrec t = {
  1. createdAt : Timestamp.t option;
    (*

    A timestamp of when the fraudster registration job was created.

    *)
  2. domainId : DomainId.t option;
    (*

    The identifier of the domain that contains the fraudster registration job.

    *)
  3. endedAt : Timestamp.t option;
    (*

    A timestamp of when the fraudster registration job ended.

    *)
  4. 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.

    *)
  5. jobId : JobId.t option;
    (*

    The service-generated identifier for the fraudster registration job.

    *)
  6. jobName : JobName.t option;
    (*

    The client-provided name for the fraudster registration job.

    *)
  7. jobProgress : JobProgress.t option;
    (*

    Shows the completed percentage of registration requests listed in the input file.

    *)
  8. jobStatus : FraudsterRegistrationJobStatus.t option;
    (*

    The current status of the fraudster registration job.

    *)
}
Sourceval make : ?createdAt:??? -> ?domainId:??? -> ?endedAt:??? -> ?failureDetails:??? -> ?jobId:??? -> ?jobName:??? -> ?jobProgress:??? -> ?jobStatus:??? -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t