Documentation ¶
Index ¶
- func NewAttributeServiceEndpoints() []*api.Endpoint
- func RegisterAttributeServiceHandler(s server.Server, hdlr AttributeServiceHandler, opts ...server.HandlerOption) error
- type AttributeService
- type AttributeServiceHandler
- type GetAttributeRequest
- func (*GetAttributeRequest) Descriptor() ([]byte, []int)
- func (m *GetAttributeRequest) GetFilter() *shared.DefaultFilter
- func (m *GetAttributeRequest) GetUuid() string
- func (*GetAttributeRequest) ProtoMessage()
- func (m *GetAttributeRequest) Reset()
- func (m *GetAttributeRequest) String() string
- func (m *GetAttributeRequest) Validate() error
- func (m *GetAttributeRequest) XXX_DiscardUnknown()
- func (m *GetAttributeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *GetAttributeRequest) XXX_Merge(src proto.Message)
- func (m *GetAttributeRequest) XXX_Size() int
- func (m *GetAttributeRequest) XXX_Unmarshal(b []byte) error
- type GetAttributeRequestValidationError
- func (e GetAttributeRequestValidationError) Cause() error
- func (e GetAttributeRequestValidationError) Error() string
- func (e GetAttributeRequestValidationError) ErrorName() string
- func (e GetAttributeRequestValidationError) Field() string
- func (e GetAttributeRequestValidationError) Key() bool
- func (e GetAttributeRequestValidationError) Reason() string
- type GetAttributeResponse
- func (*GetAttributeResponse) Descriptor() ([]byte, []int)
- func (m *GetAttributeResponse) GetData() *attribute.AttributeFrontItem
- func (*GetAttributeResponse) ProtoMessage()
- func (m *GetAttributeResponse) Reset()
- func (m *GetAttributeResponse) String() string
- func (m *GetAttributeResponse) Validate() error
- func (m *GetAttributeResponse) XXX_DiscardUnknown()
- func (m *GetAttributeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *GetAttributeResponse) XXX_Merge(src proto.Message)
- func (m *GetAttributeResponse) XXX_Size() int
- func (m *GetAttributeResponse) XXX_Unmarshal(b []byte) error
- type GetAttributeResponseValidationError
- func (e GetAttributeResponseValidationError) Cause() error
- func (e GetAttributeResponseValidationError) Error() string
- func (e GetAttributeResponseValidationError) ErrorName() string
- func (e GetAttributeResponseValidationError) Field() string
- func (e GetAttributeResponseValidationError) Key() bool
- func (e GetAttributeResponseValidationError) Reason() string
- type PaginateAttributeRequest
- func (*PaginateAttributeRequest) Descriptor() ([]byte, []int)
- func (m *PaginateAttributeRequest) GetFilter() *shared.DefaultFilter
- func (m *PaginateAttributeRequest) GetLimit() int64
- func (m *PaginateAttributeRequest) GetSkip() int64
- func (m *PaginateAttributeRequest) GetSort() string
- func (*PaginateAttributeRequest) ProtoMessage()
- func (m *PaginateAttributeRequest) Reset()
- func (m *PaginateAttributeRequest) String() string
- func (m *PaginateAttributeRequest) Validate() error
- func (m *PaginateAttributeRequest) XXX_DiscardUnknown()
- func (m *PaginateAttributeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *PaginateAttributeRequest) XXX_Merge(src proto.Message)
- func (m *PaginateAttributeRequest) XXX_Size() int
- func (m *PaginateAttributeRequest) XXX_Unmarshal(b []byte) error
- type PaginateAttributeRequestValidationError
- func (e PaginateAttributeRequestValidationError) Cause() error
- func (e PaginateAttributeRequestValidationError) Error() string
- func (e PaginateAttributeRequestValidationError) ErrorName() string
- func (e PaginateAttributeRequestValidationError) Field() string
- func (e PaginateAttributeRequestValidationError) Key() bool
- func (e PaginateAttributeRequestValidationError) Reason() string
- type PaginateAttributeResponse
- func (*PaginateAttributeResponse) Descriptor() ([]byte, []int)
- func (m *PaginateAttributeResponse) GetData() []*attribute.AttributeFrontItem
- func (m *PaginateAttributeResponse) GetLimit() int64
- func (m *PaginateAttributeResponse) GetSkip() int64
- func (m *PaginateAttributeResponse) GetTotal() int64
- func (*PaginateAttributeResponse) ProtoMessage()
- func (m *PaginateAttributeResponse) Reset()
- func (m *PaginateAttributeResponse) String() string
- func (m *PaginateAttributeResponse) Validate() error
- func (m *PaginateAttributeResponse) XXX_DiscardUnknown()
- func (m *PaginateAttributeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *PaginateAttributeResponse) XXX_Merge(src proto.Message)
- func (m *PaginateAttributeResponse) XXX_Size() int
- func (m *PaginateAttributeResponse) XXX_Unmarshal(b []byte) error
- type PaginateAttributeResponseValidationError
- func (e PaginateAttributeResponseValidationError) Cause() error
- func (e PaginateAttributeResponseValidationError) Error() string
- func (e PaginateAttributeResponseValidationError) ErrorName() string
- func (e PaginateAttributeResponseValidationError) Field() string
- func (e PaginateAttributeResponseValidationError) Key() bool
- func (e PaginateAttributeResponseValidationError) Reason() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterAttributeServiceHandler ¶
func RegisterAttributeServiceHandler(s server.Server, hdlr AttributeServiceHandler, opts ...server.HandlerOption) error
Types ¶
type AttributeService ¶
type AttributeService interface { Paginate(ctx context.Context, in *PaginateAttributeRequest, opts ...client.CallOption) (*PaginateAttributeResponse, error) Get(ctx context.Context, in *GetAttributeRequest, opts ...client.CallOption) (*GetAttributeResponse, error) }
func NewAttributeService ¶
func NewAttributeService(name string, c client.Client) AttributeService
type AttributeServiceHandler ¶
type AttributeServiceHandler interface { Paginate(context.Context, *PaginateAttributeRequest, *PaginateAttributeResponse) error Get(context.Context, *GetAttributeRequest, *GetAttributeResponse) error }
type GetAttributeRequest ¶
type GetAttributeRequest struct { Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid"` Filter *shared.DefaultFilter `protobuf:"bytes,2,opt,name=filter,proto3" json:"filter"` }
func (*GetAttributeRequest) Descriptor ¶
func (*GetAttributeRequest) Descriptor() ([]byte, []int)
func (*GetAttributeRequest) GetFilter ¶
func (m *GetAttributeRequest) GetFilter() *shared.DefaultFilter
func (*GetAttributeRequest) GetUuid ¶
func (m *GetAttributeRequest) GetUuid() string
func (*GetAttributeRequest) ProtoMessage ¶
func (*GetAttributeRequest) ProtoMessage()
func (*GetAttributeRequest) Reset ¶
func (m *GetAttributeRequest) Reset()
func (*GetAttributeRequest) String ¶
func (m *GetAttributeRequest) String() string
func (*GetAttributeRequest) Validate ¶
func (m *GetAttributeRequest) Validate() error
Validate checks the field values on GetAttributeRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
func (*GetAttributeRequest) XXX_DiscardUnknown ¶
func (m *GetAttributeRequest) XXX_DiscardUnknown()
func (*GetAttributeRequest) XXX_Marshal ¶
func (m *GetAttributeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*GetAttributeRequest) XXX_Merge ¶
func (m *GetAttributeRequest) XXX_Merge(src proto.Message)
func (*GetAttributeRequest) XXX_Size ¶
func (m *GetAttributeRequest) XXX_Size() int
func (*GetAttributeRequest) XXX_Unmarshal ¶
func (m *GetAttributeRequest) XXX_Unmarshal(b []byte) error
type GetAttributeRequestValidationError ¶
type GetAttributeRequestValidationError struct {
// contains filtered or unexported fields
}
GetAttributeRequestValidationError is the validation error returned by GetAttributeRequest.Validate if the designated constraints aren't met.
func (GetAttributeRequestValidationError) Cause ¶
func (e GetAttributeRequestValidationError) Cause() error
Cause function returns cause value.
func (GetAttributeRequestValidationError) Error ¶
func (e GetAttributeRequestValidationError) Error() string
Error satisfies the builtin error interface
func (GetAttributeRequestValidationError) ErrorName ¶
func (e GetAttributeRequestValidationError) ErrorName() string
ErrorName returns error name.
func (GetAttributeRequestValidationError) Field ¶
func (e GetAttributeRequestValidationError) Field() string
Field function returns field value.
func (GetAttributeRequestValidationError) Key ¶
func (e GetAttributeRequestValidationError) Key() bool
Key function returns key value.
func (GetAttributeRequestValidationError) Reason ¶
func (e GetAttributeRequestValidationError) Reason() string
Reason function returns reason value.
type GetAttributeResponse ¶
type GetAttributeResponse struct {
Data *attribute.AttributeFrontItem `protobuf:"bytes,1,opt,name=data,proto3" json:"data"`
}
func (*GetAttributeResponse) Descriptor ¶
func (*GetAttributeResponse) Descriptor() ([]byte, []int)
func (*GetAttributeResponse) GetData ¶
func (m *GetAttributeResponse) GetData() *attribute.AttributeFrontItem
func (*GetAttributeResponse) ProtoMessage ¶
func (*GetAttributeResponse) ProtoMessage()
func (*GetAttributeResponse) Reset ¶
func (m *GetAttributeResponse) Reset()
func (*GetAttributeResponse) String ¶
func (m *GetAttributeResponse) String() string
func (*GetAttributeResponse) Validate ¶
func (m *GetAttributeResponse) Validate() error
Validate checks the field values on GetAttributeResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
func (*GetAttributeResponse) XXX_DiscardUnknown ¶
func (m *GetAttributeResponse) XXX_DiscardUnknown()
func (*GetAttributeResponse) XXX_Marshal ¶
func (m *GetAttributeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*GetAttributeResponse) XXX_Merge ¶
func (m *GetAttributeResponse) XXX_Merge(src proto.Message)
func (*GetAttributeResponse) XXX_Size ¶
func (m *GetAttributeResponse) XXX_Size() int
func (*GetAttributeResponse) XXX_Unmarshal ¶
func (m *GetAttributeResponse) XXX_Unmarshal(b []byte) error
type GetAttributeResponseValidationError ¶
type GetAttributeResponseValidationError struct {
// contains filtered or unexported fields
}
GetAttributeResponseValidationError is the validation error returned by GetAttributeResponse.Validate if the designated constraints aren't met.
func (GetAttributeResponseValidationError) Cause ¶
func (e GetAttributeResponseValidationError) Cause() error
Cause function returns cause value.
func (GetAttributeResponseValidationError) Error ¶
func (e GetAttributeResponseValidationError) Error() string
Error satisfies the builtin error interface
func (GetAttributeResponseValidationError) ErrorName ¶
func (e GetAttributeResponseValidationError) ErrorName() string
ErrorName returns error name.
func (GetAttributeResponseValidationError) Field ¶
func (e GetAttributeResponseValidationError) Field() string
Field function returns field value.
func (GetAttributeResponseValidationError) Key ¶
func (e GetAttributeResponseValidationError) Key() bool
Key function returns key value.
func (GetAttributeResponseValidationError) Reason ¶
func (e GetAttributeResponseValidationError) Reason() string
Reason function returns reason value.
type PaginateAttributeRequest ¶
type PaginateAttributeRequest struct { Skip int64 `protobuf:"varint,1,opt,name=skip,proto3" json:"skip"` Limit int64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit"` Sort string `protobuf:"bytes,3,opt,name=sort,proto3" json:"sort"` Filter *shared.DefaultFilter `protobuf:"bytes,4,opt,name=filter,proto3" json:"filter"` }
func (*PaginateAttributeRequest) Descriptor ¶
func (*PaginateAttributeRequest) Descriptor() ([]byte, []int)
func (*PaginateAttributeRequest) GetFilter ¶
func (m *PaginateAttributeRequest) GetFilter() *shared.DefaultFilter
func (*PaginateAttributeRequest) GetLimit ¶
func (m *PaginateAttributeRequest) GetLimit() int64
func (*PaginateAttributeRequest) GetSkip ¶
func (m *PaginateAttributeRequest) GetSkip() int64
func (*PaginateAttributeRequest) GetSort ¶
func (m *PaginateAttributeRequest) GetSort() string
func (*PaginateAttributeRequest) ProtoMessage ¶
func (*PaginateAttributeRequest) ProtoMessage()
func (*PaginateAttributeRequest) Reset ¶
func (m *PaginateAttributeRequest) Reset()
func (*PaginateAttributeRequest) String ¶
func (m *PaginateAttributeRequest) String() string
func (*PaginateAttributeRequest) Validate ¶
func (m *PaginateAttributeRequest) Validate() error
Validate checks the field values on PaginateAttributeRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
func (*PaginateAttributeRequest) XXX_DiscardUnknown ¶
func (m *PaginateAttributeRequest) XXX_DiscardUnknown()
func (*PaginateAttributeRequest) XXX_Marshal ¶
func (m *PaginateAttributeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*PaginateAttributeRequest) XXX_Merge ¶
func (m *PaginateAttributeRequest) XXX_Merge(src proto.Message)
func (*PaginateAttributeRequest) XXX_Size ¶
func (m *PaginateAttributeRequest) XXX_Size() int
func (*PaginateAttributeRequest) XXX_Unmarshal ¶
func (m *PaginateAttributeRequest) XXX_Unmarshal(b []byte) error
type PaginateAttributeRequestValidationError ¶
type PaginateAttributeRequestValidationError struct {
// contains filtered or unexported fields
}
PaginateAttributeRequestValidationError is the validation error returned by PaginateAttributeRequest.Validate if the designated constraints aren't met.
func (PaginateAttributeRequestValidationError) Cause ¶
func (e PaginateAttributeRequestValidationError) Cause() error
Cause function returns cause value.
func (PaginateAttributeRequestValidationError) Error ¶
func (e PaginateAttributeRequestValidationError) Error() string
Error satisfies the builtin error interface
func (PaginateAttributeRequestValidationError) ErrorName ¶
func (e PaginateAttributeRequestValidationError) ErrorName() string
ErrorName returns error name.
func (PaginateAttributeRequestValidationError) Field ¶
func (e PaginateAttributeRequestValidationError) Field() string
Field function returns field value.
func (PaginateAttributeRequestValidationError) Key ¶
func (e PaginateAttributeRequestValidationError) Key() bool
Key function returns key value.
func (PaginateAttributeRequestValidationError) Reason ¶
func (e PaginateAttributeRequestValidationError) Reason() string
Reason function returns reason value.
type PaginateAttributeResponse ¶
type PaginateAttributeResponse struct { Skip int64 `protobuf:"varint,1,opt,name=skip,proto3" json:"skip"` Limit int64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit"` Total int64 `protobuf:"varint,3,opt,name=total,proto3" json:"total"` Data []*attribute.AttributeFrontItem `protobuf:"bytes,4,rep,name=data,proto3" json:"data"` }
func (*PaginateAttributeResponse) Descriptor ¶
func (*PaginateAttributeResponse) Descriptor() ([]byte, []int)
func (*PaginateAttributeResponse) GetData ¶
func (m *PaginateAttributeResponse) GetData() []*attribute.AttributeFrontItem
func (*PaginateAttributeResponse) GetLimit ¶
func (m *PaginateAttributeResponse) GetLimit() int64
func (*PaginateAttributeResponse) GetSkip ¶
func (m *PaginateAttributeResponse) GetSkip() int64
func (*PaginateAttributeResponse) GetTotal ¶
func (m *PaginateAttributeResponse) GetTotal() int64
func (*PaginateAttributeResponse) ProtoMessage ¶
func (*PaginateAttributeResponse) ProtoMessage()
func (*PaginateAttributeResponse) Reset ¶
func (m *PaginateAttributeResponse) Reset()
func (*PaginateAttributeResponse) String ¶
func (m *PaginateAttributeResponse) String() string
func (*PaginateAttributeResponse) Validate ¶
func (m *PaginateAttributeResponse) Validate() error
Validate checks the field values on PaginateAttributeResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
func (*PaginateAttributeResponse) XXX_DiscardUnknown ¶
func (m *PaginateAttributeResponse) XXX_DiscardUnknown()
func (*PaginateAttributeResponse) XXX_Marshal ¶
func (m *PaginateAttributeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*PaginateAttributeResponse) XXX_Merge ¶
func (m *PaginateAttributeResponse) XXX_Merge(src proto.Message)
func (*PaginateAttributeResponse) XXX_Size ¶
func (m *PaginateAttributeResponse) XXX_Size() int
func (*PaginateAttributeResponse) XXX_Unmarshal ¶
func (m *PaginateAttributeResponse) XXX_Unmarshal(b []byte) error
type PaginateAttributeResponseValidationError ¶
type PaginateAttributeResponseValidationError struct {
// contains filtered or unexported fields
}
PaginateAttributeResponseValidationError is the validation error returned by PaginateAttributeResponse.Validate if the designated constraints aren't met.
func (PaginateAttributeResponseValidationError) Cause ¶
func (e PaginateAttributeResponseValidationError) Cause() error
Cause function returns cause value.
func (PaginateAttributeResponseValidationError) Error ¶
func (e PaginateAttributeResponseValidationError) Error() string
Error satisfies the builtin error interface
func (PaginateAttributeResponseValidationError) ErrorName ¶
func (e PaginateAttributeResponseValidationError) ErrorName() string
ErrorName returns error name.
func (PaginateAttributeResponseValidationError) Field ¶
func (e PaginateAttributeResponseValidationError) Field() string
Field function returns field value.
func (PaginateAttributeResponseValidationError) Key ¶
func (e PaginateAttributeResponseValidationError) Key() bool
Key function returns key value.
func (PaginateAttributeResponseValidationError) Reason ¶
func (e PaginateAttributeResponseValidationError) Reason() string
Reason function returns reason value.