Module Values.BotAnalyzerRecommendationSource

Contains a recommendation for bot optimization identified by the Bot Analyzer.

Sourcetype nonrec t = {
  1. issueLocation : IssueLocation.t option;
    (*

    The location information for the identified issue within the bot configuration.

    *)
  2. priority : Priority.t option;
    (*

    The priority level of the recommendation. Valid Values: High | Medium | Low

    *)
  3. issueDescription : Description.t option;
    (*

    A detailed description of the identified configuration issue.

    *)
  4. proposedFix : Description.t option;
    (*

    The recommended solution to address the identified issue.

    *)
}
Sourceval make : ?issueLocation:??? -> ?priority:??? -> ?issueDescription:??? -> ?proposedFix:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Description.t | `Structure of (string * [> `String of LocaleId.t ]) 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