Module Values_1.ModelPackageStatusItemSource

Represents the overall status of a model package.

Sourcetype nonrec t = {
  1. name : Values_0.EntityName.t option;
    (*

    The name of the model package for which the overall status is being reported.

    *)
  2. status : DetailedModelPackageStatus.t option;
    (*

    The current status.

    *)
  3. failureReason : Values_0.String_.t option;
    (*

    if the overall status is Failed, the reason for the failure.

    *)
}
Sourceval make : ?name:??? -> ?status:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.EntityName.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