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

1.3 KiB

CreatePullRequestOption

Properties

Name Type Description Notes
assignee Option<String> The primary assignee username [optional]
assignees Option<Vec> 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> 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> The list of reviewer usernames [optional]
team_reviewers Option<Vec> The list of team reviewer names [optional]
title Option<String> The title of the pull request [optional]

[Back to Model list] [Back to API list] [Back to README]