woodpecker/model/feed.go

42 lines
2.2 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2015-09-30 01:21:17 +00:00
package model
// Feed represents an item in the user's feed or timeline.
//
// swagger:model feed
2015-09-30 01:21:17 +00:00
type Feed struct {
2015-10-02 23:16:41 +00:00
Owner string `json:"owner" meddler:"repo_owner"`
Name string `json:"name" meddler:"repo_name"`
FullName string `json:"full_name" meddler:"repo_full_name"`
2015-09-30 01:21:17 +00:00
2016-06-15 00:34:47 +00:00
Number int `json:"number,omitempty" meddler:"build_number,zeroisnull"`
Event string `json:"event,omitempty" meddler:"build_event,zeroisnull"`
Status string `json:"status,omitempty" meddler:"build_status,zeroisnull"`
Created int64 `json:"created_at,omitempty" meddler:"build_created,zeroisnull"`
Started int64 `json:"started_at,omitempty" meddler:"build_started,zeroisnull"`
Finished int64 `json:"finished_at,omitempty" meddler:"build_finished,zeroisnull"`
Commit string `json:"commit,omitempty" meddler:"build_commit,zeroisnull"`
Branch string `json:"branch,omitempty" meddler:"build_branch,zeroisnull"`
Ref string `json:"ref,omitempty" meddler:"build_ref,zeroisnull"`
Refspec string `json:"refspec,omitempty" meddler:"build_refspec,zeroisnull"`
Remote string `json:"remote,omitempty" meddler:"build_remote,zeroisnull"`
Title string `json:"title,omitempty" meddler:"build_title,zeroisnull"`
Message string `json:"message,omitempty" meddler:"build_message,zeroisnull"`
Author string `json:"author,omitempty" meddler:"build_author,zeroisnull"`
Avatar string `json:"author_avatar,omitempty" meddler:"build_avatar,zeroisnull"`
Email string `json:"author_email,omitempty" meddler:"build_email,zeroisnull"`
2015-09-30 01:21:17 +00:00
}