Module Values.TaskSource

Task object encapsulating task information.

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

    Status of the task - Not Started, In-Progress, Complete.

    *)
  2. statusDetail : StatusDetail.t option;
    (*

    Details of task status as notified by a migration tool. A tool might use this field to provide clarifying information about the status that is unique to that tool or that explains an error state.

    *)
  3. progressPercent : ProgressPercent.t option;
    (*

    Indication of the percentage completion of the task.

    *)
}
Sourceval context_ : string
Sourceval make : ?statusDetail:??? -> ?progressPercent:??? -> status:Status.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ProgressPercent.t | `String of StatusDetail.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