Module Values.DataSetImportTaskSource

Contains information about a data set import task.

Sourcetype nonrec t = {
  1. status : DataSetTaskLifecycle.t option;
    (*

    The status of the data set import task.

    *)
  2. statusReason : String_.t option;
    (*

    If dataset import failed, the failure reason will show here.

    *)
  3. summary : DataSetImportSummary.t option;
    (*

    A summary of the data set import task.

    *)
  4. taskId : Identifier.t option;
    (*

    The identifier of the data set import task.

    *)
}
Sourceval make : ?status:??? -> ?statusReason:??? -> ?summary:??? -> ?taskId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) 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