Rust API for Gitea, automatically generated https://git.exmods.org/swagger.v1.json
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

4 年之前
123456789101112131415161718192021222324252627
  1. # EditRepoOption
  2. ## Properties
  3. Name | Type | Description | Notes
  4. ------------ | ------------- | ------------- | -------------
  5. **allow_merge_commits** | **bool** | either `true` to allow merging pull requests with a merge commit, or `false` to prevent merging pull requests with merge commits. `has_pull_requests` must be `true`. | [optional] [default to null]
  6. **allow_rebase** | **bool** | either `true` to allow rebase-merging pull requests, or `false` to prevent rebase-merging. `has_pull_requests` must be `true`. | [optional] [default to null]
  7. **allow_rebase_explicit** | **bool** | either `true` to allow rebase with explicit merge commits (--no-ff), or `false` to prevent rebase with explicit merge commits. `has_pull_requests` must be `true`. | [optional] [default to null]
  8. **allow_squash_merge** | **bool** | either `true` to allow squash-merging pull requests, or `false` to prevent squash-merging. `has_pull_requests` must be `true`. | [optional] [default to null]
  9. **archived** | **bool** | set to `true` to archive this repository. | [optional] [default to null]
  10. **default_branch** | **String** | sets the default branch for this repository. | [optional] [default to null]
  11. **description** | **String** | a short description of the repository. | [optional] [default to null]
  12. **external_tracker** | [***::models::ExternalTracker**](ExternalTracker.md) | | [optional] [default to null]
  13. **external_wiki** | [***::models::ExternalWiki**](ExternalWiki.md) | | [optional] [default to null]
  14. **has_issues** | **bool** | either `true` to enable issues for this repository or `false` to disable them. | [optional] [default to null]
  15. **has_pull_requests** | **bool** | either `true` to allow pull requests, or `false` to prevent pull request. | [optional] [default to null]
  16. **has_wiki** | **bool** | either `true` to enable the wiki for this repository or `false` to disable it. | [optional] [default to null]
  17. **ignore_whitespace_conflicts** | **bool** | either `true` to ignore whitespace for conflicts, or `false` to not ignore whitespace. `has_pull_requests` must be `true`. | [optional] [default to null]
  18. **internal_tracker** | [***::models::InternalTracker**](InternalTracker.md) | | [optional] [default to null]
  19. **name** | **String** | name of the repository | [optional] [default to null]
  20. **private** | **bool** | either `true` to make the repository private or `false` to make it public. Note: you will get a 422 error if the organization restricts changing repository visibility to organization owners and a non-owner tries to change the value of private. | [optional] [default to null]
  21. **template** | **bool** | either `true` to make this repository a template or `false` to make it a normal repository | [optional] [default to null]
  22. **website** | **String** | a URL with more information about the repository. | [optional] [default to null]
  23. [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)