Module Values.RestApiClientExceptionSource

An exception indicating that a client-side error occurred during the Apache Airflow REST API call.

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

    The HTTP status code returned by the Apache Airflow REST API call.

    *)
  2. restApiResponse : RestApiResponse.t option;
    (*

    The error response data from the Apache Airflow REST API call, provided as a JSON object.

    *)
}
Sourceval make : ?restApiStatusCode:??? -> ?restApiResponse:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Structure of 'a 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