You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-scm/scm/review.go

50 lines
1.1 KiB
Go

// Copyright 2017 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package scm
import (
"context"
"time"
)
type (
// Review represents a review comment.
Review struct {
ID int
Body string
Path string
Sha string
Line int
Link string
Author User
Created time.Time
Updated time.Time
}
// ReviewInput provides the input fields required for
// creating a review comment.
ReviewInput struct {
Body string
Sha string
Path string
Line int
}
// ReviewService provides access to review resources.
ReviewService interface {
// Find returns the review comment by id.
Find(context.Context, string, int, int) (*Review, *Response, error)
// List returns the review comment list.
List(context.Context, string, int, ListOptions) ([]*Review, *Response, error)
// Create creates a review comment.
Create(context.Context, string, int, *ReviewInput) (*Review, *Response, error)
// Delete deletes a review comment.
Delete(context.Context, string, int, int) (*Response, error)
}
)