Module Values.AddonIssueSource

An issue related to an add-on.

Sourcetype nonrec t = {
  1. code : AddonIssueCode.t option;
    (*

    A code that describes the type of issue.

    *)
  2. message : String_.t option;
    (*

    A message that provides details about the issue and what might cause it.

    *)
  3. resourceIds : StringList.t option;
    (*

    The resource IDs of the issue.

    *)
}
Sourceval make : ?code:??? -> ?message:??? -> ?resourceIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.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