Module Values.UploadJobItemSource

The summary information for an individual upload job.

Sourcetype nonrec t = {
  1. jobId : Uuid.t option;
    (*

    The unique identifier of the upload job.

    *)
  2. displayName : String1To255.t option;
    (*

    The name of the upload job.

    *)
  3. status : UploadJobStatus.t option;
    (*

    The current status of the upload job.

    *)
  4. statusReason : StatusReason.t option;
    (*

    The reason for the current status of the upload job.

    *)
  5. createdAt : Timestamp.t option;
    (*

    The timestamp when the upload job was created.

    *)
  6. completedAt : Timestamp.t option;
    (*

    The timestamp when the upload job was completed.

    *)
  7. dataExpiry : ExpirationDaysInteger.t option;
    (*

    The expiry duration for the profiles ingested with the upload job.

    *)
}
Sourceval make : ?jobId:??? -> ?displayName:??? -> ?status:??? -> ?statusReason:??? -> ?createdAt:??? -> ?completedAt:??? -> ?dataExpiry:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ExpirationDaysInteger.t | `String of Uuid.t | `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