devdashpb

package
v0.0.0-...-4d863f5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 31, 2018 License: BSD-3-Clause Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BoolChange

type BoolChange struct {
	Val                  bool     `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BoolChange) Descriptor

func (*BoolChange) Descriptor() ([]byte, []int)

func (*BoolChange) GetVal

func (m *BoolChange) GetVal() bool

func (*BoolChange) ProtoMessage

func (*BoolChange) ProtoMessage()

func (*BoolChange) Reset

func (m *BoolChange) Reset()

func (*BoolChange) String

func (m *BoolChange) String() string

func (*BoolChange) XXX_DiscardUnknown

func (m *BoolChange) XXX_DiscardUnknown()

func (*BoolChange) XXX_Marshal

func (m *BoolChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BoolChange) XXX_Merge

func (m *BoolChange) XXX_Merge(src proto.Message)

func (*BoolChange) XXX_Size

func (m *BoolChange) XXX_Size() int

func (*BoolChange) XXX_Unmarshal

func (m *BoolChange) XXX_Unmarshal(b []byte) error

type GitCommit

type GitCommit struct {
	Sha1 string `protobuf:"bytes,1,opt,name=sha1,proto3" json:"sha1,omitempty"`
	// raw is the "git cat-file commit $sha1" output.
	Raw                  string       `protobuf:"bytes,2,opt,name=raw,proto3" json:"raw,omitempty"`
	DiffTree             *GitDiffTree `protobuf:"bytes,3,opt,name=diff_tree,json=diffTree,proto3" json:"diff_tree,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GitCommit) Descriptor

func (*GitCommit) Descriptor() ([]byte, []int)

func (*GitCommit) GetDiffTree

func (m *GitCommit) GetDiffTree() *GitDiffTree

func (*GitCommit) GetRaw

func (m *GitCommit) GetRaw() string

func (*GitCommit) GetSha1

func (m *GitCommit) GetSha1() string

func (*GitCommit) ProtoMessage

func (*GitCommit) ProtoMessage()

func (*GitCommit) Reset

func (m *GitCommit) Reset()

func (*GitCommit) String

func (m *GitCommit) String() string

func (*GitCommit) XXX_DiscardUnknown

func (m *GitCommit) XXX_DiscardUnknown()

func (*GitCommit) XXX_Marshal

func (m *GitCommit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GitCommit) XXX_Merge

func (m *GitCommit) XXX_Merge(src proto.Message)

func (*GitCommit) XXX_Size

func (m *GitCommit) XXX_Size() int

func (*GitCommit) XXX_Unmarshal

func (m *GitCommit) XXX_Unmarshal(b []byte) error

type GitDiffTree

type GitDiffTree struct {
	File                 []*GitDiffTreeFile `protobuf:"bytes,1,rep,name=file,proto3" json:"file,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

git diff-tree --numstat oldtree newtree

func (*GitDiffTree) Descriptor

func (*GitDiffTree) Descriptor() ([]byte, []int)

func (*GitDiffTree) GetFile

func (m *GitDiffTree) GetFile() []*GitDiffTreeFile

func (*GitDiffTree) ProtoMessage

func (*GitDiffTree) ProtoMessage()

func (*GitDiffTree) Reset

func (m *GitDiffTree) Reset()

func (*GitDiffTree) String

func (m *GitDiffTree) String() string

func (*GitDiffTree) XXX_DiscardUnknown

func (m *GitDiffTree) XXX_DiscardUnknown()

func (*GitDiffTree) XXX_Marshal

func (m *GitDiffTree) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GitDiffTree) XXX_Merge

func (m *GitDiffTree) XXX_Merge(src proto.Message)

func (*GitDiffTree) XXX_Size

func (m *GitDiffTree) XXX_Size() int

func (*GitDiffTree) XXX_Unmarshal

func (m *GitDiffTree) XXX_Unmarshal(b []byte) error

type GitDiffTreeFile

type GitDiffTreeFile struct {
	File                 string   `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	Added                int64    `protobuf:"varint,2,opt,name=added,proto3" json:"added,omitempty"`
	Deleted              int64    `protobuf:"varint,3,opt,name=deleted,proto3" json:"deleted,omitempty"`
	Binary               bool     `protobuf:"varint,4,opt,name=binary,proto3" json:"binary,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

GitDiffTreeFile represents one line of `git diff-tree --numstat` output.

func (*GitDiffTreeFile) Descriptor

func (*GitDiffTreeFile) Descriptor() ([]byte, []int)

func (*GitDiffTreeFile) GetAdded

func (m *GitDiffTreeFile) GetAdded() int64

func (*GitDiffTreeFile) GetBinary

func (m *GitDiffTreeFile) GetBinary() bool

func (*GitDiffTreeFile) GetDeleted

func (m *GitDiffTreeFile) GetDeleted() int64

func (*GitDiffTreeFile) GetFile

func (m *GitDiffTreeFile) GetFile() string

func (*GitDiffTreeFile) ProtoMessage

func (*GitDiffTreeFile) ProtoMessage()

func (*GitDiffTreeFile) Reset

func (m *GitDiffTreeFile) Reset()

func (*GitDiffTreeFile) String

func (m *GitDiffTreeFile) String() string

func (*GitDiffTreeFile) XXX_DiscardUnknown

func (m *GitDiffTreeFile) XXX_DiscardUnknown()

func (*GitDiffTreeFile) XXX_Marshal

func (m *GitDiffTreeFile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GitDiffTreeFile) XXX_Merge

func (m *GitDiffTreeFile) XXX_Merge(src proto.Message)

func (*GitDiffTreeFile) XXX_Size

func (m *GitDiffTreeFile) XXX_Size() int

func (*GitDiffTreeFile) XXX_Unmarshal

func (m *GitDiffTreeFile) XXX_Unmarshal(b []byte) error

type GitMutation

type GitMutation struct {
	Repo                 string     `protobuf:"bytes,1,opt,name=repo,proto3" json:"repo,omitempty"`
	Commit               *GitCommit `protobuf:"bytes,2,opt,name=commit,proto3" json:"commit,omitempty"`
	Refs                 []*GitRef  `protobuf:"bytes,3,rep,name=refs,proto3" json:"refs,omitempty"`
	DeletedRefs          []string   `protobuf:"bytes,4,rep,name=deleted_refs,json=deletedRefs,proto3" json:"deleted_refs,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*GitMutation) Descriptor

func (*GitMutation) Descriptor() ([]byte, []int)

func (*GitMutation) GetCommit

func (m *GitMutation) GetCommit() *GitCommit

func (*GitMutation) GetDeletedRefs

func (m *GitMutation) GetDeletedRefs() []string

func (*GitMutation) GetRefs

func (m *GitMutation) GetRefs() []*GitRef

func (*GitMutation) GetRepo

func (m *GitMutation) GetRepo() string

func (*GitMutation) ProtoMessage

func (*GitMutation) ProtoMessage()

func (*GitMutation) Reset

func (m *GitMutation) Reset()

func (*GitMutation) String

func (m *GitMutation) String() string

func (*GitMutation) XXX_DiscardUnknown

func (m *GitMutation) XXX_DiscardUnknown()

func (*GitMutation) XXX_Marshal

func (m *GitMutation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GitMutation) XXX_Merge

func (m *GitMutation) XXX_Merge(src proto.Message)

func (*GitMutation) XXX_Size

func (m *GitMutation) XXX_Size() int

func (*GitMutation) XXX_Unmarshal

func (m *GitMutation) XXX_Unmarshal(b []byte) error

type GitRef

type GitRef struct {
	// ref is the git ref name, such as:
	//    HEAD
	//    refs/heads/master
	//    refs/changes/00/14700/1
	//    refs/changes/00/14700/meta
	//    refs/meta/config
	Ref string `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`
	// sha1 is the lowercase hex sha1
	Sha1                 string   `protobuf:"bytes,2,opt,name=sha1,proto3" json:"sha1,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GitRef) Descriptor

func (*GitRef) Descriptor() ([]byte, []int)

func (*GitRef) GetRef

func (m *GitRef) GetRef() string

func (*GitRef) GetSha1

func (m *GitRef) GetSha1() string

func (*GitRef) ProtoMessage

func (*GitRef) ProtoMessage()

func (*GitRef) Reset

func (m *GitRef) Reset()

func (*GitRef) String

func (m *GitRef) String() string

func (*GitRef) XXX_DiscardUnknown

func (m *GitRef) XXX_DiscardUnknown()

func (*GitRef) XXX_Marshal

func (m *GitRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GitRef) XXX_Merge

func (m *GitRef) XXX_Merge(src proto.Message)

func (*GitRef) XXX_Size

func (m *GitRef) XXX_Size() int

func (*GitRef) XXX_Unmarshal

func (m *GitRef) XXX_Unmarshal(b []byte) error

type IssueCommentMutation

type IssueCommentMutation struct {
	Id                   int64                `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	User                 *TrackerUser         `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
	Body                 string               `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
	Created              *timestamp.Timestamp `protobuf:"bytes,4,opt,name=created,proto3" json:"created,omitempty"`
	Updated              *timestamp.Timestamp `protobuf:"bytes,5,opt,name=updated,proto3" json:"updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*IssueCommentMutation) Descriptor

func (*IssueCommentMutation) Descriptor() ([]byte, []int)

func (*IssueCommentMutation) GetBody

func (m *IssueCommentMutation) GetBody() string

func (*IssueCommentMutation) GetCreated

func (m *IssueCommentMutation) GetCreated() *timestamp.Timestamp

func (*IssueCommentMutation) GetId

func (m *IssueCommentMutation) GetId() int64

func (*IssueCommentMutation) GetUpdated

func (m *IssueCommentMutation) GetUpdated() *timestamp.Timestamp

func (*IssueCommentMutation) GetUser

func (m *IssueCommentMutation) GetUser() *TrackerUser

func (*IssueCommentMutation) ProtoMessage

func (*IssueCommentMutation) ProtoMessage()

func (*IssueCommentMutation) Reset

func (m *IssueCommentMutation) Reset()

func (*IssueCommentMutation) String

func (m *IssueCommentMutation) String() string

func (*IssueCommentMutation) XXX_DiscardUnknown

func (m *IssueCommentMutation) XXX_DiscardUnknown()

func (*IssueCommentMutation) XXX_Marshal

func (m *IssueCommentMutation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IssueCommentMutation) XXX_Merge

func (m *IssueCommentMutation) XXX_Merge(src proto.Message)

func (*IssueCommentMutation) XXX_Size

func (m *IssueCommentMutation) XXX_Size() int

func (*IssueCommentMutation) XXX_Unmarshal

func (m *IssueCommentMutation) XXX_Unmarshal(b []byte) error

type IssueMutation

type IssueMutation struct {
	Project  string `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	Id       string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	IssueKey string `protobuf:"bytes,3,opt,name=issueKey,proto3" json:"issueKey,omitempty"`
	// not_exist is set true if the issue has been found to not exist.
	// If true, the project/id/issueKey fields above must still be set.
	// If a future issue mutation for the same number arrives without
	// not_exist set, then the issue comes back to life.
	NotExist             bool                 `protobuf:"varint,4,opt,name=not_exist,json=notExist,proto3" json:"not_exist,omitempty"`
	Created              *timestamp.Timestamp `protobuf:"bytes,5,opt,name=created,proto3" json:"created,omitempty"`
	Updated              *timestamp.Timestamp `protobuf:"bytes,6,opt,name=updated,proto3" json:"updated,omitempty"`
	Title                string               `protobuf:"bytes,7,opt,name=title,proto3" json:"title,omitempty"`
	Body                 string               `protobuf:"bytes,8,opt,name=body,proto3" json:"body,omitempty"`
	Owner                *TrackerUser         `protobuf:"bytes,9,opt,name=owner,proto3" json:"owner,omitempty"`
	Assignees            []*TrackerUser       `protobuf:"bytes,10,rep,name=assignees,proto3" json:"assignees,omitempty"`
	DeletedAssignees     []string             `protobuf:"bytes,11,rep,name=deleted_assignees,json=deletedAssignees,proto3" json:"deleted_assignees,omitempty"`
	Milestones           []*TrackerMilestone  `protobuf:"bytes,12,rep,name=milestones,proto3" json:"milestones,omitempty"`
	DeletedMilestones    []string             `protobuf:"bytes,13,rep,name=deleted_milestones,json=deletedMilestones,proto3" json:"deleted_milestones,omitempty"`
	Status               string               `protobuf:"bytes,14,opt,name=status,proto3" json:"status,omitempty"`
	Closed               *BoolChange          `protobuf:"bytes,15,opt,name=closed,proto3" json:"closed,omitempty"`
	ClosedAt             *timestamp.Timestamp `protobuf:"bytes,16,opt,name=closed_at,json=closedAt,proto3" json:"closed_at,omitempty"`
	ClosedBy             *TrackerUser         `protobuf:"bytes,17,opt,name=closed_by,json=closedBy,proto3" json:"closed_by,omitempty"`
	Labels               []*TrackerLabel      `protobuf:"bytes,18,rep,name=labels,proto3" json:"labels,omitempty"`
	DeletedLabels        []string             `protobuf:"bytes,19,rep,name=deleted_labels,json=deletedLabels,proto3" json:"deleted_labels,omitempty"`
	Url                  string               `protobuf:"bytes,20,opt,name=url,proto3" json:"url,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*IssueMutation) Descriptor

func (*IssueMutation) Descriptor() ([]byte, []int)

func (*IssueMutation) GetAssignees

func (m *IssueMutation) GetAssignees() []*TrackerUser

func (*IssueMutation) GetBody

func (m *IssueMutation) GetBody() string

func (*IssueMutation) GetClosed

func (m *IssueMutation) GetClosed() *BoolChange

func (*IssueMutation) GetClosedAt

func (m *IssueMutation) GetClosedAt() *timestamp.Timestamp

func (*IssueMutation) GetClosedBy

func (m *IssueMutation) GetClosedBy() *TrackerUser

func (*IssueMutation) GetCreated

func (m *IssueMutation) GetCreated() *timestamp.Timestamp

func (*IssueMutation) GetDeletedAssignees

func (m *IssueMutation) GetDeletedAssignees() []string

func (*IssueMutation) GetDeletedLabels

func (m *IssueMutation) GetDeletedLabels() []string

func (*IssueMutation) GetDeletedMilestones

func (m *IssueMutation) GetDeletedMilestones() []string

func (*IssueMutation) GetId

func (m *IssueMutation) GetId() string

func (*IssueMutation) GetIssueKey

func (m *IssueMutation) GetIssueKey() string

func (*IssueMutation) GetLabels

func (m *IssueMutation) GetLabels() []*TrackerLabel

func (*IssueMutation) GetMilestones

func (m *IssueMutation) GetMilestones() []*TrackerMilestone

func (*IssueMutation) GetNotExist

func (m *IssueMutation) GetNotExist() bool

func (*IssueMutation) GetOwner

func (m *IssueMutation) GetOwner() *TrackerUser

func (*IssueMutation) GetProject

func (m *IssueMutation) GetProject() string

func (*IssueMutation) GetStatus

func (m *IssueMutation) GetStatus() string

func (*IssueMutation) GetTitle

func (m *IssueMutation) GetTitle() string

func (*IssueMutation) GetUpdated

func (m *IssueMutation) GetUpdated() *timestamp.Timestamp

func (*IssueMutation) GetUrl

func (m *IssueMutation) GetUrl() string

func (*IssueMutation) ProtoMessage

func (*IssueMutation) ProtoMessage()

func (*IssueMutation) Reset

func (m *IssueMutation) Reset()

func (*IssueMutation) String

func (m *IssueMutation) String() string

func (*IssueMutation) XXX_DiscardUnknown

func (m *IssueMutation) XXX_DiscardUnknown()

func (*IssueMutation) XXX_Marshal

func (m *IssueMutation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IssueMutation) XXX_Merge

func (m *IssueMutation) XXX_Merge(src proto.Message)

func (*IssueMutation) XXX_Size

func (m *IssueMutation) XXX_Size() int

func (*IssueMutation) XXX_Unmarshal

func (m *IssueMutation) XXX_Unmarshal(b []byte) error

type Mutation

type Mutation struct {
	Project              *ProjectMutation `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	Release              *ReleaseMutation `protobuf:"bytes,2,opt,name=release,proto3" json:"release,omitempty"`
	Issue                *IssueMutation   `protobuf:"bytes,3,opt,name=issue,proto3" json:"issue,omitempty"`
	Git                  *GitMutation     `protobuf:"bytes,4,opt,name=git,proto3" json:"git,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*Mutation) Descriptor

func (*Mutation) Descriptor() ([]byte, []int)

func (*Mutation) GetGit

func (m *Mutation) GetGit() *GitMutation

func (*Mutation) GetIssue

func (m *Mutation) GetIssue() *IssueMutation

func (*Mutation) GetProject

func (m *Mutation) GetProject() *ProjectMutation

func (*Mutation) GetRelease

func (m *Mutation) GetRelease() *ReleaseMutation

func (*Mutation) ProtoMessage

func (*Mutation) ProtoMessage()

func (*Mutation) Reset

func (m *Mutation) Reset()

func (*Mutation) String

func (m *Mutation) String() string

func (*Mutation) XXX_DiscardUnknown

func (m *Mutation) XXX_DiscardUnknown()

func (*Mutation) XXX_Marshal

func (m *Mutation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Mutation) XXX_Merge

func (m *Mutation) XXX_Merge(src proto.Message)

func (*Mutation) XXX_Size

func (m *Mutation) XXX_Size() int

func (*Mutation) XXX_Unmarshal

func (m *Mutation) XXX_Unmarshal(b []byte) error

type ProjectMutation

type ProjectMutation struct {
	Id                   string              `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string              `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Description          string              `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Milestones           []*TrackerMilestone `protobuf:"bytes,4,rep,name=milestones,proto3" json:"milestones,omitempty"`
	DeletedMilestones    []string            `protobuf:"bytes,5,rep,name=deleted_milestones,json=deletedMilestones,proto3" json:"deleted_milestones,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ProjectMutation) Descriptor

func (*ProjectMutation) Descriptor() ([]byte, []int)

func (*ProjectMutation) GetDeletedMilestones

func (m *ProjectMutation) GetDeletedMilestones() []string

func (*ProjectMutation) GetDescription

func (m *ProjectMutation) GetDescription() string

func (*ProjectMutation) GetId

func (m *ProjectMutation) GetId() string

func (*ProjectMutation) GetMilestones

func (m *ProjectMutation) GetMilestones() []*TrackerMilestone

func (*ProjectMutation) GetName

func (m *ProjectMutation) GetName() string

func (*ProjectMutation) ProtoMessage

func (*ProjectMutation) ProtoMessage()

func (*ProjectMutation) Reset

func (m *ProjectMutation) Reset()

func (*ProjectMutation) String

func (m *ProjectMutation) String() string

func (*ProjectMutation) XXX_DiscardUnknown

func (m *ProjectMutation) XXX_DiscardUnknown()

func (*ProjectMutation) XXX_Marshal

func (m *ProjectMutation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProjectMutation) XXX_Merge

func (m *ProjectMutation) XXX_Merge(src proto.Message)

func (*ProjectMutation) XXX_Size

func (m *ProjectMutation) XXX_Size() int

func (*ProjectMutation) XXX_Unmarshal

func (m *ProjectMutation) XXX_Unmarshal(b []byte) error

type ReleaseMutation

type ReleaseMutation struct {
	Id                   string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string               `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Description          string               `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	FreezeDate           *timestamp.Timestamp `protobuf:"bytes,4,opt,name=freeze_date,json=freezeDate,proto3" json:"freeze_date,omitempty"`
	ReleaseDate          *timestamp.Timestamp `protobuf:"bytes,5,opt,name=release_date,json=releaseDate,proto3" json:"release_date,omitempty"`
	Closed               *BoolChange          `protobuf:"bytes,6,opt,name=closed,proto3" json:"closed,omitempty"`
	Milestones           []*TrackerMilestone  `protobuf:"bytes,7,rep,name=milestones,proto3" json:"milestones,omitempty"`
	DeletedMilestones    []string             `protobuf:"bytes,8,rep,name=deleted_milestones,json=deletedMilestones,proto3" json:"deleted_milestones,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*ReleaseMutation) Descriptor

func (*ReleaseMutation) Descriptor() ([]byte, []int)

func (*ReleaseMutation) GetClosed

func (m *ReleaseMutation) GetClosed() *BoolChange

func (*ReleaseMutation) GetDeletedMilestones

func (m *ReleaseMutation) GetDeletedMilestones() []string

func (*ReleaseMutation) GetDescription

func (m *ReleaseMutation) GetDescription() string

func (*ReleaseMutation) GetFreezeDate

func (m *ReleaseMutation) GetFreezeDate() *timestamp.Timestamp

func (*ReleaseMutation) GetId

func (m *ReleaseMutation) GetId() string

func (*ReleaseMutation) GetMilestones

func (m *ReleaseMutation) GetMilestones() []*TrackerMilestone

func (*ReleaseMutation) GetName

func (m *ReleaseMutation) GetName() string

func (*ReleaseMutation) GetReleaseDate

func (m *ReleaseMutation) GetReleaseDate() *timestamp.Timestamp

func (*ReleaseMutation) ProtoMessage

func (*ReleaseMutation) ProtoMessage()

func (*ReleaseMutation) Reset

func (m *ReleaseMutation) Reset()

func (*ReleaseMutation) String

func (m *ReleaseMutation) String() string

func (*ReleaseMutation) XXX_DiscardUnknown

func (m *ReleaseMutation) XXX_DiscardUnknown()

func (*ReleaseMutation) XXX_Marshal

func (m *ReleaseMutation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReleaseMutation) XXX_Merge

func (m *ReleaseMutation) XXX_Merge(src proto.Message)

func (*ReleaseMutation) XXX_Size

func (m *ReleaseMutation) XXX_Size() int

func (*ReleaseMutation) XXX_Unmarshal

func (m *ReleaseMutation) XXX_Unmarshal(b []byte) error

type TrackerLabel

type TrackerLabel struct {
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TrackerLabel) Descriptor

func (*TrackerLabel) Descriptor() ([]byte, []int)

func (*TrackerLabel) GetName

func (m *TrackerLabel) GetName() string

func (*TrackerLabel) ProtoMessage

func (*TrackerLabel) ProtoMessage()

func (*TrackerLabel) Reset

func (m *TrackerLabel) Reset()

func (*TrackerLabel) String

func (m *TrackerLabel) String() string

func (*TrackerLabel) XXX_DiscardUnknown

func (m *TrackerLabel) XXX_DiscardUnknown()

func (*TrackerLabel) XXX_Marshal

func (m *TrackerLabel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TrackerLabel) XXX_Merge

func (m *TrackerLabel) XXX_Merge(src proto.Message)

func (*TrackerLabel) XXX_Size

func (m *TrackerLabel) XXX_Size() int

func (*TrackerLabel) XXX_Unmarshal

func (m *TrackerLabel) XXX_Unmarshal(b []byte) error

type TrackerMilestone

type TrackerMilestone struct {
	Id      string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Project string `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"`
	// Following only need to be non-zero on changes:
	Closed               *BoolChange `protobuf:"bytes,3,opt,name=closed,proto3" json:"closed,omitempty"`
	Name                 string      `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	Description          string      `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*TrackerMilestone) Descriptor

func (*TrackerMilestone) Descriptor() ([]byte, []int)

func (*TrackerMilestone) GetClosed

func (m *TrackerMilestone) GetClosed() *BoolChange

func (*TrackerMilestone) GetDescription

func (m *TrackerMilestone) GetDescription() string

func (*TrackerMilestone) GetId

func (m *TrackerMilestone) GetId() string

func (*TrackerMilestone) GetName

func (m *TrackerMilestone) GetName() string

func (*TrackerMilestone) GetProject

func (m *TrackerMilestone) GetProject() string

func (*TrackerMilestone) ProtoMessage

func (*TrackerMilestone) ProtoMessage()

func (*TrackerMilestone) Reset

func (m *TrackerMilestone) Reset()

func (*TrackerMilestone) String

func (m *TrackerMilestone) String() string

func (*TrackerMilestone) XXX_DiscardUnknown

func (m *TrackerMilestone) XXX_DiscardUnknown()

func (*TrackerMilestone) XXX_Marshal

func (m *TrackerMilestone) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TrackerMilestone) XXX_Merge

func (m *TrackerMilestone) XXX_Merge(src proto.Message)

func (*TrackerMilestone) XXX_Size

func (m *TrackerMilestone) XXX_Size() int

func (*TrackerMilestone) XXX_Unmarshal

func (m *TrackerMilestone) XXX_Unmarshal(b []byte) error

type TrackerUser

type TrackerUser struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Email                string   `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TrackerUser) Descriptor

func (*TrackerUser) Descriptor() ([]byte, []int)

func (*TrackerUser) GetEmail

func (m *TrackerUser) GetEmail() string

func (*TrackerUser) GetId

func (m *TrackerUser) GetId() string

func (*TrackerUser) GetName

func (m *TrackerUser) GetName() string

func (*TrackerUser) ProtoMessage

func (*TrackerUser) ProtoMessage()

func (*TrackerUser) Reset

func (m *TrackerUser) Reset()

func (*TrackerUser) String

func (m *TrackerUser) String() string

func (*TrackerUser) XXX_DiscardUnknown

func (m *TrackerUser) XXX_DiscardUnknown()

func (*TrackerUser) XXX_Marshal

func (m *TrackerUser) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TrackerUser) XXX_Merge

func (m *TrackerUser) XXX_Merge(src proto.Message)

func (*TrackerUser) XXX_Size

func (m *TrackerUser) XXX_Size() int

func (*TrackerUser) XXX_Unmarshal

func (m *TrackerUser) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL