issue

package
v0.0.0-...-5d37a61 Latest Latest
Warning

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

Go to latest
Published: May 28, 2023 License: MIT Imports: 26 Imported by: 0

Documentation

Overview

Package issue is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	IssueType_name = map[int32]string{
		0: "ISSUE_TYPE_UNKNOWN",
		1: "ISSUE_TYPE_EPIC",
		2: "ISSUE_TYPE_STORY",
		3: "ISSUE_TYPE_TASK",
		4: "ISSUE_TYPE_SUBTASK",
	}
	IssueType_value = map[string]int32{
		"ISSUE_TYPE_UNKNOWN": 0,
		"ISSUE_TYPE_EPIC":    1,
		"ISSUE_TYPE_STORY":   2,
		"ISSUE_TYPE_TASK":    3,
		"ISSUE_TYPE_SUBTASK": 4,
	}
)

Enum value maps for IssueType.

View Source
var (
	ErrInvalidLength        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflow          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroup = fmt.Errorf("proto: unexpected end of group")
)
View Source
var File_api_tasks_issue_issue_proto protoreflect.FileDescriptor
View Source
var IssueRegistry_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "github.constantine27k.crnt_data_manager.api.tasks.issue.IssueRegistry",
	HandlerType: (*IssueRegistryServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateIssue",
			Handler:    _IssueRegistry_CreateIssue_Handler,
		},
		{
			MethodName: "CreateSubtask",
			Handler:    _IssueRegistry_CreateSubtask_Handler,
		},
		{
			MethodName: "AddComment",
			Handler:    _IssueRegistry_AddComment_Handler,
		},
		{
			MethodName: "UpdateIssue",
			Handler:    _IssueRegistry_UpdateIssue_Handler,
		},
		{
			MethodName: "GetIssues",
			Handler:    _IssueRegistry_GetIssues_Handler,
		},
		{
			MethodName: "GetIssueByID",
			Handler:    _IssueRegistry_GetIssueByID_Handler,
		},
		{
			MethodName: "GetIssueInfo",
			Handler:    _IssueRegistry_GetIssueInfo_Handler,
		},
		{
			MethodName: "GetIssueInfoByID",
			Handler:    _IssueRegistry_GetIssueInfoByID_Handler,
		},
		{
			MethodName: "GetUserPayment",
			Handler:    _IssueRegistry_GetUserPayment_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/tasks/issue/issue.proto",
}

IssueRegistry_ServiceDesc is the grpc.ServiceDesc for IssueRegistry service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterIssueRegistryHandler

func RegisterIssueRegistryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterIssueRegistryHandler registers the http handlers for service IssueRegistry to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterIssueRegistryHandlerClient

func RegisterIssueRegistryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client IssueRegistryClient) error

RegisterIssueRegistryHandlerClient registers the http handlers for service IssueRegistry to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "IssueRegistryClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "IssueRegistryClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "IssueRegistryClient" to call the correct interceptors.

func RegisterIssueRegistryHandlerFromEndpoint

func RegisterIssueRegistryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterIssueRegistryHandlerFromEndpoint is same as RegisterIssueRegistryHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterIssueRegistryHandlerServer

func RegisterIssueRegistryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server IssueRegistryServer) error

RegisterIssueRegistryHandlerServer registers the http handlers for service IssueRegistry to "mux". UnaryRPC :call IssueRegistryServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterIssueRegistryHandlerFromEndpoint instead.

func RegisterIssueRegistryServer

func RegisterIssueRegistryServer(s grpc.ServiceRegistrar, srv IssueRegistryServer)

Types

type Issue

type Issue struct {
	Id            int64                  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	CompositeName string                 `protobuf:"bytes,2,opt,name=composite_name,json=compositeName,proto3" json:"composite_name,omitempty"`
	Name          string                 `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Type          IssueType              `` /* 133-byte string literal not displayed */
	ParentId      int64                  `protobuf:"varint,5,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
	Description   string                 `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
	Comments      *comments.Comments     `protobuf:"bytes,7,opt,name=comments,proto3" json:"comments,omitempty"`
	Author        string                 `protobuf:"bytes,8,opt,name=author,proto3" json:"author,omitempty"`
	Assigned      string                 `protobuf:"bytes,9,opt,name=assigned,proto3" json:"assigned,omitempty"`
	Qa            string                 `protobuf:"bytes,10,opt,name=qa,proto3" json:"qa,omitempty"`
	Reviewer      string                 `protobuf:"bytes,11,opt,name=reviewer,proto3" json:"reviewer,omitempty"`
	Template      template.Template      `` /* 144-byte string literal not displayed */
	CreatedAt     *timestamppb.Timestamp `protobuf:"bytes,13,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	Deadline      *timestamppb.Timestamp `protobuf:"bytes,14,opt,name=deadline,proto3" json:"deadline,omitempty"`
	UpdatedAt     *timestamppb.Timestamp `protobuf:"bytes,15,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Status        *status.IssueStatus    `protobuf:"bytes,16,opt,name=status,proto3" json:"status,omitempty"`
	Priority      priority.Priority      `` /* 144-byte string literal not displayed */
	SprintId      int64                  `protobuf:"varint,18,opt,name=sprint_id,json=sprintId,proto3" json:"sprint_id,omitempty"`
	ProjectId     int64                  `protobuf:"varint,19,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	ComponentIds  []int64                `protobuf:"varint,20,rep,packed,name=component_ids,json=componentIds,proto3" json:"component_ids,omitempty"`
	StoryPoints   int64                  `protobuf:"varint,21,opt,name=story_points,json=storyPoints,proto3" json:"story_points,omitempty"`
	Payment       float64                `protobuf:"fixed64,22,opt,name=payment,proto3" json:"payment,omitempty"`
	// in minutes
	TimeSpent int64    `protobuf:"varint,23,opt,name=time_spent,json=timeSpent,proto3" json:"time_spent,omitempty"`
	Children  []*Issue `protobuf:"bytes,24,rep,name=children,proto3" json:"children,omitempty"`
	// contains filtered or unexported fields
}

func (*Issue) Descriptor deprecated

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

Deprecated: Use Issue.ProtoReflect.Descriptor instead.

func (*Issue) GetAssigned

func (x *Issue) GetAssigned() string

func (*Issue) GetAuthor

func (x *Issue) GetAuthor() string

func (*Issue) GetChildren

func (x *Issue) GetChildren() []*Issue

func (*Issue) GetComments

func (x *Issue) GetComments() *comments.Comments

func (*Issue) GetComponentIds

func (x *Issue) GetComponentIds() []int64

func (*Issue) GetCompositeName

func (x *Issue) GetCompositeName() string

func (*Issue) GetCreatedAt

func (x *Issue) GetCreatedAt() *timestamppb.Timestamp

func (*Issue) GetDeadline

func (x *Issue) GetDeadline() *timestamppb.Timestamp

func (*Issue) GetDescription

func (x *Issue) GetDescription() string

func (*Issue) GetId

func (x *Issue) GetId() int64

func (*Issue) GetName

func (x *Issue) GetName() string

func (*Issue) GetParentId

func (x *Issue) GetParentId() int64

func (*Issue) GetPayment

func (x *Issue) GetPayment() float64

func (*Issue) GetPriority

func (x *Issue) GetPriority() priority.Priority

func (*Issue) GetProjectId

func (x *Issue) GetProjectId() int64

func (*Issue) GetQa

func (x *Issue) GetQa() string

func (*Issue) GetReviewer

func (x *Issue) GetReviewer() string

func (*Issue) GetSprintId

func (x *Issue) GetSprintId() int64

func (*Issue) GetStatus

func (x *Issue) GetStatus() *status.IssueStatus

func (*Issue) GetStoryPoints

func (x *Issue) GetStoryPoints() int64

func (*Issue) GetTemplate

func (x *Issue) GetTemplate() template.Template

func (*Issue) GetTimeSpent

func (x *Issue) GetTimeSpent() int64

func (*Issue) GetType

func (x *Issue) GetType() IssueType

func (*Issue) GetUpdatedAt

func (x *Issue) GetUpdatedAt() *timestamppb.Timestamp

func (*Issue) MarshalToSizedBufferVT

func (m *Issue) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Issue) MarshalToVT

func (m *Issue) MarshalToVT(dAtA []byte) (int, error)

func (*Issue) MarshalVT

func (m *Issue) MarshalVT() (dAtA []byte, err error)

func (*Issue) ProtoMessage

func (*Issue) ProtoMessage()

func (*Issue) ProtoReflect

func (x *Issue) ProtoReflect() protoreflect.Message

func (*Issue) Reset

func (x *Issue) Reset()

func (*Issue) SizeVT

func (m *Issue) SizeVT() (n int)

func (*Issue) String

func (x *Issue) String() string

func (*Issue) UnmarshalVT

func (m *Issue) UnmarshalVT(dAtA []byte) error

type IssueAddCommentRequest

type IssueAddCommentRequest struct {
	Id      int64             `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Comment *comments.Comment `protobuf:"bytes,2,opt,name=comment,proto3" json:"comment,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueAddCommentRequest) Descriptor deprecated

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

Deprecated: Use IssueAddCommentRequest.ProtoReflect.Descriptor instead.

func (*IssueAddCommentRequest) GetComment

func (x *IssueAddCommentRequest) GetComment() *comments.Comment

func (*IssueAddCommentRequest) GetId

func (x *IssueAddCommentRequest) GetId() int64

func (*IssueAddCommentRequest) MarshalToSizedBufferVT

func (m *IssueAddCommentRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueAddCommentRequest) MarshalToVT

func (m *IssueAddCommentRequest) MarshalToVT(dAtA []byte) (int, error)

func (*IssueAddCommentRequest) MarshalVT

func (m *IssueAddCommentRequest) MarshalVT() (dAtA []byte, err error)

func (*IssueAddCommentRequest) ProtoMessage

func (*IssueAddCommentRequest) ProtoMessage()

func (*IssueAddCommentRequest) ProtoReflect

func (x *IssueAddCommentRequest) ProtoReflect() protoreflect.Message

func (*IssueAddCommentRequest) Reset

func (x *IssueAddCommentRequest) Reset()

func (*IssueAddCommentRequest) SizeVT

func (m *IssueAddCommentRequest) SizeVT() (n int)

func (*IssueAddCommentRequest) String

func (x *IssueAddCommentRequest) String() string

func (*IssueAddCommentRequest) UnmarshalVT

func (m *IssueAddCommentRequest) UnmarshalVT(dAtA []byte) error

type IssueAddCommentResponse

type IssueAddCommentResponse struct {
	Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueAddCommentResponse) Descriptor deprecated

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

Deprecated: Use IssueAddCommentResponse.ProtoReflect.Descriptor instead.

func (*IssueAddCommentResponse) GetId

func (x *IssueAddCommentResponse) GetId() int64

func (*IssueAddCommentResponse) MarshalToSizedBufferVT

func (m *IssueAddCommentResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueAddCommentResponse) MarshalToVT

func (m *IssueAddCommentResponse) MarshalToVT(dAtA []byte) (int, error)

func (*IssueAddCommentResponse) MarshalVT

func (m *IssueAddCommentResponse) MarshalVT() (dAtA []byte, err error)

func (*IssueAddCommentResponse) ProtoMessage

func (*IssueAddCommentResponse) ProtoMessage()

func (*IssueAddCommentResponse) ProtoReflect

func (x *IssueAddCommentResponse) ProtoReflect() protoreflect.Message

func (*IssueAddCommentResponse) Reset

func (x *IssueAddCommentResponse) Reset()

func (*IssueAddCommentResponse) SizeVT

func (m *IssueAddCommentResponse) SizeVT() (n int)

func (*IssueAddCommentResponse) String

func (x *IssueAddCommentResponse) String() string

func (*IssueAddCommentResponse) UnmarshalVT

func (m *IssueAddCommentResponse) UnmarshalVT(dAtA []byte) error

type IssueCreateRequest

type IssueCreateRequest struct {
	Issue *Issue `protobuf:"bytes,1,opt,name=issue,proto3" json:"issue,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueCreateRequest) Descriptor deprecated

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

Deprecated: Use IssueCreateRequest.ProtoReflect.Descriptor instead.

func (*IssueCreateRequest) GetIssue

func (x *IssueCreateRequest) GetIssue() *Issue

func (*IssueCreateRequest) MarshalToSizedBufferVT

func (m *IssueCreateRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueCreateRequest) MarshalToVT

func (m *IssueCreateRequest) MarshalToVT(dAtA []byte) (int, error)

func (*IssueCreateRequest) MarshalVT

func (m *IssueCreateRequest) MarshalVT() (dAtA []byte, err error)

func (*IssueCreateRequest) ProtoMessage

func (*IssueCreateRequest) ProtoMessage()

func (*IssueCreateRequest) ProtoReflect

func (x *IssueCreateRequest) ProtoReflect() protoreflect.Message

func (*IssueCreateRequest) Reset

func (x *IssueCreateRequest) Reset()

func (*IssueCreateRequest) SizeVT

func (m *IssueCreateRequest) SizeVT() (n int)

func (*IssueCreateRequest) String

func (x *IssueCreateRequest) String() string

func (*IssueCreateRequest) UnmarshalVT

func (m *IssueCreateRequest) UnmarshalVT(dAtA []byte) error

type IssueCreateResponse

type IssueCreateResponse struct {
	Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueCreateResponse) Descriptor deprecated

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

Deprecated: Use IssueCreateResponse.ProtoReflect.Descriptor instead.

func (*IssueCreateResponse) GetId

func (x *IssueCreateResponse) GetId() int64

func (*IssueCreateResponse) MarshalToSizedBufferVT

func (m *IssueCreateResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueCreateResponse) MarshalToVT

func (m *IssueCreateResponse) MarshalToVT(dAtA []byte) (int, error)

func (*IssueCreateResponse) MarshalVT

func (m *IssueCreateResponse) MarshalVT() (dAtA []byte, err error)

func (*IssueCreateResponse) ProtoMessage

func (*IssueCreateResponse) ProtoMessage()

func (*IssueCreateResponse) ProtoReflect

func (x *IssueCreateResponse) ProtoReflect() protoreflect.Message

func (*IssueCreateResponse) Reset

func (x *IssueCreateResponse) Reset()

func (*IssueCreateResponse) SizeVT

func (m *IssueCreateResponse) SizeVT() (n int)

func (*IssueCreateResponse) String

func (x *IssueCreateResponse) String() string

func (*IssueCreateResponse) UnmarshalVT

func (m *IssueCreateResponse) UnmarshalVT(dAtA []byte) error

type IssueCreateSubtaskRequest

type IssueCreateSubtaskRequest struct {
	Id    int64  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Child *Issue `protobuf:"bytes,2,opt,name=child,proto3" json:"child,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueCreateSubtaskRequest) Descriptor deprecated

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

Deprecated: Use IssueCreateSubtaskRequest.ProtoReflect.Descriptor instead.

func (*IssueCreateSubtaskRequest) GetChild

func (x *IssueCreateSubtaskRequest) GetChild() *Issue

func (*IssueCreateSubtaskRequest) GetId

func (x *IssueCreateSubtaskRequest) GetId() int64

func (*IssueCreateSubtaskRequest) MarshalToSizedBufferVT

func (m *IssueCreateSubtaskRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueCreateSubtaskRequest) MarshalToVT

func (m *IssueCreateSubtaskRequest) MarshalToVT(dAtA []byte) (int, error)

func (*IssueCreateSubtaskRequest) MarshalVT

func (m *IssueCreateSubtaskRequest) MarshalVT() (dAtA []byte, err error)

func (*IssueCreateSubtaskRequest) ProtoMessage

func (*IssueCreateSubtaskRequest) ProtoMessage()

func (*IssueCreateSubtaskRequest) ProtoReflect

func (*IssueCreateSubtaskRequest) Reset

func (x *IssueCreateSubtaskRequest) Reset()

func (*IssueCreateSubtaskRequest) SizeVT

func (m *IssueCreateSubtaskRequest) SizeVT() (n int)

func (*IssueCreateSubtaskRequest) String

func (x *IssueCreateSubtaskRequest) String() string

func (*IssueCreateSubtaskRequest) UnmarshalVT

func (m *IssueCreateSubtaskRequest) UnmarshalVT(dAtA []byte) error

type IssueCreateSubtaskResponse

type IssueCreateSubtaskResponse struct {
	Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueCreateSubtaskResponse) Descriptor deprecated

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

Deprecated: Use IssueCreateSubtaskResponse.ProtoReflect.Descriptor instead.

func (*IssueCreateSubtaskResponse) GetId

func (x *IssueCreateSubtaskResponse) GetId() int64

func (*IssueCreateSubtaskResponse) MarshalToSizedBufferVT

func (m *IssueCreateSubtaskResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueCreateSubtaskResponse) MarshalToVT

func (m *IssueCreateSubtaskResponse) MarshalToVT(dAtA []byte) (int, error)

func (*IssueCreateSubtaskResponse) MarshalVT

func (m *IssueCreateSubtaskResponse) MarshalVT() (dAtA []byte, err error)

func (*IssueCreateSubtaskResponse) ProtoMessage

func (*IssueCreateSubtaskResponse) ProtoMessage()

func (*IssueCreateSubtaskResponse) ProtoReflect

func (*IssueCreateSubtaskResponse) Reset

func (x *IssueCreateSubtaskResponse) Reset()

func (*IssueCreateSubtaskResponse) SizeVT

func (m *IssueCreateSubtaskResponse) SizeVT() (n int)

func (*IssueCreateSubtaskResponse) String

func (x *IssueCreateSubtaskResponse) String() string

func (*IssueCreateSubtaskResponse) UnmarshalVT

func (m *IssueCreateSubtaskResponse) UnmarshalVT(dAtA []byte) error

type IssueGetByIDRequest

type IssueGetByIDRequest struct {
	Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueGetByIDRequest) Descriptor deprecated

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

Deprecated: Use IssueGetByIDRequest.ProtoReflect.Descriptor instead.

func (*IssueGetByIDRequest) GetId

func (x *IssueGetByIDRequest) GetId() int64

func (*IssueGetByIDRequest) MarshalToSizedBufferVT

func (m *IssueGetByIDRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueGetByIDRequest) MarshalToVT

func (m *IssueGetByIDRequest) MarshalToVT(dAtA []byte) (int, error)

func (*IssueGetByIDRequest) MarshalVT

func (m *IssueGetByIDRequest) MarshalVT() (dAtA []byte, err error)

func (*IssueGetByIDRequest) ProtoMessage

func (*IssueGetByIDRequest) ProtoMessage()

func (*IssueGetByIDRequest) ProtoReflect

func (x *IssueGetByIDRequest) ProtoReflect() protoreflect.Message

func (*IssueGetByIDRequest) Reset

func (x *IssueGetByIDRequest) Reset()

func (*IssueGetByIDRequest) SizeVT

func (m *IssueGetByIDRequest) SizeVT() (n int)

func (*IssueGetByIDRequest) String

func (x *IssueGetByIDRequest) String() string

func (*IssueGetByIDRequest) UnmarshalVT

func (m *IssueGetByIDRequest) UnmarshalVT(dAtA []byte) error

type IssueGetByIDResponse

type IssueGetByIDResponse struct {
	Issue *Issue `protobuf:"bytes,1,opt,name=issue,proto3" json:"issue,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueGetByIDResponse) Descriptor deprecated

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

Deprecated: Use IssueGetByIDResponse.ProtoReflect.Descriptor instead.

func (*IssueGetByIDResponse) GetIssue

func (x *IssueGetByIDResponse) GetIssue() *Issue

func (*IssueGetByIDResponse) MarshalToSizedBufferVT

func (m *IssueGetByIDResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueGetByIDResponse) MarshalToVT

func (m *IssueGetByIDResponse) MarshalToVT(dAtA []byte) (int, error)

func (*IssueGetByIDResponse) MarshalVT

func (m *IssueGetByIDResponse) MarshalVT() (dAtA []byte, err error)

func (*IssueGetByIDResponse) ProtoMessage

func (*IssueGetByIDResponse) ProtoMessage()

func (*IssueGetByIDResponse) ProtoReflect

func (x *IssueGetByIDResponse) ProtoReflect() protoreflect.Message

func (*IssueGetByIDResponse) Reset

func (x *IssueGetByIDResponse) Reset()

func (*IssueGetByIDResponse) SizeVT

func (m *IssueGetByIDResponse) SizeVT() (n int)

func (*IssueGetByIDResponse) String

func (x *IssueGetByIDResponse) String() string

func (*IssueGetByIDResponse) UnmarshalVT

func (m *IssueGetByIDResponse) UnmarshalVT(dAtA []byte) error

type IssueGetRequest

type IssueGetRequest struct {
	Ids       []int64             `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	Name      string              `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	ParentId  int64               `protobuf:"varint,3,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
	Type      IssueType           `` /* 133-byte string literal not displayed */
	Author    string              `protobuf:"bytes,5,opt,name=author,proto3" json:"author,omitempty"`
	Assigned  string              `protobuf:"bytes,6,opt,name=assigned,proto3" json:"assigned,omitempty"`
	SprintId  int64               `protobuf:"varint,7,opt,name=sprint_id,json=sprintId,proto3" json:"sprint_id,omitempty"`
	ProjectId int64               `protobuf:"varint,8,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	Status    *status.IssueStatus `protobuf:"bytes,9,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueGetRequest) Descriptor deprecated

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

Deprecated: Use IssueGetRequest.ProtoReflect.Descriptor instead.

func (*IssueGetRequest) GetAssigned

func (x *IssueGetRequest) GetAssigned() string

func (*IssueGetRequest) GetAuthor

func (x *IssueGetRequest) GetAuthor() string

func (*IssueGetRequest) GetIds

func (x *IssueGetRequest) GetIds() []int64

func (*IssueGetRequest) GetName

func (x *IssueGetRequest) GetName() string

func (*IssueGetRequest) GetParentId

func (x *IssueGetRequest) GetParentId() int64

func (*IssueGetRequest) GetProjectId

func (x *IssueGetRequest) GetProjectId() int64

func (*IssueGetRequest) GetSprintId

func (x *IssueGetRequest) GetSprintId() int64

func (*IssueGetRequest) GetStatus

func (x *IssueGetRequest) GetStatus() *status.IssueStatus

func (*IssueGetRequest) GetType

func (x *IssueGetRequest) GetType() IssueType

func (*IssueGetRequest) MarshalToSizedBufferVT

func (m *IssueGetRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueGetRequest) MarshalToVT

func (m *IssueGetRequest) MarshalToVT(dAtA []byte) (int, error)

func (*IssueGetRequest) MarshalVT

func (m *IssueGetRequest) MarshalVT() (dAtA []byte, err error)

func (*IssueGetRequest) ProtoMessage

func (*IssueGetRequest) ProtoMessage()

func (*IssueGetRequest) ProtoReflect

func (x *IssueGetRequest) ProtoReflect() protoreflect.Message

func (*IssueGetRequest) Reset

func (x *IssueGetRequest) Reset()

func (*IssueGetRequest) SizeVT

func (m *IssueGetRequest) SizeVT() (n int)

func (*IssueGetRequest) String

func (x *IssueGetRequest) String() string

func (*IssueGetRequest) UnmarshalVT

func (m *IssueGetRequest) UnmarshalVT(dAtA []byte) error

type IssueGetResponse

type IssueGetResponse struct {
	Issues []*Issue `protobuf:"bytes,1,rep,name=issues,proto3" json:"issues,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueGetResponse) Descriptor deprecated

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

Deprecated: Use IssueGetResponse.ProtoReflect.Descriptor instead.

func (*IssueGetResponse) GetIssues

func (x *IssueGetResponse) GetIssues() []*Issue

func (*IssueGetResponse) MarshalToSizedBufferVT

func (m *IssueGetResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueGetResponse) MarshalToVT

func (m *IssueGetResponse) MarshalToVT(dAtA []byte) (int, error)

func (*IssueGetResponse) MarshalVT

func (m *IssueGetResponse) MarshalVT() (dAtA []byte, err error)

func (*IssueGetResponse) ProtoMessage

func (*IssueGetResponse) ProtoMessage()

func (*IssueGetResponse) ProtoReflect

func (x *IssueGetResponse) ProtoReflect() protoreflect.Message

func (*IssueGetResponse) Reset

func (x *IssueGetResponse) Reset()

func (*IssueGetResponse) SizeVT

func (m *IssueGetResponse) SizeVT() (n int)

func (*IssueGetResponse) String

func (x *IssueGetResponse) String() string

func (*IssueGetResponse) UnmarshalVT

func (m *IssueGetResponse) UnmarshalVT(dAtA []byte) error

type IssueInfo

type IssueInfo struct {
	Id            int64               `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	CompositeName string              `protobuf:"bytes,2,opt,name=composite_name,json=compositeName,proto3" json:"composite_name,omitempty"`
	Name          string              `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Type          IssueType           `` /* 133-byte string literal not displayed */
	Assigned      string              `protobuf:"bytes,5,opt,name=assigned,proto3" json:"assigned,omitempty"`
	Priority      priority.Priority   `` /* 143-byte string literal not displayed */
	Status        *status.IssueStatus `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
	StoryPoints   int64               `protobuf:"varint,8,opt,name=story_points,json=storyPoints,proto3" json:"story_points,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueInfo) Descriptor deprecated

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

Deprecated: Use IssueInfo.ProtoReflect.Descriptor instead.

func (*IssueInfo) GetAssigned

func (x *IssueInfo) GetAssigned() string

func (*IssueInfo) GetCompositeName

func (x *IssueInfo) GetCompositeName() string

func (*IssueInfo) GetId

func (x *IssueInfo) GetId() int64

func (*IssueInfo) GetName

func (x *IssueInfo) GetName() string

func (*IssueInfo) GetPriority

func (x *IssueInfo) GetPriority() priority.Priority

func (*IssueInfo) GetStatus

func (x *IssueInfo) GetStatus() *status.IssueStatus

func (*IssueInfo) GetStoryPoints

func (x *IssueInfo) GetStoryPoints() int64

func (*IssueInfo) GetType

func (x *IssueInfo) GetType() IssueType

func (*IssueInfo) MarshalToSizedBufferVT

func (m *IssueInfo) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueInfo) MarshalToVT

func (m *IssueInfo) MarshalToVT(dAtA []byte) (int, error)

func (*IssueInfo) MarshalVT

func (m *IssueInfo) MarshalVT() (dAtA []byte, err error)

func (*IssueInfo) ProtoMessage

func (*IssueInfo) ProtoMessage()

func (*IssueInfo) ProtoReflect

func (x *IssueInfo) ProtoReflect() protoreflect.Message

func (*IssueInfo) Reset

func (x *IssueInfo) Reset()

func (*IssueInfo) SizeVT

func (m *IssueInfo) SizeVT() (n int)

func (*IssueInfo) String

func (x *IssueInfo) String() string

func (*IssueInfo) UnmarshalVT

func (m *IssueInfo) UnmarshalVT(dAtA []byte) error

type IssueInfoGetByIDRequest

type IssueInfoGetByIDRequest struct {
	Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueInfoGetByIDRequest) Descriptor deprecated

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

Deprecated: Use IssueInfoGetByIDRequest.ProtoReflect.Descriptor instead.

func (*IssueInfoGetByIDRequest) GetId

func (x *IssueInfoGetByIDRequest) GetId() int64

func (*IssueInfoGetByIDRequest) MarshalToSizedBufferVT

func (m *IssueInfoGetByIDRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueInfoGetByIDRequest) MarshalToVT

func (m *IssueInfoGetByIDRequest) MarshalToVT(dAtA []byte) (int, error)

func (*IssueInfoGetByIDRequest) MarshalVT

func (m *IssueInfoGetByIDRequest) MarshalVT() (dAtA []byte, err error)

func (*IssueInfoGetByIDRequest) ProtoMessage

func (*IssueInfoGetByIDRequest) ProtoMessage()

func (*IssueInfoGetByIDRequest) ProtoReflect

func (x *IssueInfoGetByIDRequest) ProtoReflect() protoreflect.Message

func (*IssueInfoGetByIDRequest) Reset

func (x *IssueInfoGetByIDRequest) Reset()

func (*IssueInfoGetByIDRequest) SizeVT

func (m *IssueInfoGetByIDRequest) SizeVT() (n int)

func (*IssueInfoGetByIDRequest) String

func (x *IssueInfoGetByIDRequest) String() string

func (*IssueInfoGetByIDRequest) UnmarshalVT

func (m *IssueInfoGetByIDRequest) UnmarshalVT(dAtA []byte) error

type IssueInfoGetByIDResponse

type IssueInfoGetByIDResponse struct {
	IssueInfo *IssueInfo `protobuf:"bytes,1,opt,name=issue_info,json=issueInfo,proto3" json:"issue_info,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueInfoGetByIDResponse) Descriptor deprecated

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

Deprecated: Use IssueInfoGetByIDResponse.ProtoReflect.Descriptor instead.

func (*IssueInfoGetByIDResponse) GetIssueInfo

func (x *IssueInfoGetByIDResponse) GetIssueInfo() *IssueInfo

func (*IssueInfoGetByIDResponse) MarshalToSizedBufferVT

func (m *IssueInfoGetByIDResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueInfoGetByIDResponse) MarshalToVT

func (m *IssueInfoGetByIDResponse) MarshalToVT(dAtA []byte) (int, error)

func (*IssueInfoGetByIDResponse) MarshalVT

func (m *IssueInfoGetByIDResponse) MarshalVT() (dAtA []byte, err error)

func (*IssueInfoGetByIDResponse) ProtoMessage

func (*IssueInfoGetByIDResponse) ProtoMessage()

func (*IssueInfoGetByIDResponse) ProtoReflect

func (x *IssueInfoGetByIDResponse) ProtoReflect() protoreflect.Message

func (*IssueInfoGetByIDResponse) Reset

func (x *IssueInfoGetByIDResponse) Reset()

func (*IssueInfoGetByIDResponse) SizeVT

func (m *IssueInfoGetByIDResponse) SizeVT() (n int)

func (*IssueInfoGetByIDResponse) String

func (x *IssueInfoGetByIDResponse) String() string

func (*IssueInfoGetByIDResponse) UnmarshalVT

func (m *IssueInfoGetByIDResponse) UnmarshalVT(dAtA []byte) error

type IssueInfoGetRequest

type IssueInfoGetRequest struct {
	Ids       []int64             `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	Name      string              `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	ParentId  int64               `protobuf:"varint,3,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
	Type      IssueType           `` /* 133-byte string literal not displayed */
	Author    string              `protobuf:"bytes,5,opt,name=author,proto3" json:"author,omitempty"`
	Assigned  string              `protobuf:"bytes,6,opt,name=assigned,proto3" json:"assigned,omitempty"`
	SprintId  int64               `protobuf:"varint,7,opt,name=sprint_id,json=sprintId,proto3" json:"sprint_id,omitempty"`
	ProjectId int64               `protobuf:"varint,8,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	Status    *status.IssueStatus `protobuf:"bytes,9,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueInfoGetRequest) Descriptor deprecated

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

Deprecated: Use IssueInfoGetRequest.ProtoReflect.Descriptor instead.

func (*IssueInfoGetRequest) GetAssigned

func (x *IssueInfoGetRequest) GetAssigned() string

func (*IssueInfoGetRequest) GetAuthor

func (x *IssueInfoGetRequest) GetAuthor() string

func (*IssueInfoGetRequest) GetIds

func (x *IssueInfoGetRequest) GetIds() []int64

func (*IssueInfoGetRequest) GetName

func (x *IssueInfoGetRequest) GetName() string

func (*IssueInfoGetRequest) GetParentId

func (x *IssueInfoGetRequest) GetParentId() int64

func (*IssueInfoGetRequest) GetProjectId

func (x *IssueInfoGetRequest) GetProjectId() int64

func (*IssueInfoGetRequest) GetSprintId

func (x *IssueInfoGetRequest) GetSprintId() int64

func (*IssueInfoGetRequest) GetStatus

func (x *IssueInfoGetRequest) GetStatus() *status.IssueStatus

func (*IssueInfoGetRequest) GetType

func (x *IssueInfoGetRequest) GetType() IssueType

func (*IssueInfoGetRequest) MarshalToSizedBufferVT

func (m *IssueInfoGetRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueInfoGetRequest) MarshalToVT

func (m *IssueInfoGetRequest) MarshalToVT(dAtA []byte) (int, error)

func (*IssueInfoGetRequest) MarshalVT

func (m *IssueInfoGetRequest) MarshalVT() (dAtA []byte, err error)

func (*IssueInfoGetRequest) ProtoMessage

func (*IssueInfoGetRequest) ProtoMessage()

func (*IssueInfoGetRequest) ProtoReflect

func (x *IssueInfoGetRequest) ProtoReflect() protoreflect.Message

func (*IssueInfoGetRequest) Reset

func (x *IssueInfoGetRequest) Reset()

func (*IssueInfoGetRequest) SizeVT

func (m *IssueInfoGetRequest) SizeVT() (n int)

func (*IssueInfoGetRequest) String

func (x *IssueInfoGetRequest) String() string

func (*IssueInfoGetRequest) UnmarshalVT

func (m *IssueInfoGetRequest) UnmarshalVT(dAtA []byte) error

type IssueInfoGetResponse

type IssueInfoGetResponse struct {
	IssueInfo []*IssueInfo `protobuf:"bytes,1,rep,name=issue_info,json=issueInfo,proto3" json:"issue_info,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueInfoGetResponse) Descriptor deprecated

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

Deprecated: Use IssueInfoGetResponse.ProtoReflect.Descriptor instead.

func (*IssueInfoGetResponse) GetIssueInfo

func (x *IssueInfoGetResponse) GetIssueInfo() []*IssueInfo

func (*IssueInfoGetResponse) MarshalToSizedBufferVT

func (m *IssueInfoGetResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueInfoGetResponse) MarshalToVT

func (m *IssueInfoGetResponse) MarshalToVT(dAtA []byte) (int, error)

func (*IssueInfoGetResponse) MarshalVT

func (m *IssueInfoGetResponse) MarshalVT() (dAtA []byte, err error)

func (*IssueInfoGetResponse) ProtoMessage

func (*IssueInfoGetResponse) ProtoMessage()

func (*IssueInfoGetResponse) ProtoReflect

func (x *IssueInfoGetResponse) ProtoReflect() protoreflect.Message

func (*IssueInfoGetResponse) Reset

func (x *IssueInfoGetResponse) Reset()

func (*IssueInfoGetResponse) SizeVT

func (m *IssueInfoGetResponse) SizeVT() (n int)

func (*IssueInfoGetResponse) String

func (x *IssueInfoGetResponse) String() string

func (*IssueInfoGetResponse) UnmarshalVT

func (m *IssueInfoGetResponse) UnmarshalVT(dAtA []byte) error

type IssuePaymentGetRequest

type IssuePaymentGetRequest struct {
	// contains filtered or unexported fields
}

func (*IssuePaymentGetRequest) Descriptor deprecated

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

Deprecated: Use IssuePaymentGetRequest.ProtoReflect.Descriptor instead.

func (*IssuePaymentGetRequest) MarshalToSizedBufferVT

func (m *IssuePaymentGetRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssuePaymentGetRequest) MarshalToVT

func (m *IssuePaymentGetRequest) MarshalToVT(dAtA []byte) (int, error)

func (*IssuePaymentGetRequest) MarshalVT

func (m *IssuePaymentGetRequest) MarshalVT() (dAtA []byte, err error)

func (*IssuePaymentGetRequest) ProtoMessage

func (*IssuePaymentGetRequest) ProtoMessage()

func (*IssuePaymentGetRequest) ProtoReflect

func (x *IssuePaymentGetRequest) ProtoReflect() protoreflect.Message

func (*IssuePaymentGetRequest) Reset

func (x *IssuePaymentGetRequest) Reset()

func (*IssuePaymentGetRequest) SizeVT

func (m *IssuePaymentGetRequest) SizeVT() (n int)

func (*IssuePaymentGetRequest) String

func (x *IssuePaymentGetRequest) String() string

func (*IssuePaymentGetRequest) UnmarshalVT

func (m *IssuePaymentGetRequest) UnmarshalVT(dAtA []byte) error

type IssuePaymentGetResponse

type IssuePaymentGetResponse struct {
	UserToPayment map[string]float64 `` /* 192-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*IssuePaymentGetResponse) Descriptor deprecated

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

Deprecated: Use IssuePaymentGetResponse.ProtoReflect.Descriptor instead.

func (*IssuePaymentGetResponse) GetUserToPayment

func (x *IssuePaymentGetResponse) GetUserToPayment() map[string]float64

func (*IssuePaymentGetResponse) MarshalToSizedBufferVT

func (m *IssuePaymentGetResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssuePaymentGetResponse) MarshalToVT

func (m *IssuePaymentGetResponse) MarshalToVT(dAtA []byte) (int, error)

func (*IssuePaymentGetResponse) MarshalVT

func (m *IssuePaymentGetResponse) MarshalVT() (dAtA []byte, err error)

func (*IssuePaymentGetResponse) ProtoMessage

func (*IssuePaymentGetResponse) ProtoMessage()

func (*IssuePaymentGetResponse) ProtoReflect

func (x *IssuePaymentGetResponse) ProtoReflect() protoreflect.Message

func (*IssuePaymentGetResponse) Reset

func (x *IssuePaymentGetResponse) Reset()

func (*IssuePaymentGetResponse) SizeVT

func (m *IssuePaymentGetResponse) SizeVT() (n int)

func (*IssuePaymentGetResponse) String

func (x *IssuePaymentGetResponse) String() string

func (*IssuePaymentGetResponse) UnmarshalVT

func (m *IssuePaymentGetResponse) UnmarshalVT(dAtA []byte) error

type IssueRegistryClient

IssueRegistryClient is the client API for IssueRegistry service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type IssueRegistryServer

IssueRegistryServer is the server API for IssueRegistry service. All implementations should embed UnimplementedIssueRegistryServer for forward compatibility

type IssueType

type IssueType int32
const (
	IssueType_ISSUE_TYPE_UNKNOWN IssueType = 0
	IssueType_ISSUE_TYPE_EPIC    IssueType = 1
	IssueType_ISSUE_TYPE_STORY   IssueType = 2
	IssueType_ISSUE_TYPE_TASK    IssueType = 3
	IssueType_ISSUE_TYPE_SUBTASK IssueType = 4
)

func (IssueType) Descriptor

func (IssueType) Descriptor() protoreflect.EnumDescriptor

func (IssueType) Enum

func (x IssueType) Enum() *IssueType

func (IssueType) EnumDescriptor deprecated

func (IssueType) EnumDescriptor() ([]byte, []int)

Deprecated: Use IssueType.Descriptor instead.

func (IssueType) Number

func (x IssueType) Number() protoreflect.EnumNumber

func (IssueType) String

func (x IssueType) String() string

func (IssueType) Type

type IssueUpdateRequest

type IssueUpdateRequest struct {
	Id    int64  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Issue *Issue `protobuf:"bytes,2,opt,name=issue,proto3" json:"issue,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueUpdateRequest) Descriptor deprecated

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

Deprecated: Use IssueUpdateRequest.ProtoReflect.Descriptor instead.

func (*IssueUpdateRequest) GetId

func (x *IssueUpdateRequest) GetId() int64

func (*IssueUpdateRequest) GetIssue

func (x *IssueUpdateRequest) GetIssue() *Issue

func (*IssueUpdateRequest) MarshalToSizedBufferVT

func (m *IssueUpdateRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueUpdateRequest) MarshalToVT

func (m *IssueUpdateRequest) MarshalToVT(dAtA []byte) (int, error)

func (*IssueUpdateRequest) MarshalVT

func (m *IssueUpdateRequest) MarshalVT() (dAtA []byte, err error)

func (*IssueUpdateRequest) ProtoMessage

func (*IssueUpdateRequest) ProtoMessage()

func (*IssueUpdateRequest) ProtoReflect

func (x *IssueUpdateRequest) ProtoReflect() protoreflect.Message

func (*IssueUpdateRequest) Reset

func (x *IssueUpdateRequest) Reset()

func (*IssueUpdateRequest) SizeVT

func (m *IssueUpdateRequest) SizeVT() (n int)

func (*IssueUpdateRequest) String

func (x *IssueUpdateRequest) String() string

func (*IssueUpdateRequest) UnmarshalVT

func (m *IssueUpdateRequest) UnmarshalVT(dAtA []byte) error

type IssueUpdateResponse

type IssueUpdateResponse struct {
	Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*IssueUpdateResponse) Descriptor deprecated

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

Deprecated: Use IssueUpdateResponse.ProtoReflect.Descriptor instead.

func (*IssueUpdateResponse) GetId

func (x *IssueUpdateResponse) GetId() int64

func (*IssueUpdateResponse) MarshalToSizedBufferVT

func (m *IssueUpdateResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*IssueUpdateResponse) MarshalToVT

func (m *IssueUpdateResponse) MarshalToVT(dAtA []byte) (int, error)

func (*IssueUpdateResponse) MarshalVT

func (m *IssueUpdateResponse) MarshalVT() (dAtA []byte, err error)

func (*IssueUpdateResponse) ProtoMessage

func (*IssueUpdateResponse) ProtoMessage()

func (*IssueUpdateResponse) ProtoReflect

func (x *IssueUpdateResponse) ProtoReflect() protoreflect.Message

func (*IssueUpdateResponse) Reset

func (x *IssueUpdateResponse) Reset()

func (*IssueUpdateResponse) SizeVT

func (m *IssueUpdateResponse) SizeVT() (n int)

func (*IssueUpdateResponse) String

func (x *IssueUpdateResponse) String() string

func (*IssueUpdateResponse) UnmarshalVT

func (m *IssueUpdateResponse) UnmarshalVT(dAtA []byte) error

type UnimplementedIssueRegistryServer

type UnimplementedIssueRegistryServer struct {
}

UnimplementedIssueRegistryServer should be embedded to have forward compatible implementations.

func (UnimplementedIssueRegistryServer) AddComment

func (UnimplementedIssueRegistryServer) CreateIssue

func (UnimplementedIssueRegistryServer) GetIssueByID

func (UnimplementedIssueRegistryServer) GetIssueInfo

func (UnimplementedIssueRegistryServer) GetIssueInfoByID

func (UnimplementedIssueRegistryServer) GetIssues

func (UnimplementedIssueRegistryServer) GetUserPayment

func (UnimplementedIssueRegistryServer) UpdateIssue

type UnsafeIssueRegistryServer

type UnsafeIssueRegistryServer interface {
	// contains filtered or unexported methods
}

UnsafeIssueRegistryServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to IssueRegistryServer will result in compilation errors.

Jump to

Keyboard shortcuts

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