task_tracker_tasks

package
v0.0.4 Latest Latest
Warning

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

Go to latest
Published: Sep 1, 2025 License: MIT Imports: 33 Imported by: 0

Documentation

Overview

Package task_tracker_tasks is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	Priority_name = map[int32]string{
		0: "PRIORITY_UNSPECIFIED",
		1: "PRIORITY_LOW",
		2: "PRIORITY_MEDIUM",
		3: "PRIORITY_HIGH",
		4: "PRIORITY_CRITICAL",
	}
	Priority_value = map[string]int32{
		"PRIORITY_UNSPECIFIED": 0,
		"PRIORITY_LOW":         1,
		"PRIORITY_MEDIUM":      2,
		"PRIORITY_HIGH":        3,
		"PRIORITY_CRITICAL":    4,
	}
)

Enum value maps for Priority.

View Source
var File_api_tasks_models_proto protoreflect.FileDescriptor
View Source
var File_api_tasks_services_proto protoreflect.FileDescriptor
View Source
var TaskService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "api.v1.task_tracker.tasks.TaskService",
	HandlerType: (*TaskServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetTasks",
			Handler:    _TaskService_GetTasks_Handler,
		},
		{
			MethodName: "CreateTasks",
			Handler:    _TaskService_CreateTasks_Handler,
		},
		{
			MethodName: "UpdateTasks",
			Handler:    _TaskService_UpdateTasks_Handler,
		},
		{
			MethodName: "DeleteTasks",
			Handler:    _TaskService_DeleteTasks_Handler,
		},
		{
			MethodName: "GetAllDependencies",
			Handler:    _TaskService_GetAllDependencies_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/tasks/services.proto",
}

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

Functions

func RegisterTaskServiceHandler

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

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

func RegisterTaskServiceHandlerClient

func RegisterTaskServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client TaskServiceClient) error

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

func RegisterTaskServiceHandlerFromEndpoint

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

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

func RegisterTaskServiceHandlerServer

func RegisterTaskServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server TaskServiceServer) error

RegisterTaskServiceHandlerServer registers the http handlers for service TaskService to "mux". UnaryRPC :call TaskServiceServer 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 RegisterTaskServiceHandlerFromEndpoint instead. GRPC interceptors will not work for this type of registration. To use interceptors, you must use the "runtime.WithMiddlewares" option in the "runtime.NewServeMux" call.

func RegisterTaskServiceServer

func RegisterTaskServiceServer(s grpc.ServiceRegistrar, srv TaskServiceServer)

Types

type CreateTasksRequest

type CreateTasksRequest struct {
	TasksToCreate []*CreateTasksRequest_TaskPrototype `protobuf:"bytes,1,rep,name=tasks_to_create,json=tasksToCreate,proto3" json:"tasks_to_create,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTasksRequest) CloneMessageVT

func (m *CreateTasksRequest) CloneMessageVT() proto.Message

func (*CreateTasksRequest) CloneVT

func (m *CreateTasksRequest) CloneVT() *CreateTasksRequest

func (*CreateTasksRequest) Descriptor deprecated

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

Deprecated: Use CreateTasksRequest.ProtoReflect.Descriptor instead.

func (*CreateTasksRequest) EqualMessageVT

func (this *CreateTasksRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateTasksRequest) EqualVT

func (this *CreateTasksRequest) EqualVT(that *CreateTasksRequest) bool

func (*CreateTasksRequest) GetTasksToCreate

func (x *CreateTasksRequest) GetTasksToCreate() []*CreateTasksRequest_TaskPrototype

func (*CreateTasksRequest) MarshalToSizedBufferVT

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

func (*CreateTasksRequest) MarshalToSizedBufferVTStrict

func (m *CreateTasksRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CreateTasksRequest) MarshalToVT

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

func (*CreateTasksRequest) MarshalToVTStrict

func (m *CreateTasksRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CreateTasksRequest) MarshalVT

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

func (*CreateTasksRequest) MarshalVTStrict

func (m *CreateTasksRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*CreateTasksRequest) ProtoMessage

func (*CreateTasksRequest) ProtoMessage()

func (*CreateTasksRequest) ProtoReflect

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

func (*CreateTasksRequest) Reset

func (x *CreateTasksRequest) Reset()

func (*CreateTasksRequest) SizeVT

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

func (*CreateTasksRequest) String

func (x *CreateTasksRequest) String() string

func (*CreateTasksRequest) UnmarshalVT

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

func (*CreateTasksRequest) UnmarshalVTUnsafe

func (m *CreateTasksRequest) UnmarshalVTUnsafe(dAtA []byte) error

func (*CreateTasksRequest) Validate

func (m *CreateTasksRequest) Validate() error

Validate checks the field values on CreateTasksRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateTasksRequest) ValidateAll

func (m *CreateTasksRequest) ValidateAll() error

ValidateAll checks the field values on CreateTasksRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateTasksRequestMultiError, or nil if none found.

type CreateTasksRequestMultiError

type CreateTasksRequestMultiError []error

CreateTasksRequestMultiError is an error wrapping multiple validation errors returned by CreateTasksRequest.ValidateAll() if the designated constraints aren't met.

func (CreateTasksRequestMultiError) AllErrors

func (m CreateTasksRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTasksRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CreateTasksRequestValidationError

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

CreateTasksRequestValidationError is the validation error returned by CreateTasksRequest.Validate if the designated constraints aren't met.

func (CreateTasksRequestValidationError) Cause

Cause function returns cause value.

func (CreateTasksRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateTasksRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateTasksRequestValidationError) Field

Field function returns field value.

func (CreateTasksRequestValidationError) Key

Key function returns key value.

func (CreateTasksRequestValidationError) Reason

Reason function returns reason value.

type CreateTasksRequest_TaskPrototype

type CreateTasksRequest_TaskPrototype struct {
	Name        string                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Description string                 `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Deps        []int64                `protobuf:"varint,3,rep,packed,name=deps,proto3" json:"deps,omitempty"`
	Priority    Priority               `protobuf:"varint,4,opt,name=priority,proto3,enum=api.v1.task_tracker.tasks.Priority" json:"priority,omitempty"`
	StartTime   *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	FinishTime  *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=finish_time,json=finishTime,proto3" json:"finish_time,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTasksRequest_TaskPrototype) CloneMessageVT

func (m *CreateTasksRequest_TaskPrototype) CloneMessageVT() proto.Message

func (*CreateTasksRequest_TaskPrototype) CloneVT

func (*CreateTasksRequest_TaskPrototype) Descriptor deprecated

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

Deprecated: Use CreateTasksRequest_TaskPrototype.ProtoReflect.Descriptor instead.

func (*CreateTasksRequest_TaskPrototype) EqualMessageVT

func (this *CreateTasksRequest_TaskPrototype) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateTasksRequest_TaskPrototype) EqualVT

func (*CreateTasksRequest_TaskPrototype) GetDeps

func (x *CreateTasksRequest_TaskPrototype) GetDeps() []int64

func (*CreateTasksRequest_TaskPrototype) GetDescription

func (x *CreateTasksRequest_TaskPrototype) GetDescription() string

func (*CreateTasksRequest_TaskPrototype) GetFinishTime

func (*CreateTasksRequest_TaskPrototype) GetName

func (*CreateTasksRequest_TaskPrototype) GetPriority

func (x *CreateTasksRequest_TaskPrototype) GetPriority() Priority

func (*CreateTasksRequest_TaskPrototype) GetStartTime

func (*CreateTasksRequest_TaskPrototype) MarshalToSizedBufferVT

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

func (*CreateTasksRequest_TaskPrototype) MarshalToSizedBufferVTStrict

func (m *CreateTasksRequest_TaskPrototype) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CreateTasksRequest_TaskPrototype) MarshalToVT

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

func (*CreateTasksRequest_TaskPrototype) MarshalToVTStrict

func (m *CreateTasksRequest_TaskPrototype) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CreateTasksRequest_TaskPrototype) MarshalVT

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

func (*CreateTasksRequest_TaskPrototype) MarshalVTStrict

func (m *CreateTasksRequest_TaskPrototype) MarshalVTStrict() (dAtA []byte, err error)

func (*CreateTasksRequest_TaskPrototype) ProtoMessage

func (*CreateTasksRequest_TaskPrototype) ProtoMessage()

func (*CreateTasksRequest_TaskPrototype) ProtoReflect

func (*CreateTasksRequest_TaskPrototype) Reset

func (*CreateTasksRequest_TaskPrototype) SizeVT

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

func (*CreateTasksRequest_TaskPrototype) String

func (*CreateTasksRequest_TaskPrototype) UnmarshalVT

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

func (*CreateTasksRequest_TaskPrototype) UnmarshalVTUnsafe

func (m *CreateTasksRequest_TaskPrototype) UnmarshalVTUnsafe(dAtA []byte) error

func (*CreateTasksRequest_TaskPrototype) Validate

Validate checks the field values on CreateTasksRequest_TaskPrototype with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateTasksRequest_TaskPrototype) ValidateAll

func (m *CreateTasksRequest_TaskPrototype) ValidateAll() error

ValidateAll checks the field values on CreateTasksRequest_TaskPrototype with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateTasksRequest_TaskPrototypeMultiError, or nil if none found.

type CreateTasksRequest_TaskPrototypeMultiError

type CreateTasksRequest_TaskPrototypeMultiError []error

CreateTasksRequest_TaskPrototypeMultiError is an error wrapping multiple validation errors returned by CreateTasksRequest_TaskPrototype.ValidateAll() if the designated constraints aren't met.

func (CreateTasksRequest_TaskPrototypeMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (CreateTasksRequest_TaskPrototypeMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CreateTasksRequest_TaskPrototypeValidationError

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

CreateTasksRequest_TaskPrototypeValidationError is the validation error returned by CreateTasksRequest_TaskPrototype.Validate if the designated constraints aren't met.

func (CreateTasksRequest_TaskPrototypeValidationError) Cause

Cause function returns cause value.

func (CreateTasksRequest_TaskPrototypeValidationError) Error

Error satisfies the builtin error interface

func (CreateTasksRequest_TaskPrototypeValidationError) ErrorName

ErrorName returns error name.

func (CreateTasksRequest_TaskPrototypeValidationError) Field

Field function returns field value.

func (CreateTasksRequest_TaskPrototypeValidationError) Key

Key function returns key value.

func (CreateTasksRequest_TaskPrototypeValidationError) Reason

Reason function returns reason value.

type CreateTasksResponse

type CreateTasksResponse struct {
	Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTasksResponse) CloneMessageVT

func (m *CreateTasksResponse) CloneMessageVT() proto.Message

func (*CreateTasksResponse) CloneVT

func (*CreateTasksResponse) Descriptor deprecated

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

Deprecated: Use CreateTasksResponse.ProtoReflect.Descriptor instead.

func (*CreateTasksResponse) EqualMessageVT

func (this *CreateTasksResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateTasksResponse) EqualVT

func (this *CreateTasksResponse) EqualVT(that *CreateTasksResponse) bool

func (*CreateTasksResponse) GetIds

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

func (*CreateTasksResponse) MarshalToSizedBufferVT

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

func (*CreateTasksResponse) MarshalToSizedBufferVTStrict

func (m *CreateTasksResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CreateTasksResponse) MarshalToVT

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

func (*CreateTasksResponse) MarshalToVTStrict

func (m *CreateTasksResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CreateTasksResponse) MarshalVT

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

func (*CreateTasksResponse) MarshalVTStrict

func (m *CreateTasksResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*CreateTasksResponse) ProtoMessage

func (*CreateTasksResponse) ProtoMessage()

func (*CreateTasksResponse) ProtoReflect

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

func (*CreateTasksResponse) Reset

func (x *CreateTasksResponse) Reset()

func (*CreateTasksResponse) SizeVT

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

func (*CreateTasksResponse) String

func (x *CreateTasksResponse) String() string

func (*CreateTasksResponse) UnmarshalVT

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

func (*CreateTasksResponse) UnmarshalVTUnsafe

func (m *CreateTasksResponse) UnmarshalVTUnsafe(dAtA []byte) error

func (*CreateTasksResponse) Validate

func (m *CreateTasksResponse) Validate() error

Validate checks the field values on CreateTasksResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateTasksResponse) ValidateAll

func (m *CreateTasksResponse) ValidateAll() error

ValidateAll checks the field values on CreateTasksResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateTasksResponseMultiError, or nil if none found.

type CreateTasksResponseMultiError

type CreateTasksResponseMultiError []error

CreateTasksResponseMultiError is an error wrapping multiple validation errors returned by CreateTasksResponse.ValidateAll() if the designated constraints aren't met.

func (CreateTasksResponseMultiError) AllErrors

func (m CreateTasksResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTasksResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CreateTasksResponseValidationError

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

CreateTasksResponseValidationError is the validation error returned by CreateTasksResponse.Validate if the designated constraints aren't met.

func (CreateTasksResponseValidationError) Cause

Cause function returns cause value.

func (CreateTasksResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateTasksResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateTasksResponseValidationError) Field

Field function returns field value.

func (CreateTasksResponseValidationError) Key

Key function returns key value.

func (CreateTasksResponseValidationError) Reason

Reason function returns reason value.

type DeleteTasksRequest

type DeleteTasksRequest struct {
	Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteTasksRequest) CloneMessageVT

func (m *DeleteTasksRequest) CloneMessageVT() proto.Message

func (*DeleteTasksRequest) CloneVT

func (m *DeleteTasksRequest) CloneVT() *DeleteTasksRequest

func (*DeleteTasksRequest) Descriptor deprecated

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

Deprecated: Use DeleteTasksRequest.ProtoReflect.Descriptor instead.

func (*DeleteTasksRequest) EqualMessageVT

func (this *DeleteTasksRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteTasksRequest) EqualVT

func (this *DeleteTasksRequest) EqualVT(that *DeleteTasksRequest) bool

func (*DeleteTasksRequest) GetIds

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

func (*DeleteTasksRequest) MarshalToSizedBufferVT

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

func (*DeleteTasksRequest) MarshalToSizedBufferVTStrict

func (m *DeleteTasksRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*DeleteTasksRequest) MarshalToVT

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

func (*DeleteTasksRequest) MarshalToVTStrict

func (m *DeleteTasksRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*DeleteTasksRequest) MarshalVT

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

func (*DeleteTasksRequest) MarshalVTStrict

func (m *DeleteTasksRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*DeleteTasksRequest) ProtoMessage

func (*DeleteTasksRequest) ProtoMessage()

func (*DeleteTasksRequest) ProtoReflect

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

func (*DeleteTasksRequest) Reset

func (x *DeleteTasksRequest) Reset()

func (*DeleteTasksRequest) SizeVT

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

func (*DeleteTasksRequest) String

func (x *DeleteTasksRequest) String() string

func (*DeleteTasksRequest) UnmarshalVT

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

func (*DeleteTasksRequest) UnmarshalVTUnsafe

func (m *DeleteTasksRequest) UnmarshalVTUnsafe(dAtA []byte) error

func (*DeleteTasksRequest) Validate

func (m *DeleteTasksRequest) Validate() error

Validate checks the field values on DeleteTasksRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteTasksRequest) ValidateAll

func (m *DeleteTasksRequest) ValidateAll() error

ValidateAll checks the field values on DeleteTasksRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteTasksRequestMultiError, or nil if none found.

type DeleteTasksRequestMultiError

type DeleteTasksRequestMultiError []error

DeleteTasksRequestMultiError is an error wrapping multiple validation errors returned by DeleteTasksRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteTasksRequestMultiError) AllErrors

func (m DeleteTasksRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteTasksRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeleteTasksRequestValidationError

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

DeleteTasksRequestValidationError is the validation error returned by DeleteTasksRequest.Validate if the designated constraints aren't met.

func (DeleteTasksRequestValidationError) Cause

Cause function returns cause value.

func (DeleteTasksRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteTasksRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteTasksRequestValidationError) Field

Field function returns field value.

func (DeleteTasksRequestValidationError) Key

Key function returns key value.

func (DeleteTasksRequestValidationError) Reason

Reason function returns reason value.

type DeleteTasksResponse

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

func (*DeleteTasksResponse) CloneMessageVT

func (m *DeleteTasksResponse) CloneMessageVT() proto.Message

func (*DeleteTasksResponse) CloneVT

func (*DeleteTasksResponse) Descriptor deprecated

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

Deprecated: Use DeleteTasksResponse.ProtoReflect.Descriptor instead.

func (*DeleteTasksResponse) EqualMessageVT

func (this *DeleteTasksResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteTasksResponse) EqualVT

func (this *DeleteTasksResponse) EqualVT(that *DeleteTasksResponse) bool

func (*DeleteTasksResponse) MarshalToSizedBufferVT

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

func (*DeleteTasksResponse) MarshalToSizedBufferVTStrict

func (m *DeleteTasksResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*DeleteTasksResponse) MarshalToVT

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

func (*DeleteTasksResponse) MarshalToVTStrict

func (m *DeleteTasksResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*DeleteTasksResponse) MarshalVT

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

func (*DeleteTasksResponse) MarshalVTStrict

func (m *DeleteTasksResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*DeleteTasksResponse) ProtoMessage

func (*DeleteTasksResponse) ProtoMessage()

func (*DeleteTasksResponse) ProtoReflect

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

func (*DeleteTasksResponse) Reset

func (x *DeleteTasksResponse) Reset()

func (*DeleteTasksResponse) SizeVT

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

func (*DeleteTasksResponse) String

func (x *DeleteTasksResponse) String() string

func (*DeleteTasksResponse) UnmarshalVT

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

func (*DeleteTasksResponse) UnmarshalVTUnsafe

func (m *DeleteTasksResponse) UnmarshalVTUnsafe(dAtA []byte) error

func (*DeleteTasksResponse) Validate

func (m *DeleteTasksResponse) Validate() error

Validate checks the field values on DeleteTasksResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteTasksResponse) ValidateAll

func (m *DeleteTasksResponse) ValidateAll() error

ValidateAll checks the field values on DeleteTasksResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteTasksResponseMultiError, or nil if none found.

type DeleteTasksResponseMultiError

type DeleteTasksResponseMultiError []error

DeleteTasksResponseMultiError is an error wrapping multiple validation errors returned by DeleteTasksResponse.ValidateAll() if the designated constraints aren't met.

func (DeleteTasksResponseMultiError) AllErrors

func (m DeleteTasksResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteTasksResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeleteTasksResponseValidationError

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

DeleteTasksResponseValidationError is the validation error returned by DeleteTasksResponse.Validate if the designated constraints aren't met.

func (DeleteTasksResponseValidationError) Cause

Cause function returns cause value.

func (DeleteTasksResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteTasksResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteTasksResponseValidationError) Field

Field function returns field value.

func (DeleteTasksResponseValidationError) Key

Key function returns key value.

func (DeleteTasksResponseValidationError) Reason

Reason function returns reason value.

type GetAllDependenciesRequest

type GetAllDependenciesRequest struct {
	Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAllDependenciesRequest) CloneMessageVT

func (m *GetAllDependenciesRequest) CloneMessageVT() proto.Message

func (*GetAllDependenciesRequest) CloneVT

func (*GetAllDependenciesRequest) Descriptor deprecated

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

Deprecated: Use GetAllDependenciesRequest.ProtoReflect.Descriptor instead.

func (*GetAllDependenciesRequest) EqualMessageVT

func (this *GetAllDependenciesRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*GetAllDependenciesRequest) EqualVT

func (*GetAllDependenciesRequest) GetIds

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

func (*GetAllDependenciesRequest) MarshalToSizedBufferVT

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

func (*GetAllDependenciesRequest) MarshalToSizedBufferVTStrict

func (m *GetAllDependenciesRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GetAllDependenciesRequest) MarshalToVT

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

func (*GetAllDependenciesRequest) MarshalToVTStrict

func (m *GetAllDependenciesRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GetAllDependenciesRequest) MarshalVT

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

func (*GetAllDependenciesRequest) MarshalVTStrict

func (m *GetAllDependenciesRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*GetAllDependenciesRequest) ProtoMessage

func (*GetAllDependenciesRequest) ProtoMessage()

func (*GetAllDependenciesRequest) ProtoReflect

func (*GetAllDependenciesRequest) Reset

func (x *GetAllDependenciesRequest) Reset()

func (*GetAllDependenciesRequest) SizeVT

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

func (*GetAllDependenciesRequest) String

func (x *GetAllDependenciesRequest) String() string

func (*GetAllDependenciesRequest) UnmarshalVT

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

func (*GetAllDependenciesRequest) UnmarshalVTUnsafe

func (m *GetAllDependenciesRequest) UnmarshalVTUnsafe(dAtA []byte) error

func (*GetAllDependenciesRequest) Validate

func (m *GetAllDependenciesRequest) Validate() error

Validate checks the field values on GetAllDependenciesRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetAllDependenciesRequest) ValidateAll

func (m *GetAllDependenciesRequest) ValidateAll() error

ValidateAll checks the field values on GetAllDependenciesRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetAllDependenciesRequestMultiError, or nil if none found.

type GetAllDependenciesRequestMultiError

type GetAllDependenciesRequestMultiError []error

GetAllDependenciesRequestMultiError is an error wrapping multiple validation errors returned by GetAllDependenciesRequest.ValidateAll() if the designated constraints aren't met.

func (GetAllDependenciesRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetAllDependenciesRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetAllDependenciesRequestValidationError

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

GetAllDependenciesRequestValidationError is the validation error returned by GetAllDependenciesRequest.Validate if the designated constraints aren't met.

func (GetAllDependenciesRequestValidationError) Cause

Cause function returns cause value.

func (GetAllDependenciesRequestValidationError) Error

Error satisfies the builtin error interface

func (GetAllDependenciesRequestValidationError) ErrorName

ErrorName returns error name.

func (GetAllDependenciesRequestValidationError) Field

Field function returns field value.

func (GetAllDependenciesRequestValidationError) Key

Key function returns key value.

func (GetAllDependenciesRequestValidationError) Reason

Reason function returns reason value.

type GetAllDependenciesResponse

type GetAllDependenciesResponse struct {
	DependenciesById map[int64]*GetAllDependenciesResponse_IdArray `` /* 186-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetAllDependenciesResponse) CloneMessageVT

func (m *GetAllDependenciesResponse) CloneMessageVT() proto.Message

func (*GetAllDependenciesResponse) CloneVT

func (*GetAllDependenciesResponse) Descriptor deprecated

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

Deprecated: Use GetAllDependenciesResponse.ProtoReflect.Descriptor instead.

func (*GetAllDependenciesResponse) EqualMessageVT

func (this *GetAllDependenciesResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*GetAllDependenciesResponse) EqualVT

func (*GetAllDependenciesResponse) GetDependenciesById

func (*GetAllDependenciesResponse) MarshalToSizedBufferVT

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

func (*GetAllDependenciesResponse) MarshalToSizedBufferVTStrict

func (m *GetAllDependenciesResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GetAllDependenciesResponse) MarshalToVT

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

func (*GetAllDependenciesResponse) MarshalToVTStrict

func (m *GetAllDependenciesResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GetAllDependenciesResponse) MarshalVT

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

func (*GetAllDependenciesResponse) MarshalVTStrict

func (m *GetAllDependenciesResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*GetAllDependenciesResponse) ProtoMessage

func (*GetAllDependenciesResponse) ProtoMessage()

func (*GetAllDependenciesResponse) ProtoReflect

func (*GetAllDependenciesResponse) Reset

func (x *GetAllDependenciesResponse) Reset()

func (*GetAllDependenciesResponse) SizeVT

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

func (*GetAllDependenciesResponse) String

func (x *GetAllDependenciesResponse) String() string

func (*GetAllDependenciesResponse) UnmarshalVT

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

func (*GetAllDependenciesResponse) UnmarshalVTUnsafe

func (m *GetAllDependenciesResponse) UnmarshalVTUnsafe(dAtA []byte) error

func (*GetAllDependenciesResponse) Validate

func (m *GetAllDependenciesResponse) Validate() error

Validate checks the field values on GetAllDependenciesResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetAllDependenciesResponse) ValidateAll

func (m *GetAllDependenciesResponse) ValidateAll() error

ValidateAll checks the field values on GetAllDependenciesResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetAllDependenciesResponseMultiError, or nil if none found.

type GetAllDependenciesResponseMultiError

type GetAllDependenciesResponseMultiError []error

GetAllDependenciesResponseMultiError is an error wrapping multiple validation errors returned by GetAllDependenciesResponse.ValidateAll() if the designated constraints aren't met.

func (GetAllDependenciesResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetAllDependenciesResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetAllDependenciesResponseValidationError

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

GetAllDependenciesResponseValidationError is the validation error returned by GetAllDependenciesResponse.Validate if the designated constraints aren't met.

func (GetAllDependenciesResponseValidationError) Cause

Cause function returns cause value.

func (GetAllDependenciesResponseValidationError) Error

Error satisfies the builtin error interface

func (GetAllDependenciesResponseValidationError) ErrorName

ErrorName returns error name.

func (GetAllDependenciesResponseValidationError) Field

Field function returns field value.

func (GetAllDependenciesResponseValidationError) Key

Key function returns key value.

func (GetAllDependenciesResponseValidationError) Reason

Reason function returns reason value.

type GetAllDependenciesResponse_IdArray

type GetAllDependenciesResponse_IdArray struct {
	Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAllDependenciesResponse_IdArray) CloneMessageVT

func (m *GetAllDependenciesResponse_IdArray) CloneMessageVT() proto.Message

func (*GetAllDependenciesResponse_IdArray) CloneVT

func (*GetAllDependenciesResponse_IdArray) Descriptor deprecated

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

Deprecated: Use GetAllDependenciesResponse_IdArray.ProtoReflect.Descriptor instead.

func (*GetAllDependenciesResponse_IdArray) EqualMessageVT

func (this *GetAllDependenciesResponse_IdArray) EqualMessageVT(thatMsg proto.Message) bool

func (*GetAllDependenciesResponse_IdArray) EqualVT

func (*GetAllDependenciesResponse_IdArray) GetIds

func (*GetAllDependenciesResponse_IdArray) MarshalToSizedBufferVT

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

func (*GetAllDependenciesResponse_IdArray) MarshalToSizedBufferVTStrict

func (m *GetAllDependenciesResponse_IdArray) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GetAllDependenciesResponse_IdArray) MarshalToVT

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

func (*GetAllDependenciesResponse_IdArray) MarshalToVTStrict

func (m *GetAllDependenciesResponse_IdArray) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GetAllDependenciesResponse_IdArray) MarshalVT

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

func (*GetAllDependenciesResponse_IdArray) MarshalVTStrict

func (m *GetAllDependenciesResponse_IdArray) MarshalVTStrict() (dAtA []byte, err error)

func (*GetAllDependenciesResponse_IdArray) ProtoMessage

func (*GetAllDependenciesResponse_IdArray) ProtoMessage()

func (*GetAllDependenciesResponse_IdArray) ProtoReflect

func (*GetAllDependenciesResponse_IdArray) Reset

func (*GetAllDependenciesResponse_IdArray) SizeVT

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

func (*GetAllDependenciesResponse_IdArray) String

func (*GetAllDependenciesResponse_IdArray) UnmarshalVT

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

func (*GetAllDependenciesResponse_IdArray) UnmarshalVTUnsafe

func (m *GetAllDependenciesResponse_IdArray) UnmarshalVTUnsafe(dAtA []byte) error

func (*GetAllDependenciesResponse_IdArray) Validate

Validate checks the field values on GetAllDependenciesResponse_IdArray with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetAllDependenciesResponse_IdArray) ValidateAll

func (m *GetAllDependenciesResponse_IdArray) ValidateAll() error

ValidateAll checks the field values on GetAllDependenciesResponse_IdArray with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetAllDependenciesResponse_IdArrayMultiError, or nil if none found.

type GetAllDependenciesResponse_IdArrayMultiError

type GetAllDependenciesResponse_IdArrayMultiError []error

GetAllDependenciesResponse_IdArrayMultiError is an error wrapping multiple validation errors returned by GetAllDependenciesResponse_IdArray.ValidateAll() if the designated constraints aren't met.

func (GetAllDependenciesResponse_IdArrayMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetAllDependenciesResponse_IdArrayMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetAllDependenciesResponse_IdArrayValidationError

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

GetAllDependenciesResponse_IdArrayValidationError is the validation error returned by GetAllDependenciesResponse_IdArray.Validate if the designated constraints aren't met.

func (GetAllDependenciesResponse_IdArrayValidationError) Cause

Cause function returns cause value.

func (GetAllDependenciesResponse_IdArrayValidationError) Error

Error satisfies the builtin error interface

func (GetAllDependenciesResponse_IdArrayValidationError) ErrorName

ErrorName returns error name.

func (GetAllDependenciesResponse_IdArrayValidationError) Field

Field function returns field value.

func (GetAllDependenciesResponse_IdArrayValidationError) Key

Key function returns key value.

func (GetAllDependenciesResponse_IdArrayValidationError) Reason

Reason function returns reason value.

type GetTasksRequest

type GetTasksRequest struct {
	Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTasksRequest) CloneMessageVT

func (m *GetTasksRequest) CloneMessageVT() proto.Message

func (*GetTasksRequest) CloneVT

func (m *GetTasksRequest) CloneVT() *GetTasksRequest

func (*GetTasksRequest) Descriptor deprecated

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

Deprecated: Use GetTasksRequest.ProtoReflect.Descriptor instead.

func (*GetTasksRequest) EqualMessageVT

func (this *GetTasksRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*GetTasksRequest) EqualVT

func (this *GetTasksRequest) EqualVT(that *GetTasksRequest) bool

func (*GetTasksRequest) GetIds

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

func (*GetTasksRequest) MarshalToSizedBufferVT

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

func (*GetTasksRequest) MarshalToSizedBufferVTStrict

func (m *GetTasksRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GetTasksRequest) MarshalToVT

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

func (*GetTasksRequest) MarshalToVTStrict

func (m *GetTasksRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GetTasksRequest) MarshalVT

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

func (*GetTasksRequest) MarshalVTStrict

func (m *GetTasksRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*GetTasksRequest) ProtoMessage

func (*GetTasksRequest) ProtoMessage()

func (*GetTasksRequest) ProtoReflect

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

func (*GetTasksRequest) Reset

func (x *GetTasksRequest) Reset()

func (*GetTasksRequest) SizeVT

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

func (*GetTasksRequest) String

func (x *GetTasksRequest) String() string

func (*GetTasksRequest) UnmarshalVT

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

func (*GetTasksRequest) UnmarshalVTUnsafe

func (m *GetTasksRequest) UnmarshalVTUnsafe(dAtA []byte) error

func (*GetTasksRequest) Validate

func (m *GetTasksRequest) Validate() error

Validate checks the field values on GetTasksRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetTasksRequest) ValidateAll

func (m *GetTasksRequest) ValidateAll() error

ValidateAll checks the field values on GetTasksRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetTasksRequestMultiError, or nil if none found.

type GetTasksRequestMultiError

type GetTasksRequestMultiError []error

GetTasksRequestMultiError is an error wrapping multiple validation errors returned by GetTasksRequest.ValidateAll() if the designated constraints aren't met.

func (GetTasksRequestMultiError) AllErrors

func (m GetTasksRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetTasksRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetTasksRequestValidationError

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

GetTasksRequestValidationError is the validation error returned by GetTasksRequest.Validate if the designated constraints aren't met.

func (GetTasksRequestValidationError) Cause

Cause function returns cause value.

func (GetTasksRequestValidationError) Error

Error satisfies the builtin error interface

func (GetTasksRequestValidationError) ErrorName

func (e GetTasksRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetTasksRequestValidationError) Field

Field function returns field value.

func (GetTasksRequestValidationError) Key

Key function returns key value.

func (GetTasksRequestValidationError) Reason

Reason function returns reason value.

type GetTasksResponse

type GetTasksResponse struct {
	Tasks []*Task `protobuf:"bytes,1,rep,name=tasks,proto3" json:"tasks,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTasksResponse) CloneMessageVT

func (m *GetTasksResponse) CloneMessageVT() proto.Message

func (*GetTasksResponse) CloneVT

func (m *GetTasksResponse) CloneVT() *GetTasksResponse

func (*GetTasksResponse) Descriptor deprecated

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

Deprecated: Use GetTasksResponse.ProtoReflect.Descriptor instead.

func (*GetTasksResponse) EqualMessageVT

func (this *GetTasksResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*GetTasksResponse) EqualVT

func (this *GetTasksResponse) EqualVT(that *GetTasksResponse) bool

func (*GetTasksResponse) GetTasks

func (x *GetTasksResponse) GetTasks() []*Task

func (*GetTasksResponse) MarshalToSizedBufferVT

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

func (*GetTasksResponse) MarshalToSizedBufferVTStrict

func (m *GetTasksResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GetTasksResponse) MarshalToVT

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

func (*GetTasksResponse) MarshalToVTStrict

func (m *GetTasksResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GetTasksResponse) MarshalVT

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

func (*GetTasksResponse) MarshalVTStrict

func (m *GetTasksResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*GetTasksResponse) ProtoMessage

func (*GetTasksResponse) ProtoMessage()

func (*GetTasksResponse) ProtoReflect

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

func (*GetTasksResponse) Reset

func (x *GetTasksResponse) Reset()

func (*GetTasksResponse) SizeVT

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

func (*GetTasksResponse) String

func (x *GetTasksResponse) String() string

func (*GetTasksResponse) UnmarshalVT

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

func (*GetTasksResponse) UnmarshalVTUnsafe

func (m *GetTasksResponse) UnmarshalVTUnsafe(dAtA []byte) error

func (*GetTasksResponse) Validate

func (m *GetTasksResponse) Validate() error

Validate checks the field values on GetTasksResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetTasksResponse) ValidateAll

func (m *GetTasksResponse) ValidateAll() error

ValidateAll checks the field values on GetTasksResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetTasksResponseMultiError, or nil if none found.

type GetTasksResponseMultiError

type GetTasksResponseMultiError []error

GetTasksResponseMultiError is an error wrapping multiple validation errors returned by GetTasksResponse.ValidateAll() if the designated constraints aren't met.

func (GetTasksResponseMultiError) AllErrors

func (m GetTasksResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetTasksResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetTasksResponseValidationError

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

GetTasksResponseValidationError is the validation error returned by GetTasksResponse.Validate if the designated constraints aren't met.

func (GetTasksResponseValidationError) Cause

Cause function returns cause value.

func (GetTasksResponseValidationError) Error

Error satisfies the builtin error interface

func (GetTasksResponseValidationError) ErrorName

ErrorName returns error name.

func (GetTasksResponseValidationError) Field

Field function returns field value.

func (GetTasksResponseValidationError) Key

Key function returns key value.

func (GetTasksResponseValidationError) Reason

Reason function returns reason value.

type Priority

type Priority int32
const (
	Priority_PRIORITY_UNSPECIFIED Priority = 0
	Priority_PRIORITY_LOW         Priority = 1
	Priority_PRIORITY_MEDIUM      Priority = 2
	Priority_PRIORITY_HIGH        Priority = 3
	Priority_PRIORITY_CRITICAL    Priority = 4
)

func (Priority) Descriptor

func (Priority) Descriptor() protoreflect.EnumDescriptor

func (Priority) Enum

func (x Priority) Enum() *Priority

func (Priority) EnumDescriptor deprecated

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

Deprecated: Use Priority.Descriptor instead.

func (Priority) Number

func (x Priority) Number() protoreflect.EnumNumber

func (Priority) String

func (x Priority) String() string

func (Priority) Type

type Task

type Task struct {
	Id          int64                  `protobuf:"varint,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"`
	Deps        []int64                `protobuf:"varint,4,rep,packed,name=deps,proto3" json:"deps,omitempty"`
	Priority    Priority               `protobuf:"varint,5,opt,name=priority,proto3,enum=api.v1.task_tracker.tasks.Priority" json:"priority,omitempty"`
	StartTime   *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	FinishTime  *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=finish_time,json=finishTime,proto3" json:"finish_time,omitempty"`
	CreatedAt   *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt   *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*Task) CloneMessageVT

func (m *Task) CloneMessageVT() proto.Message

func (*Task) CloneVT

func (m *Task) CloneVT() *Task

func (*Task) Descriptor deprecated

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

Deprecated: Use Task.ProtoReflect.Descriptor instead.

func (*Task) EqualMessageVT

func (this *Task) EqualMessageVT(thatMsg proto.Message) bool

func (*Task) EqualVT

func (this *Task) EqualVT(that *Task) bool

func (*Task) GetCreatedAt

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

func (*Task) GetDeps

func (x *Task) GetDeps() []int64

func (*Task) GetDescription

func (x *Task) GetDescription() string

func (*Task) GetFinishTime

func (x *Task) GetFinishTime() *timestamppb.Timestamp

func (*Task) GetId

func (x *Task) GetId() int64

func (*Task) GetName

func (x *Task) GetName() string

func (*Task) GetPriority

func (x *Task) GetPriority() Priority

func (*Task) GetStartTime

func (x *Task) GetStartTime() *timestamppb.Timestamp

func (*Task) GetUpdatedAt

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

func (*Task) MarshalToSizedBufferVT

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

func (*Task) MarshalToSizedBufferVTStrict

func (m *Task) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Task) MarshalToVT

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

func (*Task) MarshalToVTStrict

func (m *Task) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Task) MarshalVT

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

func (*Task) MarshalVTStrict

func (m *Task) MarshalVTStrict() (dAtA []byte, err error)

func (*Task) ProtoMessage

func (*Task) ProtoMessage()

func (*Task) ProtoReflect

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

func (*Task) Reset

func (x *Task) Reset()

func (*Task) SizeVT

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

func (*Task) String

func (x *Task) String() string

func (*Task) UnmarshalVT

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

func (*Task) UnmarshalVTUnsafe

func (m *Task) UnmarshalVTUnsafe(dAtA []byte) error

func (*Task) Validate

func (m *Task) Validate() error

Validate checks the field values on Task with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Task) ValidateAll

func (m *Task) ValidateAll() error

ValidateAll checks the field values on Task with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TaskMultiError, or nil if none found.

type TaskMultiError

type TaskMultiError []error

TaskMultiError is an error wrapping multiple validation errors returned by Task.ValidateAll() if the designated constraints aren't met.

func (TaskMultiError) AllErrors

func (m TaskMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TaskMultiError) Error

func (m TaskMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TaskServiceClient

type TaskServiceClient interface {
	GetTasks(ctx context.Context, in *GetTasksRequest, opts ...grpc.CallOption) (*GetTasksResponse, error)
	CreateTasks(ctx context.Context, in *CreateTasksRequest, opts ...grpc.CallOption) (*CreateTasksResponse, error)
	UpdateTasks(ctx context.Context, in *UpdateTasksRequest, opts ...grpc.CallOption) (*UpdateTasksResponse, error)
	DeleteTasks(ctx context.Context, in *DeleteTasksRequest, opts ...grpc.CallOption) (*DeleteTasksResponse, error)
	// Fetches all (direct and indirect) dependencies of tasks.
	GetAllDependencies(ctx context.Context, in *GetAllDependenciesRequest, opts ...grpc.CallOption) (*GetAllDependenciesResponse, error)
}

TaskServiceClient is the client API for TaskService 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 TaskServiceServer

type TaskServiceServer interface {
	GetTasks(context.Context, *GetTasksRequest) (*GetTasksResponse, error)
	CreateTasks(context.Context, *CreateTasksRequest) (*CreateTasksResponse, error)
	UpdateTasks(context.Context, *UpdateTasksRequest) (*UpdateTasksResponse, error)
	DeleteTasks(context.Context, *DeleteTasksRequest) (*DeleteTasksResponse, error)
	// Fetches all (direct and indirect) dependencies of tasks.
	GetAllDependencies(context.Context, *GetAllDependenciesRequest) (*GetAllDependenciesResponse, error)
	// contains filtered or unexported methods
}

TaskServiceServer is the server API for TaskService service. All implementations must embed UnimplementedTaskServiceServer for forward compatibility

type TaskValidationError

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

TaskValidationError is the validation error returned by Task.Validate if the designated constraints aren't met.

func (TaskValidationError) Cause

func (e TaskValidationError) Cause() error

Cause function returns cause value.

func (TaskValidationError) Error

func (e TaskValidationError) Error() string

Error satisfies the builtin error interface

func (TaskValidationError) ErrorName

func (e TaskValidationError) ErrorName() string

ErrorName returns error name.

func (TaskValidationError) Field

func (e TaskValidationError) Field() string

Field function returns field value.

func (TaskValidationError) Key

func (e TaskValidationError) Key() bool

Key function returns key value.

func (TaskValidationError) Reason

func (e TaskValidationError) Reason() string

Reason function returns reason value.

type UnimplementedTaskServiceServer

type UnimplementedTaskServiceServer struct {
}

UnimplementedTaskServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedTaskServiceServer) CreateTasks

func (UnimplementedTaskServiceServer) DeleteTasks

func (UnimplementedTaskServiceServer) GetAllDependencies

func (UnimplementedTaskServiceServer) GetTasks

func (UnimplementedTaskServiceServer) UpdateTasks

type UnsafeTaskServiceServer

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

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

type UpdateTasksRequest

type UpdateTasksRequest struct {
	TasksToUpdate []*UpdateTasksRequest_TaskPrototype `protobuf:"bytes,1,rep,name=tasks_to_update,json=tasksToUpdate,proto3" json:"tasks_to_update,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateTasksRequest) CloneMessageVT

func (m *UpdateTasksRequest) CloneMessageVT() proto.Message

func (*UpdateTasksRequest) CloneVT

func (m *UpdateTasksRequest) CloneVT() *UpdateTasksRequest

func (*UpdateTasksRequest) Descriptor deprecated

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

Deprecated: Use UpdateTasksRequest.ProtoReflect.Descriptor instead.

func (*UpdateTasksRequest) EqualMessageVT

func (this *UpdateTasksRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*UpdateTasksRequest) EqualVT

func (this *UpdateTasksRequest) EqualVT(that *UpdateTasksRequest) bool

func (*UpdateTasksRequest) GetTasksToUpdate

func (x *UpdateTasksRequest) GetTasksToUpdate() []*UpdateTasksRequest_TaskPrototype

func (*UpdateTasksRequest) MarshalToSizedBufferVT

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

func (*UpdateTasksRequest) MarshalToSizedBufferVTStrict

func (m *UpdateTasksRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*UpdateTasksRequest) MarshalToVT

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

func (*UpdateTasksRequest) MarshalToVTStrict

func (m *UpdateTasksRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*UpdateTasksRequest) MarshalVT

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

func (*UpdateTasksRequest) MarshalVTStrict

func (m *UpdateTasksRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*UpdateTasksRequest) ProtoMessage

func (*UpdateTasksRequest) ProtoMessage()

func (*UpdateTasksRequest) ProtoReflect

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

func (*UpdateTasksRequest) Reset

func (x *UpdateTasksRequest) Reset()

func (*UpdateTasksRequest) SizeVT

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

func (*UpdateTasksRequest) String

func (x *UpdateTasksRequest) String() string

func (*UpdateTasksRequest) UnmarshalVT

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

func (*UpdateTasksRequest) UnmarshalVTUnsafe

func (m *UpdateTasksRequest) UnmarshalVTUnsafe(dAtA []byte) error

func (*UpdateTasksRequest) Validate

func (m *UpdateTasksRequest) Validate() error

Validate checks the field values on UpdateTasksRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdateTasksRequest) ValidateAll

func (m *UpdateTasksRequest) ValidateAll() error

ValidateAll checks the field values on UpdateTasksRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateTasksRequestMultiError, or nil if none found.

type UpdateTasksRequestMultiError

type UpdateTasksRequestMultiError []error

UpdateTasksRequestMultiError is an error wrapping multiple validation errors returned by UpdateTasksRequest.ValidateAll() if the designated constraints aren't met.

func (UpdateTasksRequestMultiError) AllErrors

func (m UpdateTasksRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateTasksRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UpdateTasksRequestValidationError

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

UpdateTasksRequestValidationError is the validation error returned by UpdateTasksRequest.Validate if the designated constraints aren't met.

func (UpdateTasksRequestValidationError) Cause

Cause function returns cause value.

func (UpdateTasksRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateTasksRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateTasksRequestValidationError) Field

Field function returns field value.

func (UpdateTasksRequestValidationError) Key

Key function returns key value.

func (UpdateTasksRequestValidationError) Reason

Reason function returns reason value.

type UpdateTasksRequest_TaskPrototype

type UpdateTasksRequest_TaskPrototype struct {
	Id          int64                  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        *string                `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
	Description *string                `protobuf:"bytes,3,opt,name=description,proto3,oneof" json:"description,omitempty"`
	Deps        []int64                `protobuf:"varint,4,rep,packed,name=deps,proto3" json:"deps,omitempty"`
	Priority    *Priority              `protobuf:"varint,5,opt,name=priority,proto3,enum=api.v1.task_tracker.tasks.Priority,oneof" json:"priority,omitempty"`
	StartTime   *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=start_time,json=startTime,proto3,oneof" json:"start_time,omitempty"`
	FinishTime  *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=finish_time,json=finishTime,proto3,oneof" json:"finish_time,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateTasksRequest_TaskPrototype) CloneMessageVT

func (m *UpdateTasksRequest_TaskPrototype) CloneMessageVT() proto.Message

func (*UpdateTasksRequest_TaskPrototype) CloneVT

func (*UpdateTasksRequest_TaskPrototype) Descriptor deprecated

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

Deprecated: Use UpdateTasksRequest_TaskPrototype.ProtoReflect.Descriptor instead.

func (*UpdateTasksRequest_TaskPrototype) EqualMessageVT

func (this *UpdateTasksRequest_TaskPrototype) EqualMessageVT(thatMsg proto.Message) bool

func (*UpdateTasksRequest_TaskPrototype) EqualVT

func (*UpdateTasksRequest_TaskPrototype) GetDeps

func (x *UpdateTasksRequest_TaskPrototype) GetDeps() []int64

func (*UpdateTasksRequest_TaskPrototype) GetDescription

func (x *UpdateTasksRequest_TaskPrototype) GetDescription() string

func (*UpdateTasksRequest_TaskPrototype) GetFinishTime

func (*UpdateTasksRequest_TaskPrototype) GetId

func (*UpdateTasksRequest_TaskPrototype) GetName

func (*UpdateTasksRequest_TaskPrototype) GetPriority

func (x *UpdateTasksRequest_TaskPrototype) GetPriority() Priority

func (*UpdateTasksRequest_TaskPrototype) GetStartTime

func (*UpdateTasksRequest_TaskPrototype) MarshalToSizedBufferVT

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

func (*UpdateTasksRequest_TaskPrototype) MarshalToSizedBufferVTStrict

func (m *UpdateTasksRequest_TaskPrototype) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*UpdateTasksRequest_TaskPrototype) MarshalToVT

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

func (*UpdateTasksRequest_TaskPrototype) MarshalToVTStrict

func (m *UpdateTasksRequest_TaskPrototype) MarshalToVTStrict(dAtA []byte) (int, error)

func (*UpdateTasksRequest_TaskPrototype) MarshalVT

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

func (*UpdateTasksRequest_TaskPrototype) MarshalVTStrict

func (m *UpdateTasksRequest_TaskPrototype) MarshalVTStrict() (dAtA []byte, err error)

func (*UpdateTasksRequest_TaskPrototype) ProtoMessage

func (*UpdateTasksRequest_TaskPrototype) ProtoMessage()

func (*UpdateTasksRequest_TaskPrototype) ProtoReflect

func (*UpdateTasksRequest_TaskPrototype) Reset

func (*UpdateTasksRequest_TaskPrototype) SizeVT

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

func (*UpdateTasksRequest_TaskPrototype) String

func (*UpdateTasksRequest_TaskPrototype) UnmarshalVT

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

func (*UpdateTasksRequest_TaskPrototype) UnmarshalVTUnsafe

func (m *UpdateTasksRequest_TaskPrototype) UnmarshalVTUnsafe(dAtA []byte) error

func (*UpdateTasksRequest_TaskPrototype) Validate

Validate checks the field values on UpdateTasksRequest_TaskPrototype with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdateTasksRequest_TaskPrototype) ValidateAll

func (m *UpdateTasksRequest_TaskPrototype) ValidateAll() error

ValidateAll checks the field values on UpdateTasksRequest_TaskPrototype with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateTasksRequest_TaskPrototypeMultiError, or nil if none found.

type UpdateTasksRequest_TaskPrototypeMultiError

type UpdateTasksRequest_TaskPrototypeMultiError []error

UpdateTasksRequest_TaskPrototypeMultiError is an error wrapping multiple validation errors returned by UpdateTasksRequest_TaskPrototype.ValidateAll() if the designated constraints aren't met.

func (UpdateTasksRequest_TaskPrototypeMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (UpdateTasksRequest_TaskPrototypeMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UpdateTasksRequest_TaskPrototypeValidationError

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

UpdateTasksRequest_TaskPrototypeValidationError is the validation error returned by UpdateTasksRequest_TaskPrototype.Validate if the designated constraints aren't met.

func (UpdateTasksRequest_TaskPrototypeValidationError) Cause

Cause function returns cause value.

func (UpdateTasksRequest_TaskPrototypeValidationError) Error

Error satisfies the builtin error interface

func (UpdateTasksRequest_TaskPrototypeValidationError) ErrorName

ErrorName returns error name.

func (UpdateTasksRequest_TaskPrototypeValidationError) Field

Field function returns field value.

func (UpdateTasksRequest_TaskPrototypeValidationError) Key

Key function returns key value.

func (UpdateTasksRequest_TaskPrototypeValidationError) Reason

Reason function returns reason value.

type UpdateTasksResponse

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

func (*UpdateTasksResponse) CloneMessageVT

func (m *UpdateTasksResponse) CloneMessageVT() proto.Message

func (*UpdateTasksResponse) CloneVT

func (*UpdateTasksResponse) Descriptor deprecated

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

Deprecated: Use UpdateTasksResponse.ProtoReflect.Descriptor instead.

func (*UpdateTasksResponse) EqualMessageVT

func (this *UpdateTasksResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*UpdateTasksResponse) EqualVT

func (this *UpdateTasksResponse) EqualVT(that *UpdateTasksResponse) bool

func (*UpdateTasksResponse) MarshalToSizedBufferVT

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

func (*UpdateTasksResponse) MarshalToSizedBufferVTStrict

func (m *UpdateTasksResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*UpdateTasksResponse) MarshalToVT

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

func (*UpdateTasksResponse) MarshalToVTStrict

func (m *UpdateTasksResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*UpdateTasksResponse) MarshalVT

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

func (*UpdateTasksResponse) MarshalVTStrict

func (m *UpdateTasksResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*UpdateTasksResponse) ProtoMessage

func (*UpdateTasksResponse) ProtoMessage()

func (*UpdateTasksResponse) ProtoReflect

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

func (*UpdateTasksResponse) Reset

func (x *UpdateTasksResponse) Reset()

func (*UpdateTasksResponse) SizeVT

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

func (*UpdateTasksResponse) String

func (x *UpdateTasksResponse) String() string

func (*UpdateTasksResponse) UnmarshalVT

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

func (*UpdateTasksResponse) UnmarshalVTUnsafe

func (m *UpdateTasksResponse) UnmarshalVTUnsafe(dAtA []byte) error

func (*UpdateTasksResponse) Validate

func (m *UpdateTasksResponse) Validate() error

Validate checks the field values on UpdateTasksResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdateTasksResponse) ValidateAll

func (m *UpdateTasksResponse) ValidateAll() error

ValidateAll checks the field values on UpdateTasksResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateTasksResponseMultiError, or nil if none found.

type UpdateTasksResponseMultiError

type UpdateTasksResponseMultiError []error

UpdateTasksResponseMultiError is an error wrapping multiple validation errors returned by UpdateTasksResponse.ValidateAll() if the designated constraints aren't met.

func (UpdateTasksResponseMultiError) AllErrors

func (m UpdateTasksResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateTasksResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UpdateTasksResponseValidationError

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

UpdateTasksResponseValidationError is the validation error returned by UpdateTasksResponse.Validate if the designated constraints aren't met.

func (UpdateTasksResponseValidationError) Cause

Cause function returns cause value.

func (UpdateTasksResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateTasksResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateTasksResponseValidationError) Field

Field function returns field value.

func (UpdateTasksResponseValidationError) Key

Key function returns key value.

func (UpdateTasksResponseValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

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