Module Values.UpdatePullRequestDescriptionOutputSource

Replaces the contents of the description of a pull request.

Sourcetype nonrec t = {
  1. pullRequest : PullRequest.t option;
    (*

    Information about the updated pull request.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidDescriptionException of InvalidDescriptionException.t
  2. | `InvalidPullRequestIdException of InvalidPullRequestIdException.t
  3. | `PullRequestAlreadyClosedException of PullRequestAlreadyClosedException.t
  4. | `PullRequestDoesNotExistException of PullRequestDoesNotExistException.t
  5. | `PullRequestIdRequiredException of PullRequestIdRequiredException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?pullRequest:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidDescriptionException of unit | `InvalidPullRequestIdException of unit | `PullRequestAlreadyClosedException of unit | `PullRequestDoesNotExistException of unit | `PullRequestIdRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidDescriptionException of unit | `InvalidPullRequestIdException of unit | `PullRequestAlreadyClosedException of unit | `PullRequestDoesNotExistException of unit | `PullRequestIdRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of RepositoryName.t | `Structure of (string * [> `Boolean of IsMerged.t | `Enum of string | `String of Arn.t ]) list | `Timestamp of LastModifiedDate.t ]) list ] list | `String of PullRequestId.t | `Timestamp of LastModifiedDate.t ]) list ]) 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