Module Values.CreatePullRequestInputSource

Creates a pull request in the specified repository.

Sourcetype nonrec t = {
  1. title : Title.t;
    (*

    The title of the pull request. This title is used to identify the pull request to other users in the repository.

    *)
  2. description : Description.t option;
    (*

    A description of the pull request.

    *)
  3. targets : TargetList.t;
    (*

    The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).

    *)
  4. clientRequestToken : ClientRequestToken.t option;
    (*

    A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token. The Amazon Web ServicesSDKs prepopulate client request tokens. If you are using an Amazon Web ServicesSDK, an idempotency token is created for you.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?clientRequestToken:??? -> title:Title.t -> targets:TargetList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of RepositoryName.t ]) list ] list | `String of Title.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