/* * 码云 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 // update issue information type IssueUpdateParam struct { // 用户授权码 AccessToken string `json:"access_token,omitempty"` // 仓库路径(path) Repo string `json:"repo,omitempty"` // Issue标题 Title string `json:"title,omitempty"` // Issue 状态,open(开启的)、progressing(进行中)、closed(关闭的) State string `json:"state,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"` }