Files
gitea-rs/crates/gitea-client/docs/CreatePullRequestOption.md
2026-03-20 16:24:40 +01:00

22 lines
1.3 KiB
Markdown

# CreatePullRequestOption
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**assignee** | Option<**String**> | The primary assignee username | [optional]
**assignees** | Option<**Vec<String>**> | The list of assignee usernames | [optional]
**base** | Option<**String**> | The base branch for the pull request | [optional]
**body** | Option<**String**> | The description body of the pull request | [optional]
**due_date** | Option<**String**> | | [optional]
**head** | Option<**String**> | The head branch for the pull request, it could be a branch name on the base repository or a form like `<username>:<branch>` which refers to the user's fork repository's branch. | [optional]
**labels** | Option<**Vec<i64>**> | The list of label IDs to assign to the pull request | [optional]
**milestone** | Option<**i64**> | The milestone ID to assign to the pull request | [optional]
**reviewers** | Option<**Vec<String>**> | The list of reviewer usernames | [optional]
**team_reviewers** | Option<**Vec<String>**> | The list of team reviewer names | [optional]
**title** | Option<**String**> | The title of the pull request | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)