-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix create issue result 400 * run test and bazel build success Co-authored-by: xwzQmxx <[email protected]>
- Loading branch information
1 parent
e844bcd
commit 684a166
Showing
6 changed files
with
130 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# IssueCreateParam | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**AccessToken** | **string** | 用户授权码 | [optional] [default to null] | ||
**Repo** | **string** | 仓库路径(path) | [optional] [default to null] | ||
**Title** | **string** | Issue标题 | [optional] [default to null] | ||
**IssuType** | **string** | 企业自定义任务类型,非企业默认任务类型为“任务” | [optional] [default to null] | ||
**Body** | **string** | Issue描述 | [optional] [default to null] | ||
**Assignee** | **string** | Issue负责人的username | [optional] [default to null] | ||
**Milestone** | **int32** | 里程碑序号 | [optional] [default to null] | ||
**Labels** | **string** | 用逗号分开的标签,名称要求长度在 2-20 之间且非特殊字符。如: bug,performance | [optional] [default to null] | ||
**Program** | **string** | 项目ID | [optional] [default to null] | ||
**Collaborators** | **string** | Issue协助者的个人空间地址, 以 , 分隔 | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* 码云 Open API | ||
* | ||
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) | ||
* | ||
* API version: 5.3.2 | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
|
||
package gitee | ||
|
||
// create issue information | ||
type IssueCreateParam struct { | ||
// 用户授权码 | ||
AccessToken string `json:"access_token,omitempty"` | ||
// 仓库路径(path) | ||
Repo string `json:"repo,omitempty"` | ||
// Issue标题 | ||
Title string `json:"title,omitempty"` | ||
// 企业自定义任务类型,非企业默认任务类型为“任务” | ||
IssuType string `json:"issu_type,omitempty"` | ||
// Issue描述 | ||
Body string `json:"body,omitempty"` | ||
// Issue负责人的username | ||
Assignee string `json:"assignee,omitempty"` | ||
// 里程碑序号 | ||
Milestone int32 `json:"milestone,omitempty"` | ||
// 用逗号分开的标签,名称要求长度在 2-20 之间且非特殊字符。如: bug,performance | ||
Labels string `json:"labels,omitempty"` | ||
// 项目ID | ||
Program string `json:"program,omitempty"` | ||
// Issue协助者的个人空间地址, 以 , 分隔 | ||
Collaborators string `json:"collaborators,omitempty"` | ||
} |