Module Values.ResourceErrorsDetailsSource

A list of errors retrieving an application's resources.

Sourcetype nonrec t = {
  1. hasMoreErrors : BooleanOptional.t option;
    (*

    This indicates if there are more errors not listed in the resourceErrors list.

    *)
  2. resourceErrors : ResourceErrorList.t option;
    (*

    A list of errors retrieving an application's resources.

    *)
}
Sourceval make : ?hasMoreErrors:??? -> ?resourceErrors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `List of [> `Structure of (string * [> `String of String255.t ]) list ] 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