model_note.go 604 字节
Newer Older
E
edisonxiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * 码云 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

// 获取企业某个Issue所有评论
type Note struct {
	Id string `json:"id,omitempty"`
	Body string `json:"body,omitempty"`
	BodyHtml string `json:"body_html,omitempty"`
	User string `json:"user,omitempty"`
	Source string `json:"source,omitempty"`
	CreatedAt string `json:"created_at,omitempty"`
	Target string `json:"target,omitempty"`
}