Module Values.ProjectBadgeSource

Information about the build badge for the build project.

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

    Set this to true to generate a publicly accessible URL for your project's build badge.

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

    The publicly-accessible URL through which you can access the build badge for your project.

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