Module Values.ImportJobSummarySource

A summary of the import job.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
  2. importDestination : ImportDestination.t option;
  3. jobStatus : JobStatus.t option;
  4. createdTimestamp : Timestamp.t option;
    (*

    The date and time when the import job was created.

    *)
  5. processedRecordsCount : ProcessedRecordsCount.t option;
    (*

    The current number of records processed.

    *)
  6. failedRecordsCount : FailedRecordsCount.t option;
    (*

    The number of records that failed processing because of invalid input or other reasons.

    *)
}
Sourceval make : ?jobId:??? -> ?importDestination:??? -> ?jobStatus:??? -> ?createdTimestamp:??? -> ?processedRecordsCount:??? -> ?failedRecordsCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ProcessedRecordsCount.t | `String of JobId.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of ContactListName.t ]) list ]) 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