Module Values.UpdateProblemRequestSource

Updates the visibility of the problem or specifies the problem as RESOLVED.

Sourcetype nonrec t = {
  1. problemId : ProblemId.t;
    (*

    The ID of the problem.

    *)
  2. updateStatus : UpdateStatus.t option;
    (*

    The status of the problem. Arguments can be passed for only problems that show a status of RECOVERING.

    *)
  3. visibility : Visibility.t option;
    (*

    The visibility of a problem. When you pass a value of IGNORED, the problem is removed from the default view, and all notifications for the problem are suspended. When VISIBLE is passed, the IGNORED action is reversed.

    *)
}
Sourceval context_ : string
Sourceval make : ?updateStatus:??? -> ?visibility:??? -> problemId:ProblemId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProblemId.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