Module Values.ImprovementSummarySource

An improvement summary of a lens review in a workload.

Sourcetype nonrec t = {
  1. questionId : QuestionId.t option;
  2. pillarId : PillarId.t option;
  3. questionTitle : QuestionTitle.t option;
  4. risk : Risk.t option;
  5. improvementPlanUrl : ImprovementPlanUrl.t option;
  6. improvementPlans : ChoiceImprovementPlans.t option;
    (*

    The improvement plan details.

    *)
  7. jiraConfiguration : JiraConfiguration.t option;
    (*

    Configuration of the Jira integration.

    *)
}
Sourceval make : ?questionId:??? -> ?pillarId:??? -> ?questionTitle:??? -> ?risk:??? -> ?improvementPlanUrl:??? -> ?improvementPlans:??? -> ?jiraConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ChoiceId.t ]) list ] list | `String of QuestionId.t | `Structure of (string * [> `String of JiraIssueUrl.t | `Timestamp of Timestamp.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