Module Values.UpdatePullRequestDescriptionInputSource

Replaces the contents of the description 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. description : Description.t;
    (*

    The updated content of the description for the pull request. This content replaces the existing description.

    *)
}
Sourceval context_ : string
Sourceval make : pullRequestId:PullRequestId.t -> description:Description.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