v1

package
v0.0.0-...-cc13779 Latest Latest
Warning

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

Go to latest
Published: Dec 6, 2024 License: Apache-2.0 Imports: 23 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ServiceService_CreateService_FullMethodName            = "/jit.v1.ServiceService/CreateService"
	ServiceService_GetServices_FullMethodName              = "/jit.v1.ServiceService/GetServices"
	ServiceService_GetService_FullMethodName               = "/jit.v1.ServiceService/GetService"
	ServiceService_GetServiceByPk_FullMethodName           = "/jit.v1.ServiceService/GetServiceByPk"
	ServiceService_FindByCarrierServiceCode_FullMethodName = "/jit.v1.ServiceService/FindByCarrierServiceCode"
)
View Source
const (
	TimestampService_CreateTimestamp_FullMethodName = "/jit.v1.TimestampService/CreateTimestamp"
	TimestampService_GetTimestamps_FullMethodName   = "/jit.v1.TimestampService/GetTimestamps"
)

Variables

View Source
var File_jit_v1_service_proto protoreflect.FileDescriptor
View Source
var File_jit_v1_timestamp_proto protoreflect.FileDescriptor
View Source
var ServiceService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "jit.v1.ServiceService",
	HandlerType: (*ServiceServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateService",
			Handler:    _ServiceService_CreateService_Handler,
		},
		{
			MethodName: "GetServices",
			Handler:    _ServiceService_GetServices_Handler,
		},
		{
			MethodName: "GetService",
			Handler:    _ServiceService_GetService_Handler,
		},
		{
			MethodName: "GetServiceByPk",
			Handler:    _ServiceService_GetServiceByPk_Handler,
		},
		{
			MethodName: "FindByCarrierServiceCode",
			Handler:    _ServiceService_FindByCarrierServiceCode_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "jit/v1/service.proto",
}

ServiceService_ServiceDesc is the grpc.ServiceDesc for ServiceService 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 TimestampService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "jit.v1.TimestampService",
	HandlerType: (*TimestampServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateTimestamp",
			Handler:    _TimestampService_CreateTimestamp_Handler,
		},
		{
			MethodName: "GetTimestamps",
			Handler:    _TimestampService_GetTimestamps_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "jit/v1/timestamp.proto",
}

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

Functions

func RegisterServiceServiceServer

func RegisterServiceServiceServer(s grpc.ServiceRegistrar, srv ServiceServiceServer)

func RegisterTimestampServiceServer

func RegisterTimestampServiceServer(s grpc.ServiceRegistrar, srv TimestampServiceServer)

Types

type CreateServiceRequest

type CreateServiceRequest struct {
	CarrierId                 uint32 `protobuf:"varint,1,opt,name=carrier_id,json=carrierId,proto3" json:"carrier_id,omitempty"`
	CarrierServiceName        string `protobuf:"bytes,2,opt,name=carrier_service_name,json=carrierServiceName,proto3" json:"carrier_service_name,omitempty"`
	CarrierServiceCode        string `protobuf:"bytes,3,opt,name=carrier_service_code,json=carrierServiceCode,proto3" json:"carrier_service_code,omitempty"`
	TradelaneId               string `protobuf:"bytes,4,opt,name=tradelane_id,json=tradelaneId,proto3" json:"tradelane_id,omitempty"`
	UniversalServiceReference string `` /* 138-byte string literal not displayed */
	UserId                    string `protobuf:"bytes,6,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	UserEmail                 string `protobuf:"bytes,7,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
	RequestId                 string `protobuf:"bytes,8,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateServiceRequest) Descriptor deprecated

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

Deprecated: Use CreateServiceRequest.ProtoReflect.Descriptor instead.

func (*CreateServiceRequest) GetCarrierId

func (x *CreateServiceRequest) GetCarrierId() uint32

func (*CreateServiceRequest) GetCarrierServiceCode

func (x *CreateServiceRequest) GetCarrierServiceCode() string

func (*CreateServiceRequest) GetCarrierServiceName

func (x *CreateServiceRequest) GetCarrierServiceName() string

func (*CreateServiceRequest) GetRequestId

func (x *CreateServiceRequest) GetRequestId() string

func (*CreateServiceRequest) GetTradelaneId

func (x *CreateServiceRequest) GetTradelaneId() string

func (*CreateServiceRequest) GetUniversalServiceReference

func (x *CreateServiceRequest) GetUniversalServiceReference() string

func (*CreateServiceRequest) GetUserEmail

func (x *CreateServiceRequest) GetUserEmail() string

func (*CreateServiceRequest) GetUserId

func (x *CreateServiceRequest) GetUserId() string

func (*CreateServiceRequest) ProtoMessage

func (*CreateServiceRequest) ProtoMessage()

func (*CreateServiceRequest) ProtoReflect

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

func (*CreateServiceRequest) Reset

func (x *CreateServiceRequest) Reset()

func (*CreateServiceRequest) String

func (x *CreateServiceRequest) String() string

func (*CreateServiceRequest) Validate

func (m *CreateServiceRequest) Validate() error

Validate checks the field values on CreateServiceRequest 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 (*CreateServiceRequest) ValidateAll

func (m *CreateServiceRequest) ValidateAll() error

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

type CreateServiceRequestMultiError

type CreateServiceRequestMultiError []error

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

func (CreateServiceRequestMultiError) AllErrors

func (m CreateServiceRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateServiceRequestMultiError) Error

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

type CreateServiceRequestValidationError

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

CreateServiceRequestValidationError is the validation error returned by CreateServiceRequest.Validate if the designated constraints aren't met.

func (CreateServiceRequestValidationError) Cause

Cause function returns cause value.

func (CreateServiceRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateServiceRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateServiceRequestValidationError) Field

Field function returns field value.

func (CreateServiceRequestValidationError) Key

Key function returns key value.

func (CreateServiceRequestValidationError) Reason

Reason function returns reason value.

type CreateServiceResponse

type CreateServiceResponse struct {
	Service1 *Service `protobuf:"bytes,1,opt,name=service1,proto3" json:"service1,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateServiceResponse) Descriptor deprecated

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

Deprecated: Use CreateServiceResponse.ProtoReflect.Descriptor instead.

func (*CreateServiceResponse) GetService1

func (x *CreateServiceResponse) GetService1() *Service

func (*CreateServiceResponse) ProtoMessage

func (*CreateServiceResponse) ProtoMessage()

func (*CreateServiceResponse) ProtoReflect

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

func (*CreateServiceResponse) Reset

func (x *CreateServiceResponse) Reset()

func (*CreateServiceResponse) String

func (x *CreateServiceResponse) String() string

func (*CreateServiceResponse) Validate

func (m *CreateServiceResponse) Validate() error

Validate checks the field values on CreateServiceResponse 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 (*CreateServiceResponse) ValidateAll

func (m *CreateServiceResponse) ValidateAll() error

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

type CreateServiceResponseMultiError

type CreateServiceResponseMultiError []error

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

func (CreateServiceResponseMultiError) AllErrors

func (m CreateServiceResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateServiceResponseMultiError) Error

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

type CreateServiceResponseValidationError

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

CreateServiceResponseValidationError is the validation error returned by CreateServiceResponse.Validate if the designated constraints aren't met.

func (CreateServiceResponseValidationError) Cause

Cause function returns cause value.

func (CreateServiceResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateServiceResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateServiceResponseValidationError) Field

Field function returns field value.

func (CreateServiceResponseValidationError) Key

Key function returns key value.

func (CreateServiceResponseValidationError) Reason

Reason function returns reason value.

type CreateTimestampRequest

type CreateTimestampRequest struct {
	EventTypeCode       string `protobuf:"bytes,1,opt,name=event_type_code,json=eventTypeCode,proto3" json:"event_type_code,omitempty"`
	EventClassifierCode string `protobuf:"bytes,2,opt,name=event_classifier_code,json=eventClassifierCode,proto3" json:"event_classifier_code,omitempty"`
	EventDateTime       string `protobuf:"bytes,3,opt,name=event_date_time,json=eventDateTime,proto3" json:"event_date_time,omitempty"`
	DelayReasonCode     string `protobuf:"bytes,4,opt,name=delay_reason_code,json=delayReasonCode,proto3" json:"delay_reason_code,omitempty"`
	ChangeRemark        string `protobuf:"bytes,5,opt,name=change_remark,json=changeRemark,proto3" json:"change_remark,omitempty"`
	UserId              string `protobuf:"bytes,6,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	UserEmail           string `protobuf:"bytes,7,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
	RequestId           string `protobuf:"bytes,8,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTimestampRequest) Descriptor deprecated

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

Deprecated: Use CreateTimestampRequest.ProtoReflect.Descriptor instead.

func (*CreateTimestampRequest) GetChangeRemark

func (x *CreateTimestampRequest) GetChangeRemark() string

func (*CreateTimestampRequest) GetDelayReasonCode

func (x *CreateTimestampRequest) GetDelayReasonCode() string

func (*CreateTimestampRequest) GetEventClassifierCode

func (x *CreateTimestampRequest) GetEventClassifierCode() string

func (*CreateTimestampRequest) GetEventDateTime

func (x *CreateTimestampRequest) GetEventDateTime() string

func (*CreateTimestampRequest) GetEventTypeCode

func (x *CreateTimestampRequest) GetEventTypeCode() string

func (*CreateTimestampRequest) GetRequestId

func (x *CreateTimestampRequest) GetRequestId() string

func (*CreateTimestampRequest) GetUserEmail

func (x *CreateTimestampRequest) GetUserEmail() string

func (*CreateTimestampRequest) GetUserId

func (x *CreateTimestampRequest) GetUserId() string

func (*CreateTimestampRequest) ProtoMessage

func (*CreateTimestampRequest) ProtoMessage()

func (*CreateTimestampRequest) ProtoReflect

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

func (*CreateTimestampRequest) Reset

func (x *CreateTimestampRequest) Reset()

func (*CreateTimestampRequest) String

func (x *CreateTimestampRequest) String() string

func (*CreateTimestampRequest) Validate

func (m *CreateTimestampRequest) Validate() error

Validate checks the field values on CreateTimestampRequest 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 (*CreateTimestampRequest) ValidateAll

func (m *CreateTimestampRequest) ValidateAll() error

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

type CreateTimestampRequestMultiError

type CreateTimestampRequestMultiError []error

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

func (CreateTimestampRequestMultiError) AllErrors

func (m CreateTimestampRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTimestampRequestMultiError) Error

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

type CreateTimestampRequestValidationError

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

CreateTimestampRequestValidationError is the validation error returned by CreateTimestampRequest.Validate if the designated constraints aren't met.

func (CreateTimestampRequestValidationError) Cause

Cause function returns cause value.

func (CreateTimestampRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateTimestampRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateTimestampRequestValidationError) Field

Field function returns field value.

func (CreateTimestampRequestValidationError) Key

Key function returns key value.

func (CreateTimestampRequestValidationError) Reason

Reason function returns reason value.

type CreateTimestampResponse

type CreateTimestampResponse struct {
	Timestamp1 *Timestamp `protobuf:"bytes,1,opt,name=timestamp1,proto3" json:"timestamp1,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTimestampResponse) Descriptor deprecated

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

Deprecated: Use CreateTimestampResponse.ProtoReflect.Descriptor instead.

func (*CreateTimestampResponse) GetTimestamp1

func (x *CreateTimestampResponse) GetTimestamp1() *Timestamp

func (*CreateTimestampResponse) ProtoMessage

func (*CreateTimestampResponse) ProtoMessage()

func (*CreateTimestampResponse) ProtoReflect

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

func (*CreateTimestampResponse) Reset

func (x *CreateTimestampResponse) Reset()

func (*CreateTimestampResponse) String

func (x *CreateTimestampResponse) String() string

func (*CreateTimestampResponse) Validate

func (m *CreateTimestampResponse) Validate() error

Validate checks the field values on CreateTimestampResponse 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 (*CreateTimestampResponse) ValidateAll

func (m *CreateTimestampResponse) ValidateAll() error

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

type CreateTimestampResponseMultiError

type CreateTimestampResponseMultiError []error

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

func (CreateTimestampResponseMultiError) AllErrors

func (m CreateTimestampResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTimestampResponseMultiError) Error

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

type CreateTimestampResponseValidationError

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

CreateTimestampResponseValidationError is the validation error returned by CreateTimestampResponse.Validate if the designated constraints aren't met.

func (CreateTimestampResponseValidationError) Cause

Cause function returns cause value.

func (CreateTimestampResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateTimestampResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateTimestampResponseValidationError) Field

Field function returns field value.

func (CreateTimestampResponseValidationError) Key

Key function returns key value.

func (CreateTimestampResponseValidationError) Reason

Reason function returns reason value.

type FindByCarrierServiceCodeRequest

type FindByCarrierServiceCodeRequest struct {
	CarrierServiceCode string `protobuf:"bytes,1,opt,name=carrier_service_code,json=carrierServiceCode,proto3" json:"carrier_service_code,omitempty"`
	UserId             string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	UserEmail          string `protobuf:"bytes,3,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
	RequestId          string `protobuf:"bytes,4,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
	// contains filtered or unexported fields
}

func (*FindByCarrierServiceCodeRequest) Descriptor deprecated

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

Deprecated: Use FindByCarrierServiceCodeRequest.ProtoReflect.Descriptor instead.

func (*FindByCarrierServiceCodeRequest) GetCarrierServiceCode

func (x *FindByCarrierServiceCodeRequest) GetCarrierServiceCode() string

func (*FindByCarrierServiceCodeRequest) GetRequestId

func (x *FindByCarrierServiceCodeRequest) GetRequestId() string

func (*FindByCarrierServiceCodeRequest) GetUserEmail

func (x *FindByCarrierServiceCodeRequest) GetUserEmail() string

func (*FindByCarrierServiceCodeRequest) GetUserId

func (x *FindByCarrierServiceCodeRequest) GetUserId() string

func (*FindByCarrierServiceCodeRequest) ProtoMessage

func (*FindByCarrierServiceCodeRequest) ProtoMessage()

func (*FindByCarrierServiceCodeRequest) ProtoReflect

func (*FindByCarrierServiceCodeRequest) Reset

func (*FindByCarrierServiceCodeRequest) String

func (*FindByCarrierServiceCodeRequest) Validate

func (m *FindByCarrierServiceCodeRequest) Validate() error

Validate checks the field values on FindByCarrierServiceCodeRequest 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 (*FindByCarrierServiceCodeRequest) ValidateAll

func (m *FindByCarrierServiceCodeRequest) ValidateAll() error

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

type FindByCarrierServiceCodeRequestMultiError

type FindByCarrierServiceCodeRequestMultiError []error

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

func (FindByCarrierServiceCodeRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (FindByCarrierServiceCodeRequestMultiError) Error

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

type FindByCarrierServiceCodeRequestValidationError

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

FindByCarrierServiceCodeRequestValidationError is the validation error returned by FindByCarrierServiceCodeRequest.Validate if the designated constraints aren't met.

func (FindByCarrierServiceCodeRequestValidationError) Cause

Cause function returns cause value.

func (FindByCarrierServiceCodeRequestValidationError) Error

Error satisfies the builtin error interface

func (FindByCarrierServiceCodeRequestValidationError) ErrorName

ErrorName returns error name.

func (FindByCarrierServiceCodeRequestValidationError) Field

Field function returns field value.

func (FindByCarrierServiceCodeRequestValidationError) Key

Key function returns key value.

func (FindByCarrierServiceCodeRequestValidationError) Reason

Reason function returns reason value.

type FindByCarrierServiceCodeResponse

type FindByCarrierServiceCodeResponse struct {
	Service1 *Service `protobuf:"bytes,1,opt,name=service1,proto3" json:"service1,omitempty"`
	// contains filtered or unexported fields
}

func (*FindByCarrierServiceCodeResponse) Descriptor deprecated

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

Deprecated: Use FindByCarrierServiceCodeResponse.ProtoReflect.Descriptor instead.

func (*FindByCarrierServiceCodeResponse) GetService1

func (x *FindByCarrierServiceCodeResponse) GetService1() *Service

func (*FindByCarrierServiceCodeResponse) ProtoMessage

func (*FindByCarrierServiceCodeResponse) ProtoMessage()

func (*FindByCarrierServiceCodeResponse) ProtoReflect

func (*FindByCarrierServiceCodeResponse) Reset

func (*FindByCarrierServiceCodeResponse) String

func (*FindByCarrierServiceCodeResponse) Validate

Validate checks the field values on FindByCarrierServiceCodeResponse 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 (*FindByCarrierServiceCodeResponse) ValidateAll

func (m *FindByCarrierServiceCodeResponse) ValidateAll() error

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

type FindByCarrierServiceCodeResponseMultiError

type FindByCarrierServiceCodeResponseMultiError []error

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

func (FindByCarrierServiceCodeResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (FindByCarrierServiceCodeResponseMultiError) Error

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

type FindByCarrierServiceCodeResponseValidationError

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

FindByCarrierServiceCodeResponseValidationError is the validation error returned by FindByCarrierServiceCodeResponse.Validate if the designated constraints aren't met.

func (FindByCarrierServiceCodeResponseValidationError) Cause

Cause function returns cause value.

func (FindByCarrierServiceCodeResponseValidationError) Error

Error satisfies the builtin error interface

func (FindByCarrierServiceCodeResponseValidationError) ErrorName

ErrorName returns error name.

func (FindByCarrierServiceCodeResponseValidationError) Field

Field function returns field value.

func (FindByCarrierServiceCodeResponseValidationError) Key

Key function returns key value.

func (FindByCarrierServiceCodeResponseValidationError) Reason

Reason function returns reason value.

type GetServiceByPkRequest

type GetServiceByPkRequest struct {
	GetByIdRequest *v1.GetByIdRequest `protobuf:"bytes,1,opt,name=get_by_id_request,json=getByIdRequest,proto3" json:"get_by_id_request,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServiceByPkRequest) Descriptor deprecated

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

Deprecated: Use GetServiceByPkRequest.ProtoReflect.Descriptor instead.

func (*GetServiceByPkRequest) GetGetByIdRequest

func (x *GetServiceByPkRequest) GetGetByIdRequest() *v1.GetByIdRequest

func (*GetServiceByPkRequest) ProtoMessage

func (*GetServiceByPkRequest) ProtoMessage()

func (*GetServiceByPkRequest) ProtoReflect

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

func (*GetServiceByPkRequest) Reset

func (x *GetServiceByPkRequest) Reset()

func (*GetServiceByPkRequest) String

func (x *GetServiceByPkRequest) String() string

func (*GetServiceByPkRequest) Validate

func (m *GetServiceByPkRequest) Validate() error

Validate checks the field values on GetServiceByPkRequest 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 (*GetServiceByPkRequest) ValidateAll

func (m *GetServiceByPkRequest) ValidateAll() error

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

type GetServiceByPkRequestMultiError

type GetServiceByPkRequestMultiError []error

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

func (GetServiceByPkRequestMultiError) AllErrors

func (m GetServiceByPkRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetServiceByPkRequestMultiError) Error

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

type GetServiceByPkRequestValidationError

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

GetServiceByPkRequestValidationError is the validation error returned by GetServiceByPkRequest.Validate if the designated constraints aren't met.

func (GetServiceByPkRequestValidationError) Cause

Cause function returns cause value.

func (GetServiceByPkRequestValidationError) Error

Error satisfies the builtin error interface

func (GetServiceByPkRequestValidationError) ErrorName

ErrorName returns error name.

func (GetServiceByPkRequestValidationError) Field

Field function returns field value.

func (GetServiceByPkRequestValidationError) Key

Key function returns key value.

func (GetServiceByPkRequestValidationError) Reason

Reason function returns reason value.

type GetServiceByPkResponse

type GetServiceByPkResponse struct {
	Service1 *Service `protobuf:"bytes,1,opt,name=service1,proto3" json:"service1,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServiceByPkResponse) Descriptor deprecated

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

Deprecated: Use GetServiceByPkResponse.ProtoReflect.Descriptor instead.

func (*GetServiceByPkResponse) GetService1

func (x *GetServiceByPkResponse) GetService1() *Service

func (*GetServiceByPkResponse) ProtoMessage

func (*GetServiceByPkResponse) ProtoMessage()

func (*GetServiceByPkResponse) ProtoReflect

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

func (*GetServiceByPkResponse) Reset

func (x *GetServiceByPkResponse) Reset()

func (*GetServiceByPkResponse) String

func (x *GetServiceByPkResponse) String() string

func (*GetServiceByPkResponse) Validate

func (m *GetServiceByPkResponse) Validate() error

Validate checks the field values on GetServiceByPkResponse 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 (*GetServiceByPkResponse) ValidateAll

func (m *GetServiceByPkResponse) ValidateAll() error

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

type GetServiceByPkResponseMultiError

type GetServiceByPkResponseMultiError []error

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

func (GetServiceByPkResponseMultiError) AllErrors

func (m GetServiceByPkResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetServiceByPkResponseMultiError) Error

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

type GetServiceByPkResponseValidationError

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

GetServiceByPkResponseValidationError is the validation error returned by GetServiceByPkResponse.Validate if the designated constraints aren't met.

func (GetServiceByPkResponseValidationError) Cause

Cause function returns cause value.

func (GetServiceByPkResponseValidationError) Error

Error satisfies the builtin error interface

func (GetServiceByPkResponseValidationError) ErrorName

ErrorName returns error name.

func (GetServiceByPkResponseValidationError) Field

Field function returns field value.

func (GetServiceByPkResponseValidationError) Key

Key function returns key value.

func (GetServiceByPkResponseValidationError) Reason

Reason function returns reason value.

type GetServiceRequest

type GetServiceRequest struct {
	GetRequest *v1.GetRequest `protobuf:"bytes,1,opt,name=get_request,json=getRequest,proto3" json:"get_request,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServiceRequest) Descriptor deprecated

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

Deprecated: Use GetServiceRequest.ProtoReflect.Descriptor instead.

func (*GetServiceRequest) GetGetRequest

func (x *GetServiceRequest) GetGetRequest() *v1.GetRequest

func (*GetServiceRequest) ProtoMessage

func (*GetServiceRequest) ProtoMessage()

func (*GetServiceRequest) ProtoReflect

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

func (*GetServiceRequest) Reset

func (x *GetServiceRequest) Reset()

func (*GetServiceRequest) String

func (x *GetServiceRequest) String() string

func (*GetServiceRequest) Validate

func (m *GetServiceRequest) Validate() error

Validate checks the field values on GetServiceRequest 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 (*GetServiceRequest) ValidateAll

func (m *GetServiceRequest) ValidateAll() error

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

type GetServiceRequestMultiError

type GetServiceRequestMultiError []error

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

func (GetServiceRequestMultiError) AllErrors

func (m GetServiceRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetServiceRequestMultiError) Error

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

type GetServiceRequestValidationError

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

GetServiceRequestValidationError is the validation error returned by GetServiceRequest.Validate if the designated constraints aren't met.

func (GetServiceRequestValidationError) Cause

Cause function returns cause value.

func (GetServiceRequestValidationError) Error

Error satisfies the builtin error interface

func (GetServiceRequestValidationError) ErrorName

ErrorName returns error name.

func (GetServiceRequestValidationError) Field

Field function returns field value.

func (GetServiceRequestValidationError) Key

Key function returns key value.

func (GetServiceRequestValidationError) Reason

Reason function returns reason value.

type GetServiceResponse

type GetServiceResponse struct {
	Service1 *Service `protobuf:"bytes,1,opt,name=service1,proto3" json:"service1,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServiceResponse) Descriptor deprecated

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

Deprecated: Use GetServiceResponse.ProtoReflect.Descriptor instead.

func (*GetServiceResponse) GetService1

func (x *GetServiceResponse) GetService1() *Service

func (*GetServiceResponse) ProtoMessage

func (*GetServiceResponse) ProtoMessage()

func (*GetServiceResponse) ProtoReflect

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

func (*GetServiceResponse) Reset

func (x *GetServiceResponse) Reset()

func (*GetServiceResponse) String

func (x *GetServiceResponse) String() string

func (*GetServiceResponse) Validate

func (m *GetServiceResponse) Validate() error

Validate checks the field values on GetServiceResponse 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 (*GetServiceResponse) ValidateAll

func (m *GetServiceResponse) ValidateAll() error

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

type GetServiceResponseMultiError

type GetServiceResponseMultiError []error

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

func (GetServiceResponseMultiError) AllErrors

func (m GetServiceResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetServiceResponseMultiError) Error

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

type GetServiceResponseValidationError

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

GetServiceResponseValidationError is the validation error returned by GetServiceResponse.Validate if the designated constraints aren't met.

func (GetServiceResponseValidationError) Cause

Cause function returns cause value.

func (GetServiceResponseValidationError) Error

Error satisfies the builtin error interface

func (GetServiceResponseValidationError) ErrorName

ErrorName returns error name.

func (GetServiceResponseValidationError) Field

Field function returns field value.

func (GetServiceResponseValidationError) Key

Key function returns key value.

func (GetServiceResponseValidationError) Reason

Reason function returns reason value.

type GetServicesRequest

type GetServicesRequest struct {
	Limit      string `protobuf:"bytes,1,opt,name=limit,proto3" json:"limit,omitempty"`
	NextCursor string `protobuf:"bytes,2,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
	UserEmail  string `protobuf:"bytes,3,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
	RequestId  string `protobuf:"bytes,4,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServicesRequest) Descriptor deprecated

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

Deprecated: Use GetServicesRequest.ProtoReflect.Descriptor instead.

func (*GetServicesRequest) GetLimit

func (x *GetServicesRequest) GetLimit() string

func (*GetServicesRequest) GetNextCursor

func (x *GetServicesRequest) GetNextCursor() string

func (*GetServicesRequest) GetRequestId

func (x *GetServicesRequest) GetRequestId() string

func (*GetServicesRequest) GetUserEmail

func (x *GetServicesRequest) GetUserEmail() string

func (*GetServicesRequest) ProtoMessage

func (*GetServicesRequest) ProtoMessage()

func (*GetServicesRequest) ProtoReflect

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

func (*GetServicesRequest) Reset

func (x *GetServicesRequest) Reset()

func (*GetServicesRequest) String

func (x *GetServicesRequest) String() string

func (*GetServicesRequest) Validate

func (m *GetServicesRequest) Validate() error

Validate checks the field values on GetServicesRequest 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 (*GetServicesRequest) ValidateAll

func (m *GetServicesRequest) ValidateAll() error

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

type GetServicesRequestMultiError

type GetServicesRequestMultiError []error

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

func (GetServicesRequestMultiError) AllErrors

func (m GetServicesRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetServicesRequestMultiError) Error

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

type GetServicesRequestValidationError

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

GetServicesRequestValidationError is the validation error returned by GetServicesRequest.Validate if the designated constraints aren't met.

func (GetServicesRequestValidationError) Cause

Cause function returns cause value.

func (GetServicesRequestValidationError) Error

Error satisfies the builtin error interface

func (GetServicesRequestValidationError) ErrorName

ErrorName returns error name.

func (GetServicesRequestValidationError) Field

Field function returns field value.

func (GetServicesRequestValidationError) Key

Key function returns key value.

func (GetServicesRequestValidationError) Reason

Reason function returns reason value.

type GetServicesResponse

type GetServicesResponse struct {
	Services   []*Service `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
	NextCursor string     `protobuf:"bytes,2,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*GetServicesResponse) Descriptor deprecated

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

Deprecated: Use GetServicesResponse.ProtoReflect.Descriptor instead.

func (*GetServicesResponse) GetNextCursor

func (x *GetServicesResponse) GetNextCursor() string

func (*GetServicesResponse) GetServices

func (x *GetServicesResponse) GetServices() []*Service

func (*GetServicesResponse) ProtoMessage

func (*GetServicesResponse) ProtoMessage()

func (*GetServicesResponse) ProtoReflect

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

func (*GetServicesResponse) Reset

func (x *GetServicesResponse) Reset()

func (*GetServicesResponse) String

func (x *GetServicesResponse) String() string

func (*GetServicesResponse) Validate

func (m *GetServicesResponse) Validate() error

Validate checks the field values on GetServicesResponse 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 (*GetServicesResponse) ValidateAll

func (m *GetServicesResponse) ValidateAll() error

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

type GetServicesResponseMultiError

type GetServicesResponseMultiError []error

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

func (GetServicesResponseMultiError) AllErrors

func (m GetServicesResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetServicesResponseMultiError) Error

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

type GetServicesResponseValidationError

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

GetServicesResponseValidationError is the validation error returned by GetServicesResponse.Validate if the designated constraints aren't met.

func (GetServicesResponseValidationError) Cause

Cause function returns cause value.

func (GetServicesResponseValidationError) Error

Error satisfies the builtin error interface

func (GetServicesResponseValidationError) ErrorName

ErrorName returns error name.

func (GetServicesResponseValidationError) Field

Field function returns field value.

func (GetServicesResponseValidationError) Key

Key function returns key value.

func (GetServicesResponseValidationError) Reason

Reason function returns reason value.

type GetTimestampsRequest

type GetTimestampsRequest struct {
	Limit      string `protobuf:"bytes,1,opt,name=limit,proto3" json:"limit,omitempty"`
	NextCursor string `protobuf:"bytes,2,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
	UserEmail  string `protobuf:"bytes,3,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
	RequestId  string `protobuf:"bytes,4,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTimestampsRequest) Descriptor deprecated

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

Deprecated: Use GetTimestampsRequest.ProtoReflect.Descriptor instead.

func (*GetTimestampsRequest) GetLimit

func (x *GetTimestampsRequest) GetLimit() string

func (*GetTimestampsRequest) GetNextCursor

func (x *GetTimestampsRequest) GetNextCursor() string

func (*GetTimestampsRequest) GetRequestId

func (x *GetTimestampsRequest) GetRequestId() string

func (*GetTimestampsRequest) GetUserEmail

func (x *GetTimestampsRequest) GetUserEmail() string

func (*GetTimestampsRequest) ProtoMessage

func (*GetTimestampsRequest) ProtoMessage()

func (*GetTimestampsRequest) ProtoReflect

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

func (*GetTimestampsRequest) Reset

func (x *GetTimestampsRequest) Reset()

func (*GetTimestampsRequest) String

func (x *GetTimestampsRequest) String() string

func (*GetTimestampsRequest) Validate

func (m *GetTimestampsRequest) Validate() error

Validate checks the field values on GetTimestampsRequest 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 (*GetTimestampsRequest) ValidateAll

func (m *GetTimestampsRequest) ValidateAll() error

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

type GetTimestampsRequestMultiError

type GetTimestampsRequestMultiError []error

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

func (GetTimestampsRequestMultiError) AllErrors

func (m GetTimestampsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetTimestampsRequestMultiError) Error

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

type GetTimestampsRequestValidationError

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

GetTimestampsRequestValidationError is the validation error returned by GetTimestampsRequest.Validate if the designated constraints aren't met.

func (GetTimestampsRequestValidationError) Cause

Cause function returns cause value.

func (GetTimestampsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetTimestampsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetTimestampsRequestValidationError) Field

Field function returns field value.

func (GetTimestampsRequestValidationError) Key

Key function returns key value.

func (GetTimestampsRequestValidationError) Reason

Reason function returns reason value.

type GetTimestampsResponse

type GetTimestampsResponse struct {
	Timestamps []*Timestamp `protobuf:"bytes,1,rep,name=timestamps,proto3" json:"timestamps,omitempty"`
	NextCursor string       `protobuf:"bytes,2,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTimestampsResponse) Descriptor deprecated

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

Deprecated: Use GetTimestampsResponse.ProtoReflect.Descriptor instead.

func (*GetTimestampsResponse) GetNextCursor

func (x *GetTimestampsResponse) GetNextCursor() string

func (*GetTimestampsResponse) GetTimestamps

func (x *GetTimestampsResponse) GetTimestamps() []*Timestamp

func (*GetTimestampsResponse) ProtoMessage

func (*GetTimestampsResponse) ProtoMessage()

func (*GetTimestampsResponse) ProtoReflect

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

func (*GetTimestampsResponse) Reset

func (x *GetTimestampsResponse) Reset()

func (*GetTimestampsResponse) String

func (x *GetTimestampsResponse) String() string

func (*GetTimestampsResponse) Validate

func (m *GetTimestampsResponse) Validate() error

Validate checks the field values on GetTimestampsResponse 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 (*GetTimestampsResponse) ValidateAll

func (m *GetTimestampsResponse) ValidateAll() error

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

type GetTimestampsResponseMultiError

type GetTimestampsResponseMultiError []error

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

func (GetTimestampsResponseMultiError) AllErrors

func (m GetTimestampsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetTimestampsResponseMultiError) Error

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

type GetTimestampsResponseValidationError

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

GetTimestampsResponseValidationError is the validation error returned by GetTimestampsResponse.Validate if the designated constraints aren't met.

func (GetTimestampsResponseValidationError) Cause

Cause function returns cause value.

func (GetTimestampsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetTimestampsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetTimestampsResponseValidationError) Field

Field function returns field value.

func (GetTimestampsResponseValidationError) Key

Key function returns key value.

func (GetTimestampsResponseValidationError) Reason

Reason function returns reason value.

type Service

type Service struct {
	ServiceD  *ServiceD     `protobuf:"bytes,1,opt,name=service_d,json=serviceD,proto3" json:"service_d,omitempty"`
	CrUpdUser *v1.CrUpdUser `protobuf:"bytes,2,opt,name=cr_upd_user,json=crUpdUser,proto3" json:"cr_upd_user,omitempty"`
	CrUpdTime *v1.CrUpdTime `protobuf:"bytes,3,opt,name=cr_upd_time,json=crUpdTime,proto3" json:"cr_upd_time,omitempty"`
	// contains filtered or unexported fields
}

func (*Service) Descriptor deprecated

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

Deprecated: Use Service.ProtoReflect.Descriptor instead.

func (*Service) GetCrUpdTime

func (x *Service) GetCrUpdTime() *v1.CrUpdTime

func (*Service) GetCrUpdUser

func (x *Service) GetCrUpdUser() *v1.CrUpdUser

func (*Service) GetServiceD

func (x *Service) GetServiceD() *ServiceD

func (*Service) ProtoMessage

func (*Service) ProtoMessage()

func (*Service) ProtoReflect

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

func (*Service) Reset

func (x *Service) Reset()

func (*Service) String

func (x *Service) String() string

func (*Service) Validate

func (m *Service) Validate() error

Validate checks the field values on Service 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 (*Service) ValidateAll

func (m *Service) ValidateAll() error

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

type ServiceD

type ServiceD struct {
	Id                        uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Uuid4                     []byte `protobuf:"bytes,2,opt,name=uuid4,proto3" json:"uuid4,omitempty"`
	IdS                       string `protobuf:"bytes,3,opt,name=id_s,json=idS,proto3" json:"id_s,omitempty"`
	CarrierId                 uint32 `protobuf:"varint,4,opt,name=carrier_id,json=carrierId,proto3" json:"carrier_id,omitempty"`
	CarrierServiceName        string `protobuf:"bytes,5,opt,name=carrier_service_name,json=carrierServiceName,proto3" json:"carrier_service_name,omitempty"`
	CarrierServiceCode        string `protobuf:"bytes,6,opt,name=carrier_service_code,json=carrierServiceCode,proto3" json:"carrier_service_code,omitempty"`
	TradelaneId               string `protobuf:"bytes,7,opt,name=tradelane_id,json=tradelaneId,proto3" json:"tradelane_id,omitempty"`
	UniversalServiceReference string `` /* 138-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ServiceD) Descriptor deprecated

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

Deprecated: Use ServiceD.ProtoReflect.Descriptor instead.

func (*ServiceD) GetCarrierId

func (x *ServiceD) GetCarrierId() uint32

func (*ServiceD) GetCarrierServiceCode

func (x *ServiceD) GetCarrierServiceCode() string

func (*ServiceD) GetCarrierServiceName

func (x *ServiceD) GetCarrierServiceName() string

func (*ServiceD) GetId

func (x *ServiceD) GetId() uint32

func (*ServiceD) GetIdS

func (x *ServiceD) GetIdS() string

func (*ServiceD) GetTradelaneId

func (x *ServiceD) GetTradelaneId() string

func (*ServiceD) GetUniversalServiceReference

func (x *ServiceD) GetUniversalServiceReference() string

func (*ServiceD) GetUuid4

func (x *ServiceD) GetUuid4() []byte

func (*ServiceD) ProtoMessage

func (*ServiceD) ProtoMessage()

func (*ServiceD) ProtoReflect

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

func (*ServiceD) Reset

func (x *ServiceD) Reset()

func (*ServiceD) String

func (x *ServiceD) String() string

func (*ServiceD) Validate

func (m *ServiceD) Validate() error

Validate checks the field values on ServiceD 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 (*ServiceD) ValidateAll

func (m *ServiceD) ValidateAll() error

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

type ServiceDMultiError

type ServiceDMultiError []error

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

func (ServiceDMultiError) AllErrors

func (m ServiceDMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceDMultiError) Error

func (m ServiceDMultiError) Error() string

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

type ServiceDValidationError

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

ServiceDValidationError is the validation error returned by ServiceD.Validate if the designated constraints aren't met.

func (ServiceDValidationError) Cause

func (e ServiceDValidationError) Cause() error

Cause function returns cause value.

func (ServiceDValidationError) Error

func (e ServiceDValidationError) Error() string

Error satisfies the builtin error interface

func (ServiceDValidationError) ErrorName

func (e ServiceDValidationError) ErrorName() string

ErrorName returns error name.

func (ServiceDValidationError) Field

func (e ServiceDValidationError) Field() string

Field function returns field value.

func (ServiceDValidationError) Key

func (e ServiceDValidationError) Key() bool

Key function returns key value.

func (ServiceDValidationError) Reason

func (e ServiceDValidationError) Reason() string

Reason function returns reason value.

type ServiceMultiError

type ServiceMultiError []error

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

func (ServiceMultiError) AllErrors

func (m ServiceMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceMultiError) Error

func (m ServiceMultiError) Error() string

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

type ServiceServiceClient

type ServiceServiceClient interface {
	CreateService(ctx context.Context, in *CreateServiceRequest, opts ...grpc.CallOption) (*CreateServiceResponse, error)
	GetServices(ctx context.Context, in *GetServicesRequest, opts ...grpc.CallOption) (*GetServicesResponse, error)
	GetService(ctx context.Context, in *GetServiceRequest, opts ...grpc.CallOption) (*GetServiceResponse, error)
	GetServiceByPk(ctx context.Context, in *GetServiceByPkRequest, opts ...grpc.CallOption) (*GetServiceByPkResponse, error)
	FindByCarrierServiceCode(ctx context.Context, in *FindByCarrierServiceCodeRequest, opts ...grpc.CallOption) (*FindByCarrierServiceCodeResponse, error)
}

ServiceServiceClient is the client API for ServiceService 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.

The Service service definition.

type ServiceServiceServer

type ServiceServiceServer interface {
	CreateService(context.Context, *CreateServiceRequest) (*CreateServiceResponse, error)
	GetServices(context.Context, *GetServicesRequest) (*GetServicesResponse, error)
	GetService(context.Context, *GetServiceRequest) (*GetServiceResponse, error)
	GetServiceByPk(context.Context, *GetServiceByPkRequest) (*GetServiceByPkResponse, error)
	FindByCarrierServiceCode(context.Context, *FindByCarrierServiceCodeRequest) (*FindByCarrierServiceCodeResponse, error)
	// contains filtered or unexported methods
}

ServiceServiceServer is the server API for ServiceService service. All implementations must embed UnimplementedServiceServiceServer for forward compatibility.

The Service service definition.

type ServiceValidationError

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

ServiceValidationError is the validation error returned by Service.Validate if the designated constraints aren't met.

func (ServiceValidationError) Cause

func (e ServiceValidationError) Cause() error

Cause function returns cause value.

func (ServiceValidationError) Error

func (e ServiceValidationError) Error() string

Error satisfies the builtin error interface

func (ServiceValidationError) ErrorName

func (e ServiceValidationError) ErrorName() string

ErrorName returns error name.

func (ServiceValidationError) Field

func (e ServiceValidationError) Field() string

Field function returns field value.

func (ServiceValidationError) Key

func (e ServiceValidationError) Key() bool

Key function returns key value.

func (ServiceValidationError) Reason

func (e ServiceValidationError) Reason() string

Reason function returns reason value.

type Timestamp

type Timestamp struct {
	TimestampD *TimestampD `protobuf:"bytes,1,opt,name=timestamp_d,json=timestampD,proto3" json:"timestamp_d,omitempty"`
	TimestampT *TimestampT `protobuf:"bytes,2,opt,name=timestamp_t,json=timestampT,proto3" json:"timestamp_t,omitempty"`
	// contains filtered or unexported fields
}

func (*Timestamp) Descriptor deprecated

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

Deprecated: Use Timestamp.ProtoReflect.Descriptor instead.

func (*Timestamp) GetTimestampD

func (x *Timestamp) GetTimestampD() *TimestampD

func (*Timestamp) GetTimestampT

func (x *Timestamp) GetTimestampT() *TimestampT

func (*Timestamp) ProtoMessage

func (*Timestamp) ProtoMessage()

func (*Timestamp) ProtoReflect

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

func (*Timestamp) Reset

func (x *Timestamp) Reset()

func (*Timestamp) String

func (x *Timestamp) String() string

func (*Timestamp) Validate

func (m *Timestamp) Validate() error

Validate checks the field values on Timestamp 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 (*Timestamp) ValidateAll

func (m *Timestamp) ValidateAll() error

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

type TimestampD

type TimestampD struct {
	Id                  uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Uuid4               []byte `protobuf:"bytes,2,opt,name=uuid4,proto3" json:"uuid4,omitempty"`
	IdS                 string `protobuf:"bytes,3,opt,name=id_s,json=idS,proto3" json:"id_s,omitempty"`
	EventTypeCode       string `protobuf:"bytes,4,opt,name=event_type_code,json=eventTypeCode,proto3" json:"event_type_code,omitempty"`
	EventClassifierCode string `protobuf:"bytes,5,opt,name=event_classifier_code,json=eventClassifierCode,proto3" json:"event_classifier_code,omitempty"`
	DelayReasonCode     string `protobuf:"bytes,6,opt,name=delay_reason_code,json=delayReasonCode,proto3" json:"delay_reason_code,omitempty"`
	ChangeRemark        string `protobuf:"bytes,7,opt,name=change_remark,json=changeRemark,proto3" json:"change_remark,omitempty"`
	// contains filtered or unexported fields
}

func (*TimestampD) Descriptor deprecated

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

Deprecated: Use TimestampD.ProtoReflect.Descriptor instead.

func (*TimestampD) GetChangeRemark

func (x *TimestampD) GetChangeRemark() string

func (*TimestampD) GetDelayReasonCode

func (x *TimestampD) GetDelayReasonCode() string

func (*TimestampD) GetEventClassifierCode

func (x *TimestampD) GetEventClassifierCode() string

func (*TimestampD) GetEventTypeCode

func (x *TimestampD) GetEventTypeCode() string

func (*TimestampD) GetId

func (x *TimestampD) GetId() uint32

func (*TimestampD) GetIdS

func (x *TimestampD) GetIdS() string

func (*TimestampD) GetUuid4

func (x *TimestampD) GetUuid4() []byte

func (*TimestampD) ProtoMessage

func (*TimestampD) ProtoMessage()

func (*TimestampD) ProtoReflect

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

func (*TimestampD) Reset

func (x *TimestampD) Reset()

func (*TimestampD) String

func (x *TimestampD) String() string

func (*TimestampD) Validate

func (m *TimestampD) Validate() error

Validate checks the field values on TimestampD 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 (*TimestampD) ValidateAll

func (m *TimestampD) ValidateAll() error

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

type TimestampDMultiError

type TimestampDMultiError []error

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

func (TimestampDMultiError) AllErrors

func (m TimestampDMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TimestampDMultiError) Error

func (m TimestampDMultiError) Error() string

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

type TimestampDValidationError

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

TimestampDValidationError is the validation error returned by TimestampD.Validate if the designated constraints aren't met.

func (TimestampDValidationError) Cause

func (e TimestampDValidationError) Cause() error

Cause function returns cause value.

func (TimestampDValidationError) Error

Error satisfies the builtin error interface

func (TimestampDValidationError) ErrorName

func (e TimestampDValidationError) ErrorName() string

ErrorName returns error name.

func (TimestampDValidationError) Field

Field function returns field value.

func (TimestampDValidationError) Key

Key function returns key value.

func (TimestampDValidationError) Reason

func (e TimestampDValidationError) Reason() string

Reason function returns reason value.

type TimestampMultiError

type TimestampMultiError []error

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

func (TimestampMultiError) AllErrors

func (m TimestampMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TimestampMultiError) Error

func (m TimestampMultiError) Error() string

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

type TimestampServiceClient

type TimestampServiceClient interface {
	CreateTimestamp(ctx context.Context, in *CreateTimestampRequest, opts ...grpc.CallOption) (*CreateTimestampResponse, error)
	GetTimestamps(ctx context.Context, in *GetTimestampsRequest, opts ...grpc.CallOption) (*GetTimestampsResponse, error)
}

TimestampServiceClient is the client API for TimestampService 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.

The TimestampService service definition.

type TimestampServiceServer

type TimestampServiceServer interface {
	CreateTimestamp(context.Context, *CreateTimestampRequest) (*CreateTimestampResponse, error)
	GetTimestamps(context.Context, *GetTimestampsRequest) (*GetTimestampsResponse, error)
	// contains filtered or unexported methods
}

TimestampServiceServer is the server API for TimestampService service. All implementations must embed UnimplementedTimestampServiceServer for forward compatibility.

The TimestampService service definition.

type TimestampT

type TimestampT struct {
	EventDateTime *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=event_date_time,json=eventDateTime,proto3" json:"event_date_time,omitempty"`
	// contains filtered or unexported fields
}

func (*TimestampT) Descriptor deprecated

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

Deprecated: Use TimestampT.ProtoReflect.Descriptor instead.

func (*TimestampT) GetEventDateTime

func (x *TimestampT) GetEventDateTime() *timestamppb.Timestamp

func (*TimestampT) ProtoMessage

func (*TimestampT) ProtoMessage()

func (*TimestampT) ProtoReflect

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

func (*TimestampT) Reset

func (x *TimestampT) Reset()

func (*TimestampT) String

func (x *TimestampT) String() string

func (*TimestampT) Validate

func (m *TimestampT) Validate() error

Validate checks the field values on TimestampT 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 (*TimestampT) ValidateAll

func (m *TimestampT) ValidateAll() error

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

type TimestampTMultiError

type TimestampTMultiError []error

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

func (TimestampTMultiError) AllErrors

func (m TimestampTMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TimestampTMultiError) Error

func (m TimestampTMultiError) Error() string

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

type TimestampTValidationError

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

TimestampTValidationError is the validation error returned by TimestampT.Validate if the designated constraints aren't met.

func (TimestampTValidationError) Cause

func (e TimestampTValidationError) Cause() error

Cause function returns cause value.

func (TimestampTValidationError) Error

Error satisfies the builtin error interface

func (TimestampTValidationError) ErrorName

func (e TimestampTValidationError) ErrorName() string

ErrorName returns error name.

func (TimestampTValidationError) Field

Field function returns field value.

func (TimestampTValidationError) Key

Key function returns key value.

func (TimestampTValidationError) Reason

func (e TimestampTValidationError) Reason() string

Reason function returns reason value.

type TimestampValidationError

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

TimestampValidationError is the validation error returned by Timestamp.Validate if the designated constraints aren't met.

func (TimestampValidationError) Cause

func (e TimestampValidationError) Cause() error

Cause function returns cause value.

func (TimestampValidationError) Error

func (e TimestampValidationError) Error() string

Error satisfies the builtin error interface

func (TimestampValidationError) ErrorName

func (e TimestampValidationError) ErrorName() string

ErrorName returns error name.

func (TimestampValidationError) Field

func (e TimestampValidationError) Field() string

Field function returns field value.

func (TimestampValidationError) Key

Key function returns key value.

func (TimestampValidationError) Reason

func (e TimestampValidationError) Reason() string

Reason function returns reason value.

type UnimplementedServiceServiceServer

type UnimplementedServiceServiceServer struct{}

UnimplementedServiceServiceServer must be embedded to have forward compatible implementations.

NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.

func (UnimplementedServiceServiceServer) CreateService

func (UnimplementedServiceServiceServer) GetService

func (UnimplementedServiceServiceServer) GetServiceByPk

func (UnimplementedServiceServiceServer) GetServices

type UnimplementedTimestampServiceServer

type UnimplementedTimestampServiceServer struct{}

UnimplementedTimestampServiceServer must be embedded to have forward compatible implementations.

NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.

func (UnimplementedTimestampServiceServer) CreateTimestamp

func (UnimplementedTimestampServiceServer) GetTimestamps

type UnsafeServiceServiceServer

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

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

type UnsafeTimestampServiceServer

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

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

Jump to

Keyboard shortcuts

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