Module Values.UpdatePullRequestTitleInputSource

Replaces the title of a pull request.

Sourcetype nonrec t = {
  1. pullRequestId : PullRequestId.t;
    (*

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

    *)
  2. title : Title.t;
    (*

    The updated title of the pull request. This replaces the existing title.

    *)
}
Sourceval context_ : string
Sourceval make : pullRequestId:PullRequestId.t -> title:Title.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PullRequestId.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