Module Values.DeletionWarningSource

A configuration ID paired with a warning message.

Sourcetype nonrec t = {
  1. configurationId : ConfigurationId.t option;
    (*

    The unique identifier of the configuration that produced a warning.

    *)
  2. warningCode : WarningCode.t option;
    (*

    The integer warning code associated with the warning message.

    *)
  3. warningText : WarningText.t option;
    (*

    A descriptive message of the warning the associated configuration ID produced.

    *)
}
Sourceval make : ?configurationId:??? -> ?warningCode:??? -> ?warningText:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of WarningCode.t | `String of ConfigurationId.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