Module Values.DependencyCountsSource

The number of dependencies for the consumer.

Sourcetype nonrec t = {
  1. dependenciesResolved : Integer.t option;
    (*

    The number of resolved dependencies.

    *)
  2. dependenciesUnresolved : Integer.t option;
    (*

    The number of unresolved dependencies.

    *)
  3. consumersResolved : Integer.t option;
    (*

    The number of consumers resolved.

    *)
  4. consumersUnresolved : Integer.t option;
    (*

    The number of unresolved consumers.

    *)
}
Sourceval make : ?dependenciesResolved:??? -> ?dependenciesUnresolved:??? -> ?consumersResolved:??? -> ?consumersUnresolved:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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