This repository has been archived on 2020-07-09. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-sdk/model_notification_subject.go
jolheiser 1dcde8a669
Update master
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2020-01-25 20:51:38 -06:00

19 lines
521 B
Go

/*
* Gitea API.
*
* This documentation describes the Gitea API.
*
* API version: 1.1.1
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package gitea
// NotificationSubject contains the notification subject (Issue/Pull/Commit)
type NotificationSubject struct {
LatestCommentUrl string `json:"latest_comment_url,omitempty"`
Title string `json:"title,omitempty"`
Type_ string `json:"type,omitempty"`
Url string `json:"url,omitempty"`
}