jobs

package
v0.8.12 Latest Latest
Warning

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

Go to latest
Published: Nov 16, 2023 License: Apache-2.0 Imports: 46 Imported by: 0

Documentation

Index

Constants

View Source
const (
	JobsService_ColleaguesList_FullMethodName             = "/services.jobs.JobsService/ColleaguesList"
	JobsService_ConductListEntries_FullMethodName         = "/services.jobs.JobsService/ConductListEntries"
	JobsService_ConductCreateEntry_FullMethodName         = "/services.jobs.JobsService/ConductCreateEntry"
	JobsService_ConductUpdateEntry_FullMethodName         = "/services.jobs.JobsService/ConductUpdateEntry"
	JobsService_ConductDeleteEntry_FullMethodName         = "/services.jobs.JobsService/ConductDeleteEntry"
	JobsService_TimeclockListEntries_FullMethodName       = "/services.jobs.JobsService/TimeclockListEntries"
	JobsService_TimeclockStats_FullMethodName             = "/services.jobs.JobsService/TimeclockStats"
	JobsService_RequestsListEntries_FullMethodName        = "/services.jobs.JobsService/RequestsListEntries"
	JobsService_RequestsCreateEntry_FullMethodName        = "/services.jobs.JobsService/RequestsCreateEntry"
	JobsService_RequestsUpdateEntry_FullMethodName        = "/services.jobs.JobsService/RequestsUpdateEntry"
	JobsService_RequestsDeleteEntry_FullMethodName        = "/services.jobs.JobsService/RequestsDeleteEntry"
	JobsService_RequestsListTypes_FullMethodName          = "/services.jobs.JobsService/RequestsListTypes"
	JobsService_RequestsCreateOrUpdateType_FullMethodName = "/services.jobs.JobsService/RequestsCreateOrUpdateType"
	JobsService_RequestsDeleteType_FullMethodName         = "/services.jobs.JobsService/RequestsDeleteType"
	JobsService_RequestsListComments_FullMethodName       = "/services.jobs.JobsService/RequestsListComments"
	JobsService_RequestsPostComment_FullMethodName        = "/services.jobs.JobsService/RequestsPostComment"
	JobsService_RequestsDeleteComment_FullMethodName      = "/services.jobs.JobsService/RequestsDeleteComment"
)
View Source
const TimeclockStatsSpan = 7 * 24 * time.Hour

Variables

View Source
var (
	ErrFailedQuery = status.Error(codes.Internal, "errors.JobsService.ErrFailedQuery")
)
View Source
var File_services_jobs_jobs_proto protoreflect.FileDescriptor
View Source
var JobsService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "services.jobs.JobsService",
	HandlerType: (*JobsServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ColleaguesList",
			Handler:    _JobsService_ColleaguesList_Handler,
		},
		{
			MethodName: "ConductListEntries",
			Handler:    _JobsService_ConductListEntries_Handler,
		},
		{
			MethodName: "ConductCreateEntry",
			Handler:    _JobsService_ConductCreateEntry_Handler,
		},
		{
			MethodName: "ConductUpdateEntry",
			Handler:    _JobsService_ConductUpdateEntry_Handler,
		},
		{
			MethodName: "ConductDeleteEntry",
			Handler:    _JobsService_ConductDeleteEntry_Handler,
		},
		{
			MethodName: "TimeclockListEntries",
			Handler:    _JobsService_TimeclockListEntries_Handler,
		},
		{
			MethodName: "TimeclockStats",
			Handler:    _JobsService_TimeclockStats_Handler,
		},
		{
			MethodName: "RequestsListEntries",
			Handler:    _JobsService_RequestsListEntries_Handler,
		},
		{
			MethodName: "RequestsCreateEntry",
			Handler:    _JobsService_RequestsCreateEntry_Handler,
		},
		{
			MethodName: "RequestsUpdateEntry",
			Handler:    _JobsService_RequestsUpdateEntry_Handler,
		},
		{
			MethodName: "RequestsDeleteEntry",
			Handler:    _JobsService_RequestsDeleteEntry_Handler,
		},
		{
			MethodName: "RequestsListTypes",
			Handler:    _JobsService_RequestsListTypes_Handler,
		},
		{
			MethodName: "RequestsCreateOrUpdateType",
			Handler:    _JobsService_RequestsCreateOrUpdateType_Handler,
		},
		{
			MethodName: "RequestsDeleteType",
			Handler:    _JobsService_RequestsDeleteType_Handler,
		},
		{
			MethodName: "RequestsListComments",
			Handler:    _JobsService_RequestsListComments_Handler,
		},
		{
			MethodName: "RequestsPostComment",
			Handler:    _JobsService_RequestsPostComment_Handler,
		},
		{
			MethodName: "RequestsDeleteComment",
			Handler:    _JobsService_RequestsDeleteComment_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "services/jobs/jobs.proto",
}

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

View Source
var PermsRemap = map[string]string{

	"JobsService/RequestsListComments": "JobsService/RequestsListEntries",
	"JobsService/RequestsListTypes":    "JobsService/RequestsListEntries",
	"JobsService/RequestsPostComment":  "JobsService/RequestsCreateEntry",
	"JobsService/TimeclockStats":       "JobsService/TimeclockListEntries",
}

Functions

func RegisterJobsServiceServer

func RegisterJobsServiceServer(s grpc.ServiceRegistrar, srv JobsServiceServer)

Types

type ColleaguesListRequest added in v0.8.1

type ColleaguesListRequest struct {
	Pagination *database.PaginationRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// Search params
	SearchName string `protobuf:"bytes,2,opt,name=search_name,json=searchName,proto3" json:"search_name,omitempty"`
	// contains filtered or unexported fields
}

func (*ColleaguesListRequest) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ColleaguesListRequest.ProtoReflect.Descriptor instead.

func (*ColleaguesListRequest) GetPagination added in v0.8.1

func (x *ColleaguesListRequest) GetPagination() *database.PaginationRequest

func (*ColleaguesListRequest) GetSearchName added in v0.8.1

func (x *ColleaguesListRequest) GetSearchName() string

func (*ColleaguesListRequest) ProtoMessage added in v0.8.1

func (*ColleaguesListRequest) ProtoMessage()

func (*ColleaguesListRequest) ProtoReflect added in v0.8.1

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

func (*ColleaguesListRequest) Reset added in v0.8.1

func (x *ColleaguesListRequest) Reset()

func (*ColleaguesListRequest) String added in v0.8.1

func (x *ColleaguesListRequest) String() string

func (*ColleaguesListRequest) Validate added in v0.8.1

func (m *ColleaguesListRequest) Validate() error

Validate checks the field values on ColleaguesListRequest 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 (*ColleaguesListRequest) ValidateAll added in v0.8.1

func (m *ColleaguesListRequest) ValidateAll() error

ValidateAll checks the field values on ColleaguesListRequest 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 ColleaguesListRequestMultiError, or nil if none found.

type ColleaguesListRequestMultiError added in v0.8.1

type ColleaguesListRequestMultiError []error

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

func (ColleaguesListRequestMultiError) AllErrors added in v0.8.1

func (m ColleaguesListRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ColleaguesListRequestMultiError) Error added in v0.8.1

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

type ColleaguesListRequestValidationError added in v0.8.1

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

ColleaguesListRequestValidationError is the validation error returned by ColleaguesListRequest.Validate if the designated constraints aren't met.

func (ColleaguesListRequestValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ColleaguesListRequestValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ColleaguesListRequestValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ColleaguesListRequestValidationError) Field added in v0.8.1

Field function returns field value.

func (ColleaguesListRequestValidationError) Key added in v0.8.1

Key function returns key value.

func (ColleaguesListRequestValidationError) Reason added in v0.8.1

Reason function returns reason value.

type ColleaguesListResponse added in v0.8.1

type ColleaguesListResponse struct {
	Pagination *database.PaginationResponse `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	Users      []*users.User                `protobuf:"bytes,2,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*ColleaguesListResponse) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ColleaguesListResponse.ProtoReflect.Descriptor instead.

func (*ColleaguesListResponse) GetPagination added in v0.8.1

func (*ColleaguesListResponse) GetUsers added in v0.8.1

func (x *ColleaguesListResponse) GetUsers() []*users.User

func (*ColleaguesListResponse) ProtoMessage added in v0.8.1

func (*ColleaguesListResponse) ProtoMessage()

func (*ColleaguesListResponse) ProtoReflect added in v0.8.1

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

func (*ColleaguesListResponse) Reset added in v0.8.1

func (x *ColleaguesListResponse) Reset()

func (*ColleaguesListResponse) String added in v0.8.1

func (x *ColleaguesListResponse) String() string

func (*ColleaguesListResponse) Validate added in v0.8.1

func (m *ColleaguesListResponse) Validate() error

Validate checks the field values on ColleaguesListResponse 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 (*ColleaguesListResponse) ValidateAll added in v0.8.1

func (m *ColleaguesListResponse) ValidateAll() error

ValidateAll checks the field values on ColleaguesListResponse 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 ColleaguesListResponseMultiError, or nil if none found.

type ColleaguesListResponseMultiError added in v0.8.1

type ColleaguesListResponseMultiError []error

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

func (ColleaguesListResponseMultiError) AllErrors added in v0.8.1

func (m ColleaguesListResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ColleaguesListResponseMultiError) Error added in v0.8.1

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

type ColleaguesListResponseValidationError added in v0.8.1

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

ColleaguesListResponseValidationError is the validation error returned by ColleaguesListResponse.Validate if the designated constraints aren't met.

func (ColleaguesListResponseValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ColleaguesListResponseValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ColleaguesListResponseValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ColleaguesListResponseValidationError) Field added in v0.8.1

Field function returns field value.

func (ColleaguesListResponseValidationError) Key added in v0.8.1

Key function returns key value.

func (ColleaguesListResponseValidationError) Reason added in v0.8.1

Reason function returns reason value.

type ConductCreateEntryRequest added in v0.8.1

type ConductCreateEntryRequest struct {
	Entry *jobs.ConductEntry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*ConductCreateEntryRequest) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ConductCreateEntryRequest.ProtoReflect.Descriptor instead.

func (*ConductCreateEntryRequest) GetEntry added in v0.8.1

func (*ConductCreateEntryRequest) ProtoMessage added in v0.8.1

func (*ConductCreateEntryRequest) ProtoMessage()

func (*ConductCreateEntryRequest) ProtoReflect added in v0.8.1

func (*ConductCreateEntryRequest) Reset added in v0.8.1

func (x *ConductCreateEntryRequest) Reset()

func (*ConductCreateEntryRequest) String added in v0.8.1

func (x *ConductCreateEntryRequest) String() string

func (*ConductCreateEntryRequest) Validate added in v0.8.1

func (m *ConductCreateEntryRequest) Validate() error

Validate checks the field values on ConductCreateEntryRequest 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 (*ConductCreateEntryRequest) ValidateAll added in v0.8.1

func (m *ConductCreateEntryRequest) ValidateAll() error

ValidateAll checks the field values on ConductCreateEntryRequest 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 ConductCreateEntryRequestMultiError, or nil if none found.

type ConductCreateEntryRequestMultiError added in v0.8.1

type ConductCreateEntryRequestMultiError []error

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

func (ConductCreateEntryRequestMultiError) AllErrors added in v0.8.1

AllErrors returns a list of validation violation errors.

func (ConductCreateEntryRequestMultiError) Error added in v0.8.1

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

type ConductCreateEntryRequestValidationError added in v0.8.1

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

ConductCreateEntryRequestValidationError is the validation error returned by ConductCreateEntryRequest.Validate if the designated constraints aren't met.

func (ConductCreateEntryRequestValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ConductCreateEntryRequestValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ConductCreateEntryRequestValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ConductCreateEntryRequestValidationError) Field added in v0.8.1

Field function returns field value.

func (ConductCreateEntryRequestValidationError) Key added in v0.8.1

Key function returns key value.

func (ConductCreateEntryRequestValidationError) Reason added in v0.8.1

Reason function returns reason value.

type ConductCreateEntryResponse added in v0.8.1

type ConductCreateEntryResponse struct {
	Entry *jobs.ConductEntry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*ConductCreateEntryResponse) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ConductCreateEntryResponse.ProtoReflect.Descriptor instead.

func (*ConductCreateEntryResponse) GetEntry added in v0.8.1

func (*ConductCreateEntryResponse) ProtoMessage added in v0.8.1

func (*ConductCreateEntryResponse) ProtoMessage()

func (*ConductCreateEntryResponse) ProtoReflect added in v0.8.1

func (*ConductCreateEntryResponse) Reset added in v0.8.1

func (x *ConductCreateEntryResponse) Reset()

func (*ConductCreateEntryResponse) String added in v0.8.1

func (x *ConductCreateEntryResponse) String() string

func (*ConductCreateEntryResponse) Validate added in v0.8.1

func (m *ConductCreateEntryResponse) Validate() error

Validate checks the field values on ConductCreateEntryResponse 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 (*ConductCreateEntryResponse) ValidateAll added in v0.8.1

func (m *ConductCreateEntryResponse) ValidateAll() error

ValidateAll checks the field values on ConductCreateEntryResponse 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 ConductCreateEntryResponseMultiError, or nil if none found.

type ConductCreateEntryResponseMultiError added in v0.8.1

type ConductCreateEntryResponseMultiError []error

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

func (ConductCreateEntryResponseMultiError) AllErrors added in v0.8.1

AllErrors returns a list of validation violation errors.

func (ConductCreateEntryResponseMultiError) Error added in v0.8.1

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

type ConductCreateEntryResponseValidationError added in v0.8.1

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

ConductCreateEntryResponseValidationError is the validation error returned by ConductCreateEntryResponse.Validate if the designated constraints aren't met.

func (ConductCreateEntryResponseValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ConductCreateEntryResponseValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ConductCreateEntryResponseValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ConductCreateEntryResponseValidationError) Field added in v0.8.1

Field function returns field value.

func (ConductCreateEntryResponseValidationError) Key added in v0.8.1

Key function returns key value.

func (ConductCreateEntryResponseValidationError) Reason added in v0.8.1

Reason function returns reason value.

type ConductDeleteEntryRequest added in v0.8.1

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

func (*ConductDeleteEntryRequest) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ConductDeleteEntryRequest.ProtoReflect.Descriptor instead.

func (*ConductDeleteEntryRequest) GetId added in v0.8.1

func (x *ConductDeleteEntryRequest) GetId() uint64

func (*ConductDeleteEntryRequest) ProtoMessage added in v0.8.1

func (*ConductDeleteEntryRequest) ProtoMessage()

func (*ConductDeleteEntryRequest) ProtoReflect added in v0.8.1

func (*ConductDeleteEntryRequest) Reset added in v0.8.1

func (x *ConductDeleteEntryRequest) Reset()

func (*ConductDeleteEntryRequest) String added in v0.8.1

func (x *ConductDeleteEntryRequest) String() string

func (*ConductDeleteEntryRequest) Validate added in v0.8.1

func (m *ConductDeleteEntryRequest) Validate() error

Validate checks the field values on ConductDeleteEntryRequest 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 (*ConductDeleteEntryRequest) ValidateAll added in v0.8.1

func (m *ConductDeleteEntryRequest) ValidateAll() error

ValidateAll checks the field values on ConductDeleteEntryRequest 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 ConductDeleteEntryRequestMultiError, or nil if none found.

type ConductDeleteEntryRequestMultiError added in v0.8.1

type ConductDeleteEntryRequestMultiError []error

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

func (ConductDeleteEntryRequestMultiError) AllErrors added in v0.8.1

AllErrors returns a list of validation violation errors.

func (ConductDeleteEntryRequestMultiError) Error added in v0.8.1

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

type ConductDeleteEntryRequestValidationError added in v0.8.1

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

ConductDeleteEntryRequestValidationError is the validation error returned by ConductDeleteEntryRequest.Validate if the designated constraints aren't met.

func (ConductDeleteEntryRequestValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ConductDeleteEntryRequestValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ConductDeleteEntryRequestValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ConductDeleteEntryRequestValidationError) Field added in v0.8.1

Field function returns field value.

func (ConductDeleteEntryRequestValidationError) Key added in v0.8.1

Key function returns key value.

func (ConductDeleteEntryRequestValidationError) Reason added in v0.8.1

Reason function returns reason value.

type ConductDeleteEntryResponse added in v0.8.1

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

func (*ConductDeleteEntryResponse) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ConductDeleteEntryResponse.ProtoReflect.Descriptor instead.

func (*ConductDeleteEntryResponse) ProtoMessage added in v0.8.1

func (*ConductDeleteEntryResponse) ProtoMessage()

func (*ConductDeleteEntryResponse) ProtoReflect added in v0.8.1

func (*ConductDeleteEntryResponse) Reset added in v0.8.1

func (x *ConductDeleteEntryResponse) Reset()

func (*ConductDeleteEntryResponse) String added in v0.8.1

func (x *ConductDeleteEntryResponse) String() string

func (*ConductDeleteEntryResponse) Validate added in v0.8.1

func (m *ConductDeleteEntryResponse) Validate() error

Validate checks the field values on ConductDeleteEntryResponse 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 (*ConductDeleteEntryResponse) ValidateAll added in v0.8.1

func (m *ConductDeleteEntryResponse) ValidateAll() error

ValidateAll checks the field values on ConductDeleteEntryResponse 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 ConductDeleteEntryResponseMultiError, or nil if none found.

type ConductDeleteEntryResponseMultiError added in v0.8.1

type ConductDeleteEntryResponseMultiError []error

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

func (ConductDeleteEntryResponseMultiError) AllErrors added in v0.8.1

AllErrors returns a list of validation violation errors.

func (ConductDeleteEntryResponseMultiError) Error added in v0.8.1

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

type ConductDeleteEntryResponseValidationError added in v0.8.1

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

ConductDeleteEntryResponseValidationError is the validation error returned by ConductDeleteEntryResponse.Validate if the designated constraints aren't met.

func (ConductDeleteEntryResponseValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ConductDeleteEntryResponseValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ConductDeleteEntryResponseValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ConductDeleteEntryResponseValidationError) Field added in v0.8.1

Field function returns field value.

func (ConductDeleteEntryResponseValidationError) Key added in v0.8.1

Key function returns key value.

func (ConductDeleteEntryResponseValidationError) Reason added in v0.8.1

Reason function returns reason value.

type ConductListEntriesRequest added in v0.8.1

type ConductListEntriesRequest struct {
	Pagination *database.PaginationRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// Search params
	Types       []jobs.ConductType `protobuf:"varint,2,rep,packed,name=types,proto3,enum=resources.jobs.ConductType" json:"types,omitempty"`
	ShowExpired *bool              `protobuf:"varint,3,opt,name=show_expired,json=showExpired,proto3,oneof" json:"show_expired,omitempty"`
	UserIds     []int32            `protobuf:"varint,4,rep,packed,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ConductListEntriesRequest) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ConductListEntriesRequest.ProtoReflect.Descriptor instead.

func (*ConductListEntriesRequest) GetPagination added in v0.8.1

func (*ConductListEntriesRequest) GetShowExpired added in v0.8.1

func (x *ConductListEntriesRequest) GetShowExpired() bool

func (*ConductListEntriesRequest) GetTypes added in v0.8.1

func (x *ConductListEntriesRequest) GetTypes() []jobs.ConductType

func (*ConductListEntriesRequest) GetUserIds added in v0.8.1

func (x *ConductListEntriesRequest) GetUserIds() []int32

func (*ConductListEntriesRequest) ProtoMessage added in v0.8.1

func (*ConductListEntriesRequest) ProtoMessage()

func (*ConductListEntriesRequest) ProtoReflect added in v0.8.1

func (*ConductListEntriesRequest) Reset added in v0.8.1

func (x *ConductListEntriesRequest) Reset()

func (*ConductListEntriesRequest) String added in v0.8.1

func (x *ConductListEntriesRequest) String() string

func (*ConductListEntriesRequest) Validate added in v0.8.1

func (m *ConductListEntriesRequest) Validate() error

Validate checks the field values on ConductListEntriesRequest 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 (*ConductListEntriesRequest) ValidateAll added in v0.8.1

func (m *ConductListEntriesRequest) ValidateAll() error

ValidateAll checks the field values on ConductListEntriesRequest 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 ConductListEntriesRequestMultiError, or nil if none found.

type ConductListEntriesRequestMultiError added in v0.8.1

type ConductListEntriesRequestMultiError []error

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

func (ConductListEntriesRequestMultiError) AllErrors added in v0.8.1

AllErrors returns a list of validation violation errors.

func (ConductListEntriesRequestMultiError) Error added in v0.8.1

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

type ConductListEntriesRequestValidationError added in v0.8.1

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

ConductListEntriesRequestValidationError is the validation error returned by ConductListEntriesRequest.Validate if the designated constraints aren't met.

func (ConductListEntriesRequestValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ConductListEntriesRequestValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ConductListEntriesRequestValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ConductListEntriesRequestValidationError) Field added in v0.8.1

Field function returns field value.

func (ConductListEntriesRequestValidationError) Key added in v0.8.1

Key function returns key value.

func (ConductListEntriesRequestValidationError) Reason added in v0.8.1

Reason function returns reason value.

type ConductListEntriesResponse added in v0.8.1

type ConductListEntriesResponse struct {
	Pagination *database.PaginationResponse `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	Entries    []*jobs.ConductEntry         `protobuf:"bytes,2,rep,name=entries,proto3" json:"entries,omitempty"`
	// contains filtered or unexported fields
}

func (*ConductListEntriesResponse) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ConductListEntriesResponse.ProtoReflect.Descriptor instead.

func (*ConductListEntriesResponse) GetEntries added in v0.8.1

func (x *ConductListEntriesResponse) GetEntries() []*jobs.ConductEntry

func (*ConductListEntriesResponse) GetPagination added in v0.8.1

func (*ConductListEntriesResponse) ProtoMessage added in v0.8.1

func (*ConductListEntriesResponse) ProtoMessage()

func (*ConductListEntriesResponse) ProtoReflect added in v0.8.1

func (*ConductListEntriesResponse) Reset added in v0.8.1

func (x *ConductListEntriesResponse) Reset()

func (*ConductListEntriesResponse) String added in v0.8.1

func (x *ConductListEntriesResponse) String() string

func (*ConductListEntriesResponse) Validate added in v0.8.1

func (m *ConductListEntriesResponse) Validate() error

Validate checks the field values on ConductListEntriesResponse 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 (*ConductListEntriesResponse) ValidateAll added in v0.8.1

func (m *ConductListEntriesResponse) ValidateAll() error

ValidateAll checks the field values on ConductListEntriesResponse 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 ConductListEntriesResponseMultiError, or nil if none found.

type ConductListEntriesResponseMultiError added in v0.8.1

type ConductListEntriesResponseMultiError []error

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

func (ConductListEntriesResponseMultiError) AllErrors added in v0.8.1

AllErrors returns a list of validation violation errors.

func (ConductListEntriesResponseMultiError) Error added in v0.8.1

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

type ConductListEntriesResponseValidationError added in v0.8.1

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

ConductListEntriesResponseValidationError is the validation error returned by ConductListEntriesResponse.Validate if the designated constraints aren't met.

func (ConductListEntriesResponseValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ConductListEntriesResponseValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ConductListEntriesResponseValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ConductListEntriesResponseValidationError) Field added in v0.8.1

Field function returns field value.

func (ConductListEntriesResponseValidationError) Key added in v0.8.1

Key function returns key value.

func (ConductListEntriesResponseValidationError) Reason added in v0.8.1

Reason function returns reason value.

type ConductUpdateEntryRequest added in v0.8.1

type ConductUpdateEntryRequest struct {
	Entry *jobs.ConductEntry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*ConductUpdateEntryRequest) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ConductUpdateEntryRequest.ProtoReflect.Descriptor instead.

func (*ConductUpdateEntryRequest) GetEntry added in v0.8.1

func (*ConductUpdateEntryRequest) ProtoMessage added in v0.8.1

func (*ConductUpdateEntryRequest) ProtoMessage()

func (*ConductUpdateEntryRequest) ProtoReflect added in v0.8.1

func (*ConductUpdateEntryRequest) Reset added in v0.8.1

func (x *ConductUpdateEntryRequest) Reset()

func (*ConductUpdateEntryRequest) String added in v0.8.1

func (x *ConductUpdateEntryRequest) String() string

func (*ConductUpdateEntryRequest) Validate added in v0.8.1

func (m *ConductUpdateEntryRequest) Validate() error

Validate checks the field values on ConductUpdateEntryRequest 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 (*ConductUpdateEntryRequest) ValidateAll added in v0.8.1

func (m *ConductUpdateEntryRequest) ValidateAll() error

ValidateAll checks the field values on ConductUpdateEntryRequest 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 ConductUpdateEntryRequestMultiError, or nil if none found.

type ConductUpdateEntryRequestMultiError added in v0.8.1

type ConductUpdateEntryRequestMultiError []error

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

func (ConductUpdateEntryRequestMultiError) AllErrors added in v0.8.1

AllErrors returns a list of validation violation errors.

func (ConductUpdateEntryRequestMultiError) Error added in v0.8.1

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

type ConductUpdateEntryRequestValidationError added in v0.8.1

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

ConductUpdateEntryRequestValidationError is the validation error returned by ConductUpdateEntryRequest.Validate if the designated constraints aren't met.

func (ConductUpdateEntryRequestValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ConductUpdateEntryRequestValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ConductUpdateEntryRequestValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ConductUpdateEntryRequestValidationError) Field added in v0.8.1

Field function returns field value.

func (ConductUpdateEntryRequestValidationError) Key added in v0.8.1

Key function returns key value.

func (ConductUpdateEntryRequestValidationError) Reason added in v0.8.1

Reason function returns reason value.

type ConductUpdateEntryResponse added in v0.8.1

type ConductUpdateEntryResponse struct {
	Entry *jobs.ConductEntry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*ConductUpdateEntryResponse) Descriptor deprecated added in v0.8.1

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

Deprecated: Use ConductUpdateEntryResponse.ProtoReflect.Descriptor instead.

func (*ConductUpdateEntryResponse) GetEntry added in v0.8.1

func (*ConductUpdateEntryResponse) ProtoMessage added in v0.8.1

func (*ConductUpdateEntryResponse) ProtoMessage()

func (*ConductUpdateEntryResponse) ProtoReflect added in v0.8.1

func (*ConductUpdateEntryResponse) Reset added in v0.8.1

func (x *ConductUpdateEntryResponse) Reset()

func (*ConductUpdateEntryResponse) String added in v0.8.1

func (x *ConductUpdateEntryResponse) String() string

func (*ConductUpdateEntryResponse) Validate added in v0.8.1

func (m *ConductUpdateEntryResponse) Validate() error

Validate checks the field values on ConductUpdateEntryResponse 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 (*ConductUpdateEntryResponse) ValidateAll added in v0.8.1

func (m *ConductUpdateEntryResponse) ValidateAll() error

ValidateAll checks the field values on ConductUpdateEntryResponse 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 ConductUpdateEntryResponseMultiError, or nil if none found.

type ConductUpdateEntryResponseMultiError added in v0.8.1

type ConductUpdateEntryResponseMultiError []error

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

func (ConductUpdateEntryResponseMultiError) AllErrors added in v0.8.1

AllErrors returns a list of validation violation errors.

func (ConductUpdateEntryResponseMultiError) Error added in v0.8.1

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

type ConductUpdateEntryResponseValidationError added in v0.8.1

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

ConductUpdateEntryResponseValidationError is the validation error returned by ConductUpdateEntryResponse.Validate if the designated constraints aren't met.

func (ConductUpdateEntryResponseValidationError) Cause added in v0.8.1

Cause function returns cause value.

func (ConductUpdateEntryResponseValidationError) Error added in v0.8.1

Error satisfies the builtin error interface

func (ConductUpdateEntryResponseValidationError) ErrorName added in v0.8.1

ErrorName returns error name.

func (ConductUpdateEntryResponseValidationError) Field added in v0.8.1

Field function returns field value.

func (ConductUpdateEntryResponseValidationError) Key added in v0.8.1

Key function returns key value.

func (ConductUpdateEntryResponseValidationError) Reason added in v0.8.1

Reason function returns reason value.

type JobsServiceClient

type JobsServiceClient interface {
	// @perm
	ColleaguesList(ctx context.Context, in *ColleaguesListRequest, opts ...grpc.CallOption) (*ColleaguesListResponse, error)
	// @perm: Attrs=Access/StringList:[]string{"Own", "All"}§[]string{"Own"}
	ConductListEntries(ctx context.Context, in *ConductListEntriesRequest, opts ...grpc.CallOption) (*ConductListEntriesResponse, error)
	// @perm
	ConductCreateEntry(ctx context.Context, in *ConductCreateEntryRequest, opts ...grpc.CallOption) (*ConductCreateEntryResponse, error)
	// @perm
	ConductUpdateEntry(ctx context.Context, in *ConductUpdateEntryRequest, opts ...grpc.CallOption) (*ConductUpdateEntryResponse, error)
	// @perm
	ConductDeleteEntry(ctx context.Context, in *ConductDeleteEntryRequest, opts ...grpc.CallOption) (*ConductDeleteEntryResponse, error)
	// @perm: Attrs=Access/StringList:[]string{"All"}§[]string{}
	TimeclockListEntries(ctx context.Context, in *TimeclockListEntriesRequest, opts ...grpc.CallOption) (*TimeclockListEntriesResponse, error)
	// @perm: Name=TimeclockListEntries
	TimeclockStats(ctx context.Context, in *TimeclockStatsRequest, opts ...grpc.CallOption) (*TimeclockStatsResponse, error)
	// @perm: Attrs=Access/StringList:[]string{"Own", "All"}§[]string{"Own"}
	RequestsListEntries(ctx context.Context, in *RequestsListEntriesRequest, opts ...grpc.CallOption) (*RequestsListEntriesResponse, error)
	// @perm
	RequestsCreateEntry(ctx context.Context, in *RequestsCreateEntryRequest, opts ...grpc.CallOption) (*RequestsCreateEntryResponse, error)
	// @perm
	RequestsUpdateEntry(ctx context.Context, in *RequestsUpdateEntryRequest, opts ...grpc.CallOption) (*RequestsUpdateEntryResponse, error)
	// @perm
	RequestsDeleteEntry(ctx context.Context, in *RequestsDeleteEntryRequest, opts ...grpc.CallOption) (*RequestsDeleteEntryResponse, error)
	// @perm: Name=RequestsListEntries
	RequestsListTypes(ctx context.Context, in *RequestsListTypesRequest, opts ...grpc.CallOption) (*RequestsListTypesResponse, error)
	// @perm
	RequestsCreateOrUpdateType(ctx context.Context, in *RequestsCreateOrUpdateTypeRequest, opts ...grpc.CallOption) (*RequestsCreateOrUpdateTypeResponse, error)
	// @perm
	RequestsDeleteType(ctx context.Context, in *RequestsDeleteTypeRequest, opts ...grpc.CallOption) (*RequestsDeleteTypeResponse, error)
	// @perm: Name=RequestsListEntries
	RequestsListComments(ctx context.Context, in *RequestsListCommentsRequest, opts ...grpc.CallOption) (*RequestsListCommentsResponse, error)
	// @perm: Name=RequestsCreateEntry
	RequestsPostComment(ctx context.Context, in *RequestsPostCommentRequest, opts ...grpc.CallOption) (*RequestsPostCommentResponse, error)
	// @perm
	RequestsDeleteComment(ctx context.Context, in *RequestsDeleteCommentRequest, opts ...grpc.CallOption) (*RequestsDeleteCommentResponse, error)
}

JobsServiceClient is the client API for JobsService 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 JobsServiceServer

type JobsServiceServer interface {
	// @perm
	ColleaguesList(context.Context, *ColleaguesListRequest) (*ColleaguesListResponse, error)
	// @perm: Attrs=Access/StringList:[]string{"Own", "All"}§[]string{"Own"}
	ConductListEntries(context.Context, *ConductListEntriesRequest) (*ConductListEntriesResponse, error)
	// @perm
	ConductCreateEntry(context.Context, *ConductCreateEntryRequest) (*ConductCreateEntryResponse, error)
	// @perm
	ConductUpdateEntry(context.Context, *ConductUpdateEntryRequest) (*ConductUpdateEntryResponse, error)
	// @perm
	ConductDeleteEntry(context.Context, *ConductDeleteEntryRequest) (*ConductDeleteEntryResponse, error)
	// @perm: Attrs=Access/StringList:[]string{"All"}§[]string{}
	TimeclockListEntries(context.Context, *TimeclockListEntriesRequest) (*TimeclockListEntriesResponse, error)
	// @perm: Name=TimeclockListEntries
	TimeclockStats(context.Context, *TimeclockStatsRequest) (*TimeclockStatsResponse, error)
	// @perm: Attrs=Access/StringList:[]string{"Own", "All"}§[]string{"Own"}
	RequestsListEntries(context.Context, *RequestsListEntriesRequest) (*RequestsListEntriesResponse, error)
	// @perm
	RequestsCreateEntry(context.Context, *RequestsCreateEntryRequest) (*RequestsCreateEntryResponse, error)
	// @perm
	RequestsUpdateEntry(context.Context, *RequestsUpdateEntryRequest) (*RequestsUpdateEntryResponse, error)
	// @perm
	RequestsDeleteEntry(context.Context, *RequestsDeleteEntryRequest) (*RequestsDeleteEntryResponse, error)
	// @perm: Name=RequestsListEntries
	RequestsListTypes(context.Context, *RequestsListTypesRequest) (*RequestsListTypesResponse, error)
	// @perm
	RequestsCreateOrUpdateType(context.Context, *RequestsCreateOrUpdateTypeRequest) (*RequestsCreateOrUpdateTypeResponse, error)
	// @perm
	RequestsDeleteType(context.Context, *RequestsDeleteTypeRequest) (*RequestsDeleteTypeResponse, error)
	// @perm: Name=RequestsListEntries
	RequestsListComments(context.Context, *RequestsListCommentsRequest) (*RequestsListCommentsResponse, error)
	// @perm: Name=RequestsCreateEntry
	RequestsPostComment(context.Context, *RequestsPostCommentRequest) (*RequestsPostCommentResponse, error)
	// @perm
	RequestsDeleteComment(context.Context, *RequestsDeleteCommentRequest) (*RequestsDeleteCommentResponse, error)
	// contains filtered or unexported methods
}

JobsServiceServer is the server API for JobsService service. All implementations must embed UnimplementedJobsServiceServer for forward compatibility

type Params added in v0.8.4

type Params struct {
	fx.In

	LC fx.Lifecycle

	Logger   *zap.Logger
	TP       *tracesdk.TracerProvider
	DB       *sql.DB
	Perms    perms.Permissions
	Enricher *mstlystcdata.Enricher
	Audit    audit.IAuditer
	Tracker  *tracker.Tracker
}

type RequestsApproveEntryRequest added in v0.8.11

type RequestsApproveEntryRequest struct {
	Id      uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Approve bool   `protobuf:"varint,2,opt,name=approve,proto3" json:"approve,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsApproveEntryRequest) Descriptor deprecated added in v0.8.11

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

Deprecated: Use RequestsApproveEntryRequest.ProtoReflect.Descriptor instead.

func (*RequestsApproveEntryRequest) GetApprove added in v0.8.11

func (x *RequestsApproveEntryRequest) GetApprove() bool

func (*RequestsApproveEntryRequest) GetId added in v0.8.11

func (*RequestsApproveEntryRequest) ProtoMessage added in v0.8.11

func (*RequestsApproveEntryRequest) ProtoMessage()

func (*RequestsApproveEntryRequest) ProtoReflect added in v0.8.11

func (*RequestsApproveEntryRequest) Reset added in v0.8.11

func (x *RequestsApproveEntryRequest) Reset()

func (*RequestsApproveEntryRequest) String added in v0.8.11

func (x *RequestsApproveEntryRequest) String() string

func (*RequestsApproveEntryRequest) Validate added in v0.8.11

func (m *RequestsApproveEntryRequest) Validate() error

Validate checks the field values on RequestsApproveEntryRequest 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 (*RequestsApproveEntryRequest) ValidateAll added in v0.8.11

func (m *RequestsApproveEntryRequest) ValidateAll() error

ValidateAll checks the field values on RequestsApproveEntryRequest 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 RequestsApproveEntryRequestMultiError, or nil if none found.

type RequestsApproveEntryRequestMultiError added in v0.8.11

type RequestsApproveEntryRequestMultiError []error

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

func (RequestsApproveEntryRequestMultiError) AllErrors added in v0.8.11

AllErrors returns a list of validation violation errors.

func (RequestsApproveEntryRequestMultiError) Error added in v0.8.11

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

type RequestsApproveEntryRequestValidationError added in v0.8.11

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

RequestsApproveEntryRequestValidationError is the validation error returned by RequestsApproveEntryRequest.Validate if the designated constraints aren't met.

func (RequestsApproveEntryRequestValidationError) Cause added in v0.8.11

Cause function returns cause value.

func (RequestsApproveEntryRequestValidationError) Error added in v0.8.11

Error satisfies the builtin error interface

func (RequestsApproveEntryRequestValidationError) ErrorName added in v0.8.11

ErrorName returns error name.

func (RequestsApproveEntryRequestValidationError) Field added in v0.8.11

Field function returns field value.

func (RequestsApproveEntryRequestValidationError) Key added in v0.8.11

Key function returns key value.

func (RequestsApproveEntryRequestValidationError) Reason added in v0.8.11

Reason function returns reason value.

type RequestsApproveEntryResponse added in v0.8.11

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

func (*RequestsApproveEntryResponse) Descriptor deprecated added in v0.8.11

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

Deprecated: Use RequestsApproveEntryResponse.ProtoReflect.Descriptor instead.

func (*RequestsApproveEntryResponse) ProtoMessage added in v0.8.11

func (*RequestsApproveEntryResponse) ProtoMessage()

func (*RequestsApproveEntryResponse) ProtoReflect added in v0.8.11

func (*RequestsApproveEntryResponse) Reset added in v0.8.11

func (x *RequestsApproveEntryResponse) Reset()

func (*RequestsApproveEntryResponse) String added in v0.8.11

func (*RequestsApproveEntryResponse) Validate added in v0.8.11

func (m *RequestsApproveEntryResponse) Validate() error

Validate checks the field values on RequestsApproveEntryResponse 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 (*RequestsApproveEntryResponse) ValidateAll added in v0.8.11

func (m *RequestsApproveEntryResponse) ValidateAll() error

ValidateAll checks the field values on RequestsApproveEntryResponse 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 RequestsApproveEntryResponseMultiError, or nil if none found.

type RequestsApproveEntryResponseMultiError added in v0.8.11

type RequestsApproveEntryResponseMultiError []error

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

func (RequestsApproveEntryResponseMultiError) AllErrors added in v0.8.11

AllErrors returns a list of validation violation errors.

func (RequestsApproveEntryResponseMultiError) Error added in v0.8.11

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

type RequestsApproveEntryResponseValidationError added in v0.8.11

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

RequestsApproveEntryResponseValidationError is the validation error returned by RequestsApproveEntryResponse.Validate if the designated constraints aren't met.

func (RequestsApproveEntryResponseValidationError) Cause added in v0.8.11

Cause function returns cause value.

func (RequestsApproveEntryResponseValidationError) Error added in v0.8.11

Error satisfies the builtin error interface

func (RequestsApproveEntryResponseValidationError) ErrorName added in v0.8.11

ErrorName returns error name.

func (RequestsApproveEntryResponseValidationError) Field added in v0.8.11

Field function returns field value.

func (RequestsApproveEntryResponseValidationError) Key added in v0.8.11

Key function returns key value.

func (RequestsApproveEntryResponseValidationError) Reason added in v0.8.11

Reason function returns reason value.

type RequestsCloseEntryRequest added in v0.8.11

type RequestsCloseEntryRequest struct {
	Id    uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Close bool   `protobuf:"varint,2,opt,name=close,proto3" json:"close,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsCloseEntryRequest) Descriptor deprecated added in v0.8.11

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

Deprecated: Use RequestsCloseEntryRequest.ProtoReflect.Descriptor instead.

func (*RequestsCloseEntryRequest) GetClose added in v0.8.11

func (x *RequestsCloseEntryRequest) GetClose() bool

func (*RequestsCloseEntryRequest) GetId added in v0.8.11

func (x *RequestsCloseEntryRequest) GetId() uint64

func (*RequestsCloseEntryRequest) ProtoMessage added in v0.8.11

func (*RequestsCloseEntryRequest) ProtoMessage()

func (*RequestsCloseEntryRequest) ProtoReflect added in v0.8.11

func (*RequestsCloseEntryRequest) Reset added in v0.8.11

func (x *RequestsCloseEntryRequest) Reset()

func (*RequestsCloseEntryRequest) String added in v0.8.11

func (x *RequestsCloseEntryRequest) String() string

func (*RequestsCloseEntryRequest) Validate added in v0.8.11

func (m *RequestsCloseEntryRequest) Validate() error

Validate checks the field values on RequestsCloseEntryRequest 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 (*RequestsCloseEntryRequest) ValidateAll added in v0.8.11

func (m *RequestsCloseEntryRequest) ValidateAll() error

ValidateAll checks the field values on RequestsCloseEntryRequest 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 RequestsCloseEntryRequestMultiError, or nil if none found.

type RequestsCloseEntryRequestMultiError added in v0.8.11

type RequestsCloseEntryRequestMultiError []error

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

func (RequestsCloseEntryRequestMultiError) AllErrors added in v0.8.11

AllErrors returns a list of validation violation errors.

func (RequestsCloseEntryRequestMultiError) Error added in v0.8.11

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

type RequestsCloseEntryRequestValidationError added in v0.8.11

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

RequestsCloseEntryRequestValidationError is the validation error returned by RequestsCloseEntryRequest.Validate if the designated constraints aren't met.

func (RequestsCloseEntryRequestValidationError) Cause added in v0.8.11

Cause function returns cause value.

func (RequestsCloseEntryRequestValidationError) Error added in v0.8.11

Error satisfies the builtin error interface

func (RequestsCloseEntryRequestValidationError) ErrorName added in v0.8.11

ErrorName returns error name.

func (RequestsCloseEntryRequestValidationError) Field added in v0.8.11

Field function returns field value.

func (RequestsCloseEntryRequestValidationError) Key added in v0.8.11

Key function returns key value.

func (RequestsCloseEntryRequestValidationError) Reason added in v0.8.11

Reason function returns reason value.

type RequestsCloseEntryResponse added in v0.8.11

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

func (*RequestsCloseEntryResponse) Descriptor deprecated added in v0.8.11

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

Deprecated: Use RequestsCloseEntryResponse.ProtoReflect.Descriptor instead.

func (*RequestsCloseEntryResponse) ProtoMessage added in v0.8.11

func (*RequestsCloseEntryResponse) ProtoMessage()

func (*RequestsCloseEntryResponse) ProtoReflect added in v0.8.11

func (*RequestsCloseEntryResponse) Reset added in v0.8.11

func (x *RequestsCloseEntryResponse) Reset()

func (*RequestsCloseEntryResponse) String added in v0.8.11

func (x *RequestsCloseEntryResponse) String() string

func (*RequestsCloseEntryResponse) Validate added in v0.8.11

func (m *RequestsCloseEntryResponse) Validate() error

Validate checks the field values on RequestsCloseEntryResponse 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 (*RequestsCloseEntryResponse) ValidateAll added in v0.8.11

func (m *RequestsCloseEntryResponse) ValidateAll() error

ValidateAll checks the field values on RequestsCloseEntryResponse 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 RequestsCloseEntryResponseMultiError, or nil if none found.

type RequestsCloseEntryResponseMultiError added in v0.8.11

type RequestsCloseEntryResponseMultiError []error

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

func (RequestsCloseEntryResponseMultiError) AllErrors added in v0.8.11

AllErrors returns a list of validation violation errors.

func (RequestsCloseEntryResponseMultiError) Error added in v0.8.11

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

type RequestsCloseEntryResponseValidationError added in v0.8.11

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

RequestsCloseEntryResponseValidationError is the validation error returned by RequestsCloseEntryResponse.Validate if the designated constraints aren't met.

func (RequestsCloseEntryResponseValidationError) Cause added in v0.8.11

Cause function returns cause value.

func (RequestsCloseEntryResponseValidationError) Error added in v0.8.11

Error satisfies the builtin error interface

func (RequestsCloseEntryResponseValidationError) ErrorName added in v0.8.11

ErrorName returns error name.

func (RequestsCloseEntryResponseValidationError) Field added in v0.8.11

Field function returns field value.

func (RequestsCloseEntryResponseValidationError) Key added in v0.8.11

Key function returns key value.

func (RequestsCloseEntryResponseValidationError) Reason added in v0.8.11

Reason function returns reason value.

type RequestsCreateEntryRequest added in v0.8.6

type RequestsCreateEntryRequest struct {
	Entry *jobs.Request `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsCreateEntryRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsCreateEntryRequest.ProtoReflect.Descriptor instead.

func (*RequestsCreateEntryRequest) GetEntry added in v0.8.6

func (x *RequestsCreateEntryRequest) GetEntry() *jobs.Request

func (*RequestsCreateEntryRequest) ProtoMessage added in v0.8.6

func (*RequestsCreateEntryRequest) ProtoMessage()

func (*RequestsCreateEntryRequest) ProtoReflect added in v0.8.6

func (*RequestsCreateEntryRequest) Reset added in v0.8.6

func (x *RequestsCreateEntryRequest) Reset()

func (*RequestsCreateEntryRequest) String added in v0.8.6

func (x *RequestsCreateEntryRequest) String() string

func (*RequestsCreateEntryRequest) Validate added in v0.8.6

func (m *RequestsCreateEntryRequest) Validate() error

Validate checks the field values on RequestsCreateEntryRequest 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 (*RequestsCreateEntryRequest) ValidateAll added in v0.8.6

func (m *RequestsCreateEntryRequest) ValidateAll() error

ValidateAll checks the field values on RequestsCreateEntryRequest 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 RequestsCreateEntryRequestMultiError, or nil if none found.

type RequestsCreateEntryRequestMultiError added in v0.8.6

type RequestsCreateEntryRequestMultiError []error

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

func (RequestsCreateEntryRequestMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsCreateEntryRequestMultiError) Error added in v0.8.6

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

type RequestsCreateEntryRequestValidationError added in v0.8.6

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

RequestsCreateEntryRequestValidationError is the validation error returned by RequestsCreateEntryRequest.Validate if the designated constraints aren't met.

func (RequestsCreateEntryRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsCreateEntryRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsCreateEntryRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsCreateEntryRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsCreateEntryRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsCreateEntryRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsCreateEntryResponse added in v0.8.6

type RequestsCreateEntryResponse struct {
	Entry *jobs.Request `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsCreateEntryResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsCreateEntryResponse.ProtoReflect.Descriptor instead.

func (*RequestsCreateEntryResponse) GetEntry added in v0.8.6

func (x *RequestsCreateEntryResponse) GetEntry() *jobs.Request

func (*RequestsCreateEntryResponse) ProtoMessage added in v0.8.6

func (*RequestsCreateEntryResponse) ProtoMessage()

func (*RequestsCreateEntryResponse) ProtoReflect added in v0.8.6

func (*RequestsCreateEntryResponse) Reset added in v0.8.6

func (x *RequestsCreateEntryResponse) Reset()

func (*RequestsCreateEntryResponse) String added in v0.8.6

func (x *RequestsCreateEntryResponse) String() string

func (*RequestsCreateEntryResponse) Validate added in v0.8.6

func (m *RequestsCreateEntryResponse) Validate() error

Validate checks the field values on RequestsCreateEntryResponse 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 (*RequestsCreateEntryResponse) ValidateAll added in v0.8.6

func (m *RequestsCreateEntryResponse) ValidateAll() error

ValidateAll checks the field values on RequestsCreateEntryResponse 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 RequestsCreateEntryResponseMultiError, or nil if none found.

type RequestsCreateEntryResponseMultiError added in v0.8.6

type RequestsCreateEntryResponseMultiError []error

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

func (RequestsCreateEntryResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsCreateEntryResponseMultiError) Error added in v0.8.6

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

type RequestsCreateEntryResponseValidationError added in v0.8.6

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

RequestsCreateEntryResponseValidationError is the validation error returned by RequestsCreateEntryResponse.Validate if the designated constraints aren't met.

func (RequestsCreateEntryResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsCreateEntryResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsCreateEntryResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsCreateEntryResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsCreateEntryResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsCreateEntryResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsCreateOrUpdateTypeRequest added in v0.8.6

type RequestsCreateOrUpdateTypeRequest struct {
	RequestType *jobs.RequestType `protobuf:"bytes,1,opt,name=request_type,json=requestType,proto3" json:"request_type,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsCreateOrUpdateTypeRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsCreateOrUpdateTypeRequest.ProtoReflect.Descriptor instead.

func (*RequestsCreateOrUpdateTypeRequest) GetRequestType added in v0.8.6

func (x *RequestsCreateOrUpdateTypeRequest) GetRequestType() *jobs.RequestType

func (*RequestsCreateOrUpdateTypeRequest) ProtoMessage added in v0.8.6

func (*RequestsCreateOrUpdateTypeRequest) ProtoMessage()

func (*RequestsCreateOrUpdateTypeRequest) ProtoReflect added in v0.8.6

func (*RequestsCreateOrUpdateTypeRequest) Reset added in v0.8.6

func (*RequestsCreateOrUpdateTypeRequest) String added in v0.8.6

func (*RequestsCreateOrUpdateTypeRequest) Validate added in v0.8.6

Validate checks the field values on RequestsCreateOrUpdateTypeRequest 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 (*RequestsCreateOrUpdateTypeRequest) ValidateAll added in v0.8.6

func (m *RequestsCreateOrUpdateTypeRequest) ValidateAll() error

ValidateAll checks the field values on RequestsCreateOrUpdateTypeRequest 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 RequestsCreateOrUpdateTypeRequestMultiError, or nil if none found.

type RequestsCreateOrUpdateTypeRequestMultiError added in v0.8.6

type RequestsCreateOrUpdateTypeRequestMultiError []error

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

func (RequestsCreateOrUpdateTypeRequestMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsCreateOrUpdateTypeRequestMultiError) Error added in v0.8.6

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

type RequestsCreateOrUpdateTypeRequestValidationError added in v0.8.6

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

RequestsCreateOrUpdateTypeRequestValidationError is the validation error returned by RequestsCreateOrUpdateTypeRequest.Validate if the designated constraints aren't met.

func (RequestsCreateOrUpdateTypeRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsCreateOrUpdateTypeRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsCreateOrUpdateTypeRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsCreateOrUpdateTypeRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsCreateOrUpdateTypeRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsCreateOrUpdateTypeRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsCreateOrUpdateTypeResponse added in v0.8.6

type RequestsCreateOrUpdateTypeResponse struct {
	RequestType *jobs.RequestType `protobuf:"bytes,1,opt,name=request_type,json=requestType,proto3" json:"request_type,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsCreateOrUpdateTypeResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsCreateOrUpdateTypeResponse.ProtoReflect.Descriptor instead.

func (*RequestsCreateOrUpdateTypeResponse) GetRequestType added in v0.8.6

func (*RequestsCreateOrUpdateTypeResponse) ProtoMessage added in v0.8.6

func (*RequestsCreateOrUpdateTypeResponse) ProtoMessage()

func (*RequestsCreateOrUpdateTypeResponse) ProtoReflect added in v0.8.6

func (*RequestsCreateOrUpdateTypeResponse) Reset added in v0.8.6

func (*RequestsCreateOrUpdateTypeResponse) String added in v0.8.6

func (*RequestsCreateOrUpdateTypeResponse) Validate added in v0.8.6

Validate checks the field values on RequestsCreateOrUpdateTypeResponse 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 (*RequestsCreateOrUpdateTypeResponse) ValidateAll added in v0.8.6

func (m *RequestsCreateOrUpdateTypeResponse) ValidateAll() error

ValidateAll checks the field values on RequestsCreateOrUpdateTypeResponse 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 RequestsCreateOrUpdateTypeResponseMultiError, or nil if none found.

type RequestsCreateOrUpdateTypeResponseMultiError added in v0.8.6

type RequestsCreateOrUpdateTypeResponseMultiError []error

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

func (RequestsCreateOrUpdateTypeResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsCreateOrUpdateTypeResponseMultiError) Error added in v0.8.6

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

type RequestsCreateOrUpdateTypeResponseValidationError added in v0.8.6

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

RequestsCreateOrUpdateTypeResponseValidationError is the validation error returned by RequestsCreateOrUpdateTypeResponse.Validate if the designated constraints aren't met.

func (RequestsCreateOrUpdateTypeResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsCreateOrUpdateTypeResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsCreateOrUpdateTypeResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsCreateOrUpdateTypeResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsCreateOrUpdateTypeResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsCreateOrUpdateTypeResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsDeleteCommentRequest added in v0.8.6

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

func (*RequestsDeleteCommentRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsDeleteCommentRequest.ProtoReflect.Descriptor instead.

func (*RequestsDeleteCommentRequest) GetId added in v0.8.6

func (*RequestsDeleteCommentRequest) ProtoMessage added in v0.8.6

func (*RequestsDeleteCommentRequest) ProtoMessage()

func (*RequestsDeleteCommentRequest) ProtoReflect added in v0.8.6

func (*RequestsDeleteCommentRequest) Reset added in v0.8.6

func (x *RequestsDeleteCommentRequest) Reset()

func (*RequestsDeleteCommentRequest) String added in v0.8.6

func (*RequestsDeleteCommentRequest) Validate added in v0.8.6

func (m *RequestsDeleteCommentRequest) Validate() error

Validate checks the field values on RequestsDeleteCommentRequest 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 (*RequestsDeleteCommentRequest) ValidateAll added in v0.8.6

func (m *RequestsDeleteCommentRequest) ValidateAll() error

ValidateAll checks the field values on RequestsDeleteCommentRequest 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 RequestsDeleteCommentRequestMultiError, or nil if none found.

type RequestsDeleteCommentRequestMultiError added in v0.8.6

type RequestsDeleteCommentRequestMultiError []error

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

func (RequestsDeleteCommentRequestMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsDeleteCommentRequestMultiError) Error added in v0.8.6

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

type RequestsDeleteCommentRequestValidationError added in v0.8.6

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

RequestsDeleteCommentRequestValidationError is the validation error returned by RequestsDeleteCommentRequest.Validate if the designated constraints aren't met.

func (RequestsDeleteCommentRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsDeleteCommentRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsDeleteCommentRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsDeleteCommentRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsDeleteCommentRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsDeleteCommentRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsDeleteCommentResponse added in v0.8.6

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

func (*RequestsDeleteCommentResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsDeleteCommentResponse.ProtoReflect.Descriptor instead.

func (*RequestsDeleteCommentResponse) ProtoMessage added in v0.8.6

func (*RequestsDeleteCommentResponse) ProtoMessage()

func (*RequestsDeleteCommentResponse) ProtoReflect added in v0.8.6

func (*RequestsDeleteCommentResponse) Reset added in v0.8.6

func (x *RequestsDeleteCommentResponse) Reset()

func (*RequestsDeleteCommentResponse) String added in v0.8.6

func (*RequestsDeleteCommentResponse) Validate added in v0.8.6

func (m *RequestsDeleteCommentResponse) Validate() error

Validate checks the field values on RequestsDeleteCommentResponse 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 (*RequestsDeleteCommentResponse) ValidateAll added in v0.8.6

func (m *RequestsDeleteCommentResponse) ValidateAll() error

ValidateAll checks the field values on RequestsDeleteCommentResponse 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 RequestsDeleteCommentResponseMultiError, or nil if none found.

type RequestsDeleteCommentResponseMultiError added in v0.8.6

type RequestsDeleteCommentResponseMultiError []error

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

func (RequestsDeleteCommentResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsDeleteCommentResponseMultiError) Error added in v0.8.6

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

type RequestsDeleteCommentResponseValidationError added in v0.8.6

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

RequestsDeleteCommentResponseValidationError is the validation error returned by RequestsDeleteCommentResponse.Validate if the designated constraints aren't met.

func (RequestsDeleteCommentResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsDeleteCommentResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsDeleteCommentResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsDeleteCommentResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsDeleteCommentResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsDeleteCommentResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsDeleteEntryRequest added in v0.8.6

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

func (*RequestsDeleteEntryRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsDeleteEntryRequest.ProtoReflect.Descriptor instead.

func (*RequestsDeleteEntryRequest) GetId added in v0.8.6

func (*RequestsDeleteEntryRequest) ProtoMessage added in v0.8.6

func (*RequestsDeleteEntryRequest) ProtoMessage()

func (*RequestsDeleteEntryRequest) ProtoReflect added in v0.8.6

func (*RequestsDeleteEntryRequest) Reset added in v0.8.6

func (x *RequestsDeleteEntryRequest) Reset()

func (*RequestsDeleteEntryRequest) String added in v0.8.6

func (x *RequestsDeleteEntryRequest) String() string

func (*RequestsDeleteEntryRequest) Validate added in v0.8.6

func (m *RequestsDeleteEntryRequest) Validate() error

Validate checks the field values on RequestsDeleteEntryRequest 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 (*RequestsDeleteEntryRequest) ValidateAll added in v0.8.6

func (m *RequestsDeleteEntryRequest) ValidateAll() error

ValidateAll checks the field values on RequestsDeleteEntryRequest 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 RequestsDeleteEntryRequestMultiError, or nil if none found.

type RequestsDeleteEntryRequestMultiError added in v0.8.6

type RequestsDeleteEntryRequestMultiError []error

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

func (RequestsDeleteEntryRequestMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsDeleteEntryRequestMultiError) Error added in v0.8.6

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

type RequestsDeleteEntryRequestValidationError added in v0.8.6

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

RequestsDeleteEntryRequestValidationError is the validation error returned by RequestsDeleteEntryRequest.Validate if the designated constraints aren't met.

func (RequestsDeleteEntryRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsDeleteEntryRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsDeleteEntryRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsDeleteEntryRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsDeleteEntryRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsDeleteEntryRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsDeleteEntryResponse added in v0.8.6

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

func (*RequestsDeleteEntryResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsDeleteEntryResponse.ProtoReflect.Descriptor instead.

func (*RequestsDeleteEntryResponse) ProtoMessage added in v0.8.6

func (*RequestsDeleteEntryResponse) ProtoMessage()

func (*RequestsDeleteEntryResponse) ProtoReflect added in v0.8.6

func (*RequestsDeleteEntryResponse) Reset added in v0.8.6

func (x *RequestsDeleteEntryResponse) Reset()

func (*RequestsDeleteEntryResponse) String added in v0.8.6

func (x *RequestsDeleteEntryResponse) String() string

func (*RequestsDeleteEntryResponse) Validate added in v0.8.6

func (m *RequestsDeleteEntryResponse) Validate() error

Validate checks the field values on RequestsDeleteEntryResponse 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 (*RequestsDeleteEntryResponse) ValidateAll added in v0.8.6

func (m *RequestsDeleteEntryResponse) ValidateAll() error

ValidateAll checks the field values on RequestsDeleteEntryResponse 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 RequestsDeleteEntryResponseMultiError, or nil if none found.

type RequestsDeleteEntryResponseMultiError added in v0.8.6

type RequestsDeleteEntryResponseMultiError []error

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

func (RequestsDeleteEntryResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsDeleteEntryResponseMultiError) Error added in v0.8.6

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

type RequestsDeleteEntryResponseValidationError added in v0.8.6

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

RequestsDeleteEntryResponseValidationError is the validation error returned by RequestsDeleteEntryResponse.Validate if the designated constraints aren't met.

func (RequestsDeleteEntryResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsDeleteEntryResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsDeleteEntryResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsDeleteEntryResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsDeleteEntryResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsDeleteEntryResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsDeleteTypeRequest added in v0.8.6

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

func (*RequestsDeleteTypeRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsDeleteTypeRequest.ProtoReflect.Descriptor instead.

func (*RequestsDeleteTypeRequest) GetId added in v0.8.6

func (x *RequestsDeleteTypeRequest) GetId() uint64

func (*RequestsDeleteTypeRequest) ProtoMessage added in v0.8.6

func (*RequestsDeleteTypeRequest) ProtoMessage()

func (*RequestsDeleteTypeRequest) ProtoReflect added in v0.8.6

func (*RequestsDeleteTypeRequest) Reset added in v0.8.6

func (x *RequestsDeleteTypeRequest) Reset()

func (*RequestsDeleteTypeRequest) String added in v0.8.6

func (x *RequestsDeleteTypeRequest) String() string

func (*RequestsDeleteTypeRequest) Validate added in v0.8.6

func (m *RequestsDeleteTypeRequest) Validate() error

Validate checks the field values on RequestsDeleteTypeRequest 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 (*RequestsDeleteTypeRequest) ValidateAll added in v0.8.6

func (m *RequestsDeleteTypeRequest) ValidateAll() error

ValidateAll checks the field values on RequestsDeleteTypeRequest 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 RequestsDeleteTypeRequestMultiError, or nil if none found.

type RequestsDeleteTypeRequestMultiError added in v0.8.6

type RequestsDeleteTypeRequestMultiError []error

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

func (RequestsDeleteTypeRequestMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsDeleteTypeRequestMultiError) Error added in v0.8.6

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

type RequestsDeleteTypeRequestValidationError added in v0.8.6

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

RequestsDeleteTypeRequestValidationError is the validation error returned by RequestsDeleteTypeRequest.Validate if the designated constraints aren't met.

func (RequestsDeleteTypeRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsDeleteTypeRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsDeleteTypeRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsDeleteTypeRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsDeleteTypeRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsDeleteTypeRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsDeleteTypeResponse added in v0.8.6

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

func (*RequestsDeleteTypeResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsDeleteTypeResponse.ProtoReflect.Descriptor instead.

func (*RequestsDeleteTypeResponse) ProtoMessage added in v0.8.6

func (*RequestsDeleteTypeResponse) ProtoMessage()

func (*RequestsDeleteTypeResponse) ProtoReflect added in v0.8.6

func (*RequestsDeleteTypeResponse) Reset added in v0.8.6

func (x *RequestsDeleteTypeResponse) Reset()

func (*RequestsDeleteTypeResponse) String added in v0.8.6

func (x *RequestsDeleteTypeResponse) String() string

func (*RequestsDeleteTypeResponse) Validate added in v0.8.6

func (m *RequestsDeleteTypeResponse) Validate() error

Validate checks the field values on RequestsDeleteTypeResponse 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 (*RequestsDeleteTypeResponse) ValidateAll added in v0.8.6

func (m *RequestsDeleteTypeResponse) ValidateAll() error

ValidateAll checks the field values on RequestsDeleteTypeResponse 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 RequestsDeleteTypeResponseMultiError, or nil if none found.

type RequestsDeleteTypeResponseMultiError added in v0.8.6

type RequestsDeleteTypeResponseMultiError []error

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

func (RequestsDeleteTypeResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsDeleteTypeResponseMultiError) Error added in v0.8.6

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

type RequestsDeleteTypeResponseValidationError added in v0.8.6

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

RequestsDeleteTypeResponseValidationError is the validation error returned by RequestsDeleteTypeResponse.Validate if the designated constraints aren't met.

func (RequestsDeleteTypeResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsDeleteTypeResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsDeleteTypeResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsDeleteTypeResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsDeleteTypeResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsDeleteTypeResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsListCommentsRequest added in v0.8.6

type RequestsListCommentsRequest struct {
	Pagination *database.PaginationRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	RequestId  uint64                      `protobuf:"varint,2,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsListCommentsRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsListCommentsRequest.ProtoReflect.Descriptor instead.

func (*RequestsListCommentsRequest) GetPagination added in v0.8.6

func (*RequestsListCommentsRequest) GetRequestId added in v0.8.6

func (x *RequestsListCommentsRequest) GetRequestId() uint64

func (*RequestsListCommentsRequest) ProtoMessage added in v0.8.6

func (*RequestsListCommentsRequest) ProtoMessage()

func (*RequestsListCommentsRequest) ProtoReflect added in v0.8.6

func (*RequestsListCommentsRequest) Reset added in v0.8.6

func (x *RequestsListCommentsRequest) Reset()

func (*RequestsListCommentsRequest) String added in v0.8.6

func (x *RequestsListCommentsRequest) String() string

func (*RequestsListCommentsRequest) Validate added in v0.8.6

func (m *RequestsListCommentsRequest) Validate() error

Validate checks the field values on RequestsListCommentsRequest 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 (*RequestsListCommentsRequest) ValidateAll added in v0.8.6

func (m *RequestsListCommentsRequest) ValidateAll() error

ValidateAll checks the field values on RequestsListCommentsRequest 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 RequestsListCommentsRequestMultiError, or nil if none found.

type RequestsListCommentsRequestMultiError added in v0.8.6

type RequestsListCommentsRequestMultiError []error

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

func (RequestsListCommentsRequestMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsListCommentsRequestMultiError) Error added in v0.8.6

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

type RequestsListCommentsRequestValidationError added in v0.8.6

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

RequestsListCommentsRequestValidationError is the validation error returned by RequestsListCommentsRequest.Validate if the designated constraints aren't met.

func (RequestsListCommentsRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsListCommentsRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsListCommentsRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsListCommentsRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsListCommentsRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsListCommentsRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsListCommentsResponse added in v0.8.6

type RequestsListCommentsResponse struct {
	Pagination *database.PaginationResponse `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	Comments   []*jobs.RequestComment       `protobuf:"bytes,2,rep,name=comments,proto3" json:"comments,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsListCommentsResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsListCommentsResponse.ProtoReflect.Descriptor instead.

func (*RequestsListCommentsResponse) GetComments added in v0.8.6

func (x *RequestsListCommentsResponse) GetComments() []*jobs.RequestComment

func (*RequestsListCommentsResponse) GetPagination added in v0.8.6

func (*RequestsListCommentsResponse) ProtoMessage added in v0.8.6

func (*RequestsListCommentsResponse) ProtoMessage()

func (*RequestsListCommentsResponse) ProtoReflect added in v0.8.6

func (*RequestsListCommentsResponse) Reset added in v0.8.6

func (x *RequestsListCommentsResponse) Reset()

func (*RequestsListCommentsResponse) String added in v0.8.6

func (*RequestsListCommentsResponse) Validate added in v0.8.6

func (m *RequestsListCommentsResponse) Validate() error

Validate checks the field values on RequestsListCommentsResponse 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 (*RequestsListCommentsResponse) ValidateAll added in v0.8.6

func (m *RequestsListCommentsResponse) ValidateAll() error

ValidateAll checks the field values on RequestsListCommentsResponse 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 RequestsListCommentsResponseMultiError, or nil if none found.

type RequestsListCommentsResponseMultiError added in v0.8.6

type RequestsListCommentsResponseMultiError []error

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

func (RequestsListCommentsResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsListCommentsResponseMultiError) Error added in v0.8.6

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

type RequestsListCommentsResponseValidationError added in v0.8.6

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

RequestsListCommentsResponseValidationError is the validation error returned by RequestsListCommentsResponse.Validate if the designated constraints aren't met.

func (RequestsListCommentsResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsListCommentsResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsListCommentsResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsListCommentsResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsListCommentsResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsListCommentsResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsListEntriesRequest added in v0.8.6

type RequestsListEntriesRequest struct {
	Pagination *database.PaginationRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// Search
	UserIds []int32              `protobuf:"varint,2,rep,packed,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	From    *timestamp.Timestamp `protobuf:"bytes,3,opt,name=from,proto3,oneof" json:"from,omitempty"`
	To      *timestamp.Timestamp `protobuf:"bytes,4,opt,name=to,proto3,oneof" json:"to,omitempty"`
	Search  *string              `protobuf:"bytes,5,opt,name=search,proto3,oneof" json:"search,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsListEntriesRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsListEntriesRequest.ProtoReflect.Descriptor instead.

func (*RequestsListEntriesRequest) GetFrom added in v0.8.6

func (*RequestsListEntriesRequest) GetPagination added in v0.8.6

func (*RequestsListEntriesRequest) GetSearch added in v0.8.6

func (x *RequestsListEntriesRequest) GetSearch() string

func (*RequestsListEntriesRequest) GetTo added in v0.8.6

func (*RequestsListEntriesRequest) GetUserIds added in v0.8.6

func (x *RequestsListEntriesRequest) GetUserIds() []int32

func (*RequestsListEntriesRequest) ProtoMessage added in v0.8.6

func (*RequestsListEntriesRequest) ProtoMessage()

func (*RequestsListEntriesRequest) ProtoReflect added in v0.8.6

func (*RequestsListEntriesRequest) Reset added in v0.8.6

func (x *RequestsListEntriesRequest) Reset()

func (*RequestsListEntriesRequest) String added in v0.8.6

func (x *RequestsListEntriesRequest) String() string

func (*RequestsListEntriesRequest) Validate added in v0.8.6

func (m *RequestsListEntriesRequest) Validate() error

Validate checks the field values on RequestsListEntriesRequest 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 (*RequestsListEntriesRequest) ValidateAll added in v0.8.6

func (m *RequestsListEntriesRequest) ValidateAll() error

ValidateAll checks the field values on RequestsListEntriesRequest 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 RequestsListEntriesRequestMultiError, or nil if none found.

type RequestsListEntriesRequestMultiError added in v0.8.6

type RequestsListEntriesRequestMultiError []error

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

func (RequestsListEntriesRequestMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsListEntriesRequestMultiError) Error added in v0.8.6

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

type RequestsListEntriesRequestValidationError added in v0.8.6

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

RequestsListEntriesRequestValidationError is the validation error returned by RequestsListEntriesRequest.Validate if the designated constraints aren't met.

func (RequestsListEntriesRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsListEntriesRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsListEntriesRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsListEntriesRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsListEntriesRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsListEntriesRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsListEntriesResponse added in v0.8.6

type RequestsListEntriesResponse struct {
	Pagination *database.PaginationResponse `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	Entries    []*jobs.Request              `protobuf:"bytes,2,rep,name=entries,proto3" json:"entries,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsListEntriesResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsListEntriesResponse.ProtoReflect.Descriptor instead.

func (*RequestsListEntriesResponse) GetEntries added in v0.8.6

func (x *RequestsListEntriesResponse) GetEntries() []*jobs.Request

func (*RequestsListEntriesResponse) GetPagination added in v0.8.6

func (*RequestsListEntriesResponse) ProtoMessage added in v0.8.6

func (*RequestsListEntriesResponse) ProtoMessage()

func (*RequestsListEntriesResponse) ProtoReflect added in v0.8.6

func (*RequestsListEntriesResponse) Reset added in v0.8.6

func (x *RequestsListEntriesResponse) Reset()

func (*RequestsListEntriesResponse) String added in v0.8.6

func (x *RequestsListEntriesResponse) String() string

func (*RequestsListEntriesResponse) Validate added in v0.8.6

func (m *RequestsListEntriesResponse) Validate() error

Validate checks the field values on RequestsListEntriesResponse 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 (*RequestsListEntriesResponse) ValidateAll added in v0.8.6

func (m *RequestsListEntriesResponse) ValidateAll() error

ValidateAll checks the field values on RequestsListEntriesResponse 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 RequestsListEntriesResponseMultiError, or nil if none found.

type RequestsListEntriesResponseMultiError added in v0.8.6

type RequestsListEntriesResponseMultiError []error

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

func (RequestsListEntriesResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsListEntriesResponseMultiError) Error added in v0.8.6

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

type RequestsListEntriesResponseValidationError added in v0.8.6

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

RequestsListEntriesResponseValidationError is the validation error returned by RequestsListEntriesResponse.Validate if the designated constraints aren't met.

func (RequestsListEntriesResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsListEntriesResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsListEntriesResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsListEntriesResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsListEntriesResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsListEntriesResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsListTypesRequest added in v0.8.6

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

func (*RequestsListTypesRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsListTypesRequest.ProtoReflect.Descriptor instead.

func (*RequestsListTypesRequest) ProtoMessage added in v0.8.6

func (*RequestsListTypesRequest) ProtoMessage()

func (*RequestsListTypesRequest) ProtoReflect added in v0.8.6

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

func (*RequestsListTypesRequest) Reset added in v0.8.6

func (x *RequestsListTypesRequest) Reset()

func (*RequestsListTypesRequest) String added in v0.8.6

func (x *RequestsListTypesRequest) String() string

func (*RequestsListTypesRequest) Validate added in v0.8.6

func (m *RequestsListTypesRequest) Validate() error

Validate checks the field values on RequestsListTypesRequest 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 (*RequestsListTypesRequest) ValidateAll added in v0.8.6

func (m *RequestsListTypesRequest) ValidateAll() error

ValidateAll checks the field values on RequestsListTypesRequest 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 RequestsListTypesRequestMultiError, or nil if none found.

type RequestsListTypesRequestMultiError added in v0.8.6

type RequestsListTypesRequestMultiError []error

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

func (RequestsListTypesRequestMultiError) AllErrors added in v0.8.6

func (m RequestsListTypesRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RequestsListTypesRequestMultiError) Error added in v0.8.6

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

type RequestsListTypesRequestValidationError added in v0.8.6

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

RequestsListTypesRequestValidationError is the validation error returned by RequestsListTypesRequest.Validate if the designated constraints aren't met.

func (RequestsListTypesRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsListTypesRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsListTypesRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsListTypesRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsListTypesRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsListTypesRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsListTypesResponse added in v0.8.6

type RequestsListTypesResponse struct {
	Types []*jobs.RequestType `protobuf:"bytes,1,rep,name=types,proto3" json:"types,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsListTypesResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsListTypesResponse.ProtoReflect.Descriptor instead.

func (*RequestsListTypesResponse) GetTypes added in v0.8.6

func (x *RequestsListTypesResponse) GetTypes() []*jobs.RequestType

func (*RequestsListTypesResponse) ProtoMessage added in v0.8.6

func (*RequestsListTypesResponse) ProtoMessage()

func (*RequestsListTypesResponse) ProtoReflect added in v0.8.6

func (*RequestsListTypesResponse) Reset added in v0.8.6

func (x *RequestsListTypesResponse) Reset()

func (*RequestsListTypesResponse) String added in v0.8.6

func (x *RequestsListTypesResponse) String() string

func (*RequestsListTypesResponse) Validate added in v0.8.6

func (m *RequestsListTypesResponse) Validate() error

Validate checks the field values on RequestsListTypesResponse 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 (*RequestsListTypesResponse) ValidateAll added in v0.8.6

func (m *RequestsListTypesResponse) ValidateAll() error

ValidateAll checks the field values on RequestsListTypesResponse 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 RequestsListTypesResponseMultiError, or nil if none found.

type RequestsListTypesResponseMultiError added in v0.8.6

type RequestsListTypesResponseMultiError []error

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

func (RequestsListTypesResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsListTypesResponseMultiError) Error added in v0.8.6

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

type RequestsListTypesResponseValidationError added in v0.8.6

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

RequestsListTypesResponseValidationError is the validation error returned by RequestsListTypesResponse.Validate if the designated constraints aren't met.

func (RequestsListTypesResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsListTypesResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsListTypesResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsListTypesResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsListTypesResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsListTypesResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsPostCommentRequest added in v0.8.6

type RequestsPostCommentRequest struct {
	Comment *jobs.RequestComment `protobuf:"bytes,1,opt,name=comment,proto3" json:"comment,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsPostCommentRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsPostCommentRequest.ProtoReflect.Descriptor instead.

func (*RequestsPostCommentRequest) GetComment added in v0.8.6

func (*RequestsPostCommentRequest) ProtoMessage added in v0.8.6

func (*RequestsPostCommentRequest) ProtoMessage()

func (*RequestsPostCommentRequest) ProtoReflect added in v0.8.6

func (*RequestsPostCommentRequest) Reset added in v0.8.6

func (x *RequestsPostCommentRequest) Reset()

func (*RequestsPostCommentRequest) String added in v0.8.6

func (x *RequestsPostCommentRequest) String() string

func (*RequestsPostCommentRequest) Validate added in v0.8.6

func (m *RequestsPostCommentRequest) Validate() error

Validate checks the field values on RequestsPostCommentRequest 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 (*RequestsPostCommentRequest) ValidateAll added in v0.8.6

func (m *RequestsPostCommentRequest) ValidateAll() error

ValidateAll checks the field values on RequestsPostCommentRequest 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 RequestsPostCommentRequestMultiError, or nil if none found.

type RequestsPostCommentRequestMultiError added in v0.8.6

type RequestsPostCommentRequestMultiError []error

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

func (RequestsPostCommentRequestMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsPostCommentRequestMultiError) Error added in v0.8.6

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

type RequestsPostCommentRequestValidationError added in v0.8.6

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

RequestsPostCommentRequestValidationError is the validation error returned by RequestsPostCommentRequest.Validate if the designated constraints aren't met.

func (RequestsPostCommentRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsPostCommentRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsPostCommentRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsPostCommentRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsPostCommentRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsPostCommentRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsPostCommentResponse added in v0.8.6

type RequestsPostCommentResponse struct {
	Comment *jobs.RequestComment `protobuf:"bytes,1,opt,name=comment,proto3" json:"comment,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsPostCommentResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsPostCommentResponse.ProtoReflect.Descriptor instead.

func (*RequestsPostCommentResponse) GetComment added in v0.8.6

func (*RequestsPostCommentResponse) ProtoMessage added in v0.8.6

func (*RequestsPostCommentResponse) ProtoMessage()

func (*RequestsPostCommentResponse) ProtoReflect added in v0.8.6

func (*RequestsPostCommentResponse) Reset added in v0.8.6

func (x *RequestsPostCommentResponse) Reset()

func (*RequestsPostCommentResponse) String added in v0.8.6

func (x *RequestsPostCommentResponse) String() string

func (*RequestsPostCommentResponse) Validate added in v0.8.6

func (m *RequestsPostCommentResponse) Validate() error

Validate checks the field values on RequestsPostCommentResponse 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 (*RequestsPostCommentResponse) ValidateAll added in v0.8.6

func (m *RequestsPostCommentResponse) ValidateAll() error

ValidateAll checks the field values on RequestsPostCommentResponse 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 RequestsPostCommentResponseMultiError, or nil if none found.

type RequestsPostCommentResponseMultiError added in v0.8.6

type RequestsPostCommentResponseMultiError []error

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

func (RequestsPostCommentResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsPostCommentResponseMultiError) Error added in v0.8.6

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

type RequestsPostCommentResponseValidationError added in v0.8.6

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

RequestsPostCommentResponseValidationError is the validation error returned by RequestsPostCommentResponse.Validate if the designated constraints aren't met.

func (RequestsPostCommentResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsPostCommentResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsPostCommentResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsPostCommentResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsPostCommentResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsPostCommentResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsUpdateEntryRequest added in v0.8.6

type RequestsUpdateEntryRequest struct {
	Entry *jobs.Request `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsUpdateEntryRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsUpdateEntryRequest.ProtoReflect.Descriptor instead.

func (*RequestsUpdateEntryRequest) GetEntry added in v0.8.6

func (x *RequestsUpdateEntryRequest) GetEntry() *jobs.Request

func (*RequestsUpdateEntryRequest) ProtoMessage added in v0.8.6

func (*RequestsUpdateEntryRequest) ProtoMessage()

func (*RequestsUpdateEntryRequest) ProtoReflect added in v0.8.6

func (*RequestsUpdateEntryRequest) Reset added in v0.8.6

func (x *RequestsUpdateEntryRequest) Reset()

func (*RequestsUpdateEntryRequest) String added in v0.8.6

func (x *RequestsUpdateEntryRequest) String() string

func (*RequestsUpdateEntryRequest) Validate added in v0.8.6

func (m *RequestsUpdateEntryRequest) Validate() error

Validate checks the field values on RequestsUpdateEntryRequest 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 (*RequestsUpdateEntryRequest) ValidateAll added in v0.8.6

func (m *RequestsUpdateEntryRequest) ValidateAll() error

ValidateAll checks the field values on RequestsUpdateEntryRequest 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 RequestsUpdateEntryRequestMultiError, or nil if none found.

type RequestsUpdateEntryRequestMultiError added in v0.8.6

type RequestsUpdateEntryRequestMultiError []error

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

func (RequestsUpdateEntryRequestMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsUpdateEntryRequestMultiError) Error added in v0.8.6

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

type RequestsUpdateEntryRequestValidationError added in v0.8.6

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

RequestsUpdateEntryRequestValidationError is the validation error returned by RequestsUpdateEntryRequest.Validate if the designated constraints aren't met.

func (RequestsUpdateEntryRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsUpdateEntryRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsUpdateEntryRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsUpdateEntryRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsUpdateEntryRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsUpdateEntryRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type RequestsUpdateEntryResponse added in v0.8.6

type RequestsUpdateEntryResponse struct {
	Entry *jobs.Request `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
	// contains filtered or unexported fields
}

func (*RequestsUpdateEntryResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use RequestsUpdateEntryResponse.ProtoReflect.Descriptor instead.

func (*RequestsUpdateEntryResponse) GetEntry added in v0.8.6

func (x *RequestsUpdateEntryResponse) GetEntry() *jobs.Request

func (*RequestsUpdateEntryResponse) ProtoMessage added in v0.8.6

func (*RequestsUpdateEntryResponse) ProtoMessage()

func (*RequestsUpdateEntryResponse) ProtoReflect added in v0.8.6

func (*RequestsUpdateEntryResponse) Reset added in v0.8.6

func (x *RequestsUpdateEntryResponse) Reset()

func (*RequestsUpdateEntryResponse) String added in v0.8.6

func (x *RequestsUpdateEntryResponse) String() string

func (*RequestsUpdateEntryResponse) Validate added in v0.8.6

func (m *RequestsUpdateEntryResponse) Validate() error

Validate checks the field values on RequestsUpdateEntryResponse 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 (*RequestsUpdateEntryResponse) ValidateAll added in v0.8.6

func (m *RequestsUpdateEntryResponse) ValidateAll() error

ValidateAll checks the field values on RequestsUpdateEntryResponse 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 RequestsUpdateEntryResponseMultiError, or nil if none found.

type RequestsUpdateEntryResponseMultiError added in v0.8.6

type RequestsUpdateEntryResponseMultiError []error

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

func (RequestsUpdateEntryResponseMultiError) AllErrors added in v0.8.6

AllErrors returns a list of validation violation errors.

func (RequestsUpdateEntryResponseMultiError) Error added in v0.8.6

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

type RequestsUpdateEntryResponseValidationError added in v0.8.6

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

RequestsUpdateEntryResponseValidationError is the validation error returned by RequestsUpdateEntryResponse.Validate if the designated constraints aren't met.

func (RequestsUpdateEntryResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (RequestsUpdateEntryResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (RequestsUpdateEntryResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (RequestsUpdateEntryResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (RequestsUpdateEntryResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (RequestsUpdateEntryResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type Server

type Server struct {
	JobsServiceServer
	// contains filtered or unexported fields
}

func NewServer

func NewServer(p Params) *Server

func (*Server) ColleaguesList added in v0.8.1

func (s *Server) ColleaguesList(ctx context.Context, req *ColleaguesListRequest) (*ColleaguesListResponse, error)

func (*Server) ConductCreateEntry added in v0.8.1

func (s *Server) ConductCreateEntry(ctx context.Context, req *ConductCreateEntryRequest) (*ConductCreateEntryResponse, error)

func (*Server) ConductDeleteEntry added in v0.8.1

func (s *Server) ConductDeleteEntry(ctx context.Context, req *ConductDeleteEntryRequest) (*ConductDeleteEntryResponse, error)

func (*Server) ConductListEntries added in v0.8.1

func (s *Server) ConductListEntries(ctx context.Context, req *ConductListEntriesRequest) (*ConductListEntriesResponse, error)

func (*Server) ConductUpdateEntry added in v0.8.1

func (s *Server) ConductUpdateEntry(ctx context.Context, req *ConductUpdateEntryRequest) (*ConductUpdateEntryResponse, error)

func (*Server) GetPermsRemap added in v0.8.6

func (s *Server) GetPermsRemap() map[string]string

func (*Server) RegisterServer added in v0.8.0

func (s *Server) RegisterServer(srv *grpc.Server)

func (*Server) RequestsCreateEntry added in v0.8.6

func (s *Server) RequestsCreateEntry(ctx context.Context, req *RequestsCreateEntryRequest) (*RequestsCreateEntryResponse, error)

func (*Server) RequestsCreateOrUpdateType added in v0.8.6

func (*Server) RequestsDeleteComment added in v0.8.6

func (*Server) RequestsDeleteEntry added in v0.8.6

func (s *Server) RequestsDeleteEntry(ctx context.Context, req *RequestsDeleteEntryRequest) (*RequestsDeleteEntryResponse, error)

func (*Server) RequestsDeleteType added in v0.8.6

func (s *Server) RequestsDeleteType(ctx context.Context, req *RequestsDeleteTypeRequest) (*RequestsDeleteTypeResponse, error)

func (*Server) RequestsListComments added in v0.8.6

func (*Server) RequestsListEntries added in v0.8.6

func (s *Server) RequestsListEntries(ctx context.Context, req *RequestsListEntriesRequest) (*RequestsListEntriesResponse, error)

func (*Server) RequestsListTypes added in v0.8.6

func (s *Server) RequestsListTypes(ctx context.Context, req *RequestsListTypesRequest) (*RequestsListTypesResponse, error)

func (*Server) RequestsPostComment added in v0.8.6

func (s *Server) RequestsPostComment(ctx context.Context, req *RequestsPostCommentRequest) (*RequestsPostCommentResponse, error)

func (*Server) RequestsUpdateEntry added in v0.8.6

func (s *Server) RequestsUpdateEntry(ctx context.Context, req *RequestsUpdateEntryRequest) (*RequestsUpdateEntryResponse, error)

func (*Server) TimeclockListEntries added in v0.8.4

func (*Server) TimeclockStats added in v0.8.6

func (s *Server) TimeclockStats(ctx context.Context, req *TimeclockStatsRequest) (*TimeclockStatsResponse, error)

type TimeclockListEntriesRequest added in v0.8.4

type TimeclockListEntriesRequest struct {
	Pagination *database.PaginationRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// Search
	UserIds []int32              `protobuf:"varint,2,rep,packed,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	From    *timestamp.Timestamp `protobuf:"bytes,3,opt,name=from,proto3,oneof" json:"from,omitempty"`
	To      *timestamp.Timestamp `protobuf:"bytes,4,opt,name=to,proto3,oneof" json:"to,omitempty"`
	PerDay  *bool                `protobuf:"varint,5,opt,name=per_day,json=perDay,proto3,oneof" json:"per_day,omitempty"`
	// contains filtered or unexported fields
}

func (*TimeclockListEntriesRequest) Descriptor deprecated added in v0.8.4

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

Deprecated: Use TimeclockListEntriesRequest.ProtoReflect.Descriptor instead.

func (*TimeclockListEntriesRequest) GetFrom added in v0.8.4

func (*TimeclockListEntriesRequest) GetPagination added in v0.8.4

func (*TimeclockListEntriesRequest) GetPerDay added in v0.8.10

func (x *TimeclockListEntriesRequest) GetPerDay() bool

func (*TimeclockListEntriesRequest) GetTo added in v0.8.4

func (*TimeclockListEntriesRequest) GetUserIds added in v0.8.4

func (x *TimeclockListEntriesRequest) GetUserIds() []int32

func (*TimeclockListEntriesRequest) ProtoMessage added in v0.8.4

func (*TimeclockListEntriesRequest) ProtoMessage()

func (*TimeclockListEntriesRequest) ProtoReflect added in v0.8.4

func (*TimeclockListEntriesRequest) Reset added in v0.8.4

func (x *TimeclockListEntriesRequest) Reset()

func (*TimeclockListEntriesRequest) String added in v0.8.4

func (x *TimeclockListEntriesRequest) String() string

func (*TimeclockListEntriesRequest) Validate added in v0.8.4

func (m *TimeclockListEntriesRequest) Validate() error

Validate checks the field values on TimeclockListEntriesRequest 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 (*TimeclockListEntriesRequest) ValidateAll added in v0.8.4

func (m *TimeclockListEntriesRequest) ValidateAll() error

ValidateAll checks the field values on TimeclockListEntriesRequest 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 TimeclockListEntriesRequestMultiError, or nil if none found.

type TimeclockListEntriesRequestMultiError added in v0.8.4

type TimeclockListEntriesRequestMultiError []error

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

func (TimeclockListEntriesRequestMultiError) AllErrors added in v0.8.4

AllErrors returns a list of validation violation errors.

func (TimeclockListEntriesRequestMultiError) Error added in v0.8.4

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

type TimeclockListEntriesRequestValidationError added in v0.8.4

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

TimeclockListEntriesRequestValidationError is the validation error returned by TimeclockListEntriesRequest.Validate if the designated constraints aren't met.

func (TimeclockListEntriesRequestValidationError) Cause added in v0.8.4

Cause function returns cause value.

func (TimeclockListEntriesRequestValidationError) Error added in v0.8.4

Error satisfies the builtin error interface

func (TimeclockListEntriesRequestValidationError) ErrorName added in v0.8.4

ErrorName returns error name.

func (TimeclockListEntriesRequestValidationError) Field added in v0.8.4

Field function returns field value.

func (TimeclockListEntriesRequestValidationError) Key added in v0.8.4

Key function returns key value.

func (TimeclockListEntriesRequestValidationError) Reason added in v0.8.4

Reason function returns reason value.

type TimeclockListEntriesResponse added in v0.8.4

type TimeclockListEntriesResponse struct {
	Pagination *database.PaginationResponse `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	Entries    []*jobs.TimeclockEntry       `protobuf:"bytes,2,rep,name=entries,proto3" json:"entries,omitempty"`
	Stats      *jobs.TimeclockStats         `protobuf:"bytes,3,opt,name=stats,proto3" json:"stats,omitempty"`
	// contains filtered or unexported fields
}

func (*TimeclockListEntriesResponse) Descriptor deprecated added in v0.8.4

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

Deprecated: Use TimeclockListEntriesResponse.ProtoReflect.Descriptor instead.

func (*TimeclockListEntriesResponse) GetEntries added in v0.8.4

func (*TimeclockListEntriesResponse) GetPagination added in v0.8.4

func (*TimeclockListEntriesResponse) GetStats added in v0.8.4

func (*TimeclockListEntriesResponse) ProtoMessage added in v0.8.4

func (*TimeclockListEntriesResponse) ProtoMessage()

func (*TimeclockListEntriesResponse) ProtoReflect added in v0.8.4

func (*TimeclockListEntriesResponse) Reset added in v0.8.4

func (x *TimeclockListEntriesResponse) Reset()

func (*TimeclockListEntriesResponse) String added in v0.8.4

func (*TimeclockListEntriesResponse) Validate added in v0.8.4

func (m *TimeclockListEntriesResponse) Validate() error

Validate checks the field values on TimeclockListEntriesResponse 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 (*TimeclockListEntriesResponse) ValidateAll added in v0.8.4

func (m *TimeclockListEntriesResponse) ValidateAll() error

ValidateAll checks the field values on TimeclockListEntriesResponse 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 TimeclockListEntriesResponseMultiError, or nil if none found.

type TimeclockListEntriesResponseMultiError added in v0.8.4

type TimeclockListEntriesResponseMultiError []error

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

func (TimeclockListEntriesResponseMultiError) AllErrors added in v0.8.4

AllErrors returns a list of validation violation errors.

func (TimeclockListEntriesResponseMultiError) Error added in v0.8.4

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

type TimeclockListEntriesResponseValidationError added in v0.8.4

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

TimeclockListEntriesResponseValidationError is the validation error returned by TimeclockListEntriesResponse.Validate if the designated constraints aren't met.

func (TimeclockListEntriesResponseValidationError) Cause added in v0.8.4

Cause function returns cause value.

func (TimeclockListEntriesResponseValidationError) Error added in v0.8.4

Error satisfies the builtin error interface

func (TimeclockListEntriesResponseValidationError) ErrorName added in v0.8.4

ErrorName returns error name.

func (TimeclockListEntriesResponseValidationError) Field added in v0.8.4

Field function returns field value.

func (TimeclockListEntriesResponseValidationError) Key added in v0.8.4

Key function returns key value.

func (TimeclockListEntriesResponseValidationError) Reason added in v0.8.4

Reason function returns reason value.

type TimeclockStatsRequest added in v0.8.6

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

func (*TimeclockStatsRequest) Descriptor deprecated added in v0.8.6

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

Deprecated: Use TimeclockStatsRequest.ProtoReflect.Descriptor instead.

func (*TimeclockStatsRequest) ProtoMessage added in v0.8.6

func (*TimeclockStatsRequest) ProtoMessage()

func (*TimeclockStatsRequest) ProtoReflect added in v0.8.6

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

func (*TimeclockStatsRequest) Reset added in v0.8.6

func (x *TimeclockStatsRequest) Reset()

func (*TimeclockStatsRequest) String added in v0.8.6

func (x *TimeclockStatsRequest) String() string

func (*TimeclockStatsRequest) Validate added in v0.8.6

func (m *TimeclockStatsRequest) Validate() error

Validate checks the field values on TimeclockStatsRequest 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 (*TimeclockStatsRequest) ValidateAll added in v0.8.6

func (m *TimeclockStatsRequest) ValidateAll() error

ValidateAll checks the field values on TimeclockStatsRequest 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 TimeclockStatsRequestMultiError, or nil if none found.

type TimeclockStatsRequestMultiError added in v0.8.6

type TimeclockStatsRequestMultiError []error

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

func (TimeclockStatsRequestMultiError) AllErrors added in v0.8.6

func (m TimeclockStatsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TimeclockStatsRequestMultiError) Error added in v0.8.6

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

type TimeclockStatsRequestValidationError added in v0.8.6

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

TimeclockStatsRequestValidationError is the validation error returned by TimeclockStatsRequest.Validate if the designated constraints aren't met.

func (TimeclockStatsRequestValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (TimeclockStatsRequestValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (TimeclockStatsRequestValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (TimeclockStatsRequestValidationError) Field added in v0.8.6

Field function returns field value.

func (TimeclockStatsRequestValidationError) Key added in v0.8.6

Key function returns key value.

func (TimeclockStatsRequestValidationError) Reason added in v0.8.6

Reason function returns reason value.

type TimeclockStatsResponse added in v0.8.6

type TimeclockStatsResponse struct {
	Stats *jobs.TimeclockStats `protobuf:"bytes,1,opt,name=stats,proto3" json:"stats,omitempty"`
	// contains filtered or unexported fields
}

func (*TimeclockStatsResponse) Descriptor deprecated added in v0.8.6

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

Deprecated: Use TimeclockStatsResponse.ProtoReflect.Descriptor instead.

func (*TimeclockStatsResponse) GetStats added in v0.8.6

func (*TimeclockStatsResponse) ProtoMessage added in v0.8.6

func (*TimeclockStatsResponse) ProtoMessage()

func (*TimeclockStatsResponse) ProtoReflect added in v0.8.6

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

func (*TimeclockStatsResponse) Reset added in v0.8.6

func (x *TimeclockStatsResponse) Reset()

func (*TimeclockStatsResponse) String added in v0.8.6

func (x *TimeclockStatsResponse) String() string

func (*TimeclockStatsResponse) Validate added in v0.8.6

func (m *TimeclockStatsResponse) Validate() error

Validate checks the field values on TimeclockStatsResponse 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 (*TimeclockStatsResponse) ValidateAll added in v0.8.6

func (m *TimeclockStatsResponse) ValidateAll() error

ValidateAll checks the field values on TimeclockStatsResponse 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 TimeclockStatsResponseMultiError, or nil if none found.

type TimeclockStatsResponseMultiError added in v0.8.6

type TimeclockStatsResponseMultiError []error

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

func (TimeclockStatsResponseMultiError) AllErrors added in v0.8.6

func (m TimeclockStatsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TimeclockStatsResponseMultiError) Error added in v0.8.6

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

type TimeclockStatsResponseValidationError added in v0.8.6

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

TimeclockStatsResponseValidationError is the validation error returned by TimeclockStatsResponse.Validate if the designated constraints aren't met.

func (TimeclockStatsResponseValidationError) Cause added in v0.8.6

Cause function returns cause value.

func (TimeclockStatsResponseValidationError) Error added in v0.8.6

Error satisfies the builtin error interface

func (TimeclockStatsResponseValidationError) ErrorName added in v0.8.6

ErrorName returns error name.

func (TimeclockStatsResponseValidationError) Field added in v0.8.6

Field function returns field value.

func (TimeclockStatsResponseValidationError) Key added in v0.8.6

Key function returns key value.

func (TimeclockStatsResponseValidationError) Reason added in v0.8.6

Reason function returns reason value.

type UnimplementedJobsServiceServer

type UnimplementedJobsServiceServer struct {
}

UnimplementedJobsServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedJobsServiceServer) ColleaguesList added in v0.8.1

func (UnimplementedJobsServiceServer) ConductCreateEntry added in v0.8.1

func (UnimplementedJobsServiceServer) ConductDeleteEntry added in v0.8.1

func (UnimplementedJobsServiceServer) ConductListEntries added in v0.8.1

func (UnimplementedJobsServiceServer) ConductUpdateEntry added in v0.8.1

func (UnimplementedJobsServiceServer) RequestsCreateEntry added in v0.8.6

func (UnimplementedJobsServiceServer) RequestsCreateOrUpdateType added in v0.8.6

func (UnimplementedJobsServiceServer) RequestsDeleteComment added in v0.8.6

func (UnimplementedJobsServiceServer) RequestsDeleteEntry added in v0.8.6

func (UnimplementedJobsServiceServer) RequestsDeleteType added in v0.8.6

func (UnimplementedJobsServiceServer) RequestsListComments added in v0.8.6

func (UnimplementedJobsServiceServer) RequestsListEntries added in v0.8.6

func (UnimplementedJobsServiceServer) RequestsListTypes added in v0.8.6

func (UnimplementedJobsServiceServer) RequestsPostComment added in v0.8.6

func (UnimplementedJobsServiceServer) RequestsUpdateEntry added in v0.8.6

func (UnimplementedJobsServiceServer) TimeclockListEntries added in v0.8.4

func (UnimplementedJobsServiceServer) TimeclockStats added in v0.8.6

type UnsafeJobsServiceServer

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

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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