Module Values.BillingViewHealthStatusSource

Represents the health status of a billing view, including a status code and optional reasons for the status.

Sourcetype nonrec t = {
  1. statusCode : BillingViewStatus.t option;
    (*

    The current health status code of the billing view.

    *)
  2. statusReasons : BillingViewStatusReasons.t option;
    (*

    A list of reasons explaining the current health status, if applicable.

    *)
}
Sourceval make : ?statusCode:??? -> ?statusReasons:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] 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