Module Values_1.ModelLifeCycleSource

A structure describing the current state of the model in its life cycle.

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

    The current stage in the model life cycle.

    *)
  2. stageStatus : Values_0.EntityName.t;
    (*

    The current status of a stage in model life cycle.

    *)
  3. stageDescription : StageDescription.t option;
    (*

    Describes the stage related details.

    *)
}
Sourceval context_ : string
Sourceval make : ?stageDescription:??? -> stage:Values_0.EntityName.t -> stageStatus:Values_0.EntityName.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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