Module Values.GitHubResourceCapabilitiesSource

The capabilities enabled for a GitHub resource integration.

Sourcetype nonrec t = {
  1. leaveComments : Boolean.t option;
    (*

    Indicates whether the integration can leave comments on pull requests.

    *)
  2. remediateCode : Boolean.t option;
    (*

    Indicates whether the integration can create code remediation pull requests.

    *)
}
Sourceval make : ?leaveComments:??? -> ?remediateCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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