tradingpoint

package
v0.0.48 Latest Latest
Warning

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

Go to latest
Published: Jun 10, 2024 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	TradingPointType_name = map[int32]string{
		0: "TRADING_POINT_STORE",
		1: "TRADING_POINT_DEPARTMENT_STORE",
		2: "TRADING_POINT_KIOSK",
		3: "TRADING_POINT_TRAY",
	}
	TradingPointType_value = map[string]int32{
		"TRADING_POINT_STORE":            0,
		"TRADING_POINT_DEPARTMENT_STORE": 1,
		"TRADING_POINT_KIOSK":            2,
		"TRADING_POINT_TRAY":             3,
	}
)

Enum value maps for TradingPointType.

View Source
var (
	PlaceOfWorkType_name = map[int32]string{
		0: "PLACE_OF_WORK_HALL",
		1: "PLACE_OF_WORK_KIOSK",
		2: "PLACE_OF_WORK_TRAY",
	}
	PlaceOfWorkType_value = map[string]int32{
		"PLACE_OF_WORK_HALL":  0,
		"PLACE_OF_WORK_KIOSK": 1,
		"PLACE_OF_WORK_TRAY":  2,
	}
)

Enum value maps for PlaceOfWorkType.

View Source
var (
	HallContainerType_name = map[int32]string{
		0: "HALL_CONTAINER_SECTION",
		1: "HALL_CONTAINER_STORE",
	}
	HallContainerType_value = map[string]int32{
		"HALL_CONTAINER_SECTION": 0,
		"HALL_CONTAINER_STORE":   1,
	}
)

Enum value maps for HallContainerType.

View Source
var (
	ReceiptingPointWithAccountingType_name = map[int32]string{
		0: "RECEIPTING_POINT_WITH_ACCOUNTING_DEPARTMENT_STORE",
		1: "RECEIPTING_POINT_WITH_ACCOUNTING_STORE",
	}
	ReceiptingPointWithAccountingType_value = map[string]int32{
		"RECEIPTING_POINT_WITH_ACCOUNTING_DEPARTMENT_STORE": 0,
		"RECEIPTING_POINT_WITH_ACCOUNTING_STORE":            1,
	}
)

Enum value maps for ReceiptingPointWithAccountingType.

View Source
var (
	ReceiptingPointWithoutAccountingType_name = map[int32]string{
		0: "RECEIPTING_POINT_WITHOUT_ACCOUNTING_KIOSK",
		1: "RECEIPTING_POINT_WITHOUT_ACCOUNTING_TRAY",
	}
	ReceiptingPointWithoutAccountingType_value = map[string]int32{
		"RECEIPTING_POINT_WITHOUT_ACCOUNTING_KIOSK": 0,
		"RECEIPTING_POINT_WITHOUT_ACCOUNTING_TRAY":  1,
	}
)

Enum value maps for ReceiptingPointWithoutAccountingType.

View Source
var File_tradingpoint_tradingpoint_proto protoreflect.FileDescriptor
View Source
var TradingPointService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "tradingpoint.TradingPointService",
	HandlerType: (*TradingPointServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Register",
			Handler:    _TradingPointService_Register_Handler,
		},
		{
			MethodName: "List",
			Handler:    _TradingPointService_List_Handler,
		},
		{
			MethodName: "TradingPoint",
			Handler:    _TradingPointService_TradingPoint_Handler,
		},
		{
			MethodName: "AddSection",
			Handler:    _TradingPointService_AddSection_Handler,
		},
		{
			MethodName: "AddHall",
			Handler:    _TradingPointService_AddHall_Handler,
		},
		{
			MethodName: "DepartmentStore",
			Handler:    _TradingPointService_DepartmentStore_Handler,
		},
		{
			MethodName: "Store",
			Handler:    _TradingPointService_Store_Handler,
		},
		{
			MethodName: "Kiosk",
			Handler:    _TradingPointService_Kiosk_Handler,
		},
		{
			MethodName: "Tray",
			Handler:    _TradingPointService_Tray_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "tradingpoint/tradingpoint.proto",
}

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

Functions

func RegisterTradingPointServiceServer added in v0.0.8

func RegisterTradingPointServiceServer(s grpc.ServiceRegistrar, srv TradingPointServiceServer)

Types

type AddHallRequest added in v0.0.24

type AddHallRequest struct {
	HallContainerId   int32             `protobuf:"varint,1,opt,name=hall_container_id,json=hallContainerId,proto3" json:"hall_container_id,omitempty"`
	HallContainerType HallContainerType `` /* 151-byte string literal not displayed */
	TradingPointId    int32             `protobuf:"varint,3,opt,name=trading_point_id,json=tradingPointId,proto3" json:"trading_point_id,omitempty"`
	TradingPointType  TradingPointType  `` /* 147-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*AddHallRequest) Descriptor deprecated added in v0.0.24

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

Deprecated: Use AddHallRequest.ProtoReflect.Descriptor instead.

func (*AddHallRequest) GetHallContainerId added in v0.0.24

func (x *AddHallRequest) GetHallContainerId() int32

func (*AddHallRequest) GetHallContainerType added in v0.0.24

func (x *AddHallRequest) GetHallContainerType() HallContainerType

func (*AddHallRequest) GetTradingPointId added in v0.0.24

func (x *AddHallRequest) GetTradingPointId() int32

func (*AddHallRequest) GetTradingPointType added in v0.0.24

func (x *AddHallRequest) GetTradingPointType() TradingPointType

func (*AddHallRequest) ProtoMessage added in v0.0.24

func (*AddHallRequest) ProtoMessage()

func (*AddHallRequest) ProtoReflect added in v0.0.24

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

func (*AddHallRequest) Reset added in v0.0.24

func (x *AddHallRequest) Reset()

func (*AddHallRequest) String added in v0.0.24

func (x *AddHallRequest) String() string

type AddHallResponse added in v0.0.24

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

func (*AddHallResponse) Descriptor deprecated added in v0.0.24

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

Deprecated: Use AddHallResponse.ProtoReflect.Descriptor instead.

func (*AddHallResponse) GetId added in v0.0.24

func (x *AddHallResponse) GetId() int32

func (*AddHallResponse) ProtoMessage added in v0.0.24

func (*AddHallResponse) ProtoMessage()

func (*AddHallResponse) ProtoReflect added in v0.0.24

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

func (*AddHallResponse) Reset added in v0.0.24

func (x *AddHallResponse) Reset()

func (*AddHallResponse) String added in v0.0.24

func (x *AddHallResponse) String() string

type AddSectionRequest added in v0.0.24

type AddSectionRequest struct {
	DepartmentStoreId int32 `protobuf:"varint,1,opt,name=department_store_id,json=departmentStoreId,proto3" json:"department_store_id,omitempty"`
	// contains filtered or unexported fields
}

func (*AddSectionRequest) Descriptor deprecated added in v0.0.24

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

Deprecated: Use AddSectionRequest.ProtoReflect.Descriptor instead.

func (*AddSectionRequest) GetDepartmentStoreId added in v0.0.24

func (x *AddSectionRequest) GetDepartmentStoreId() int32

func (*AddSectionRequest) ProtoMessage added in v0.0.24

func (*AddSectionRequest) ProtoMessage()

func (*AddSectionRequest) ProtoReflect added in v0.0.24

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

func (*AddSectionRequest) Reset added in v0.0.24

func (x *AddSectionRequest) Reset()

func (*AddSectionRequest) String added in v0.0.24

func (x *AddSectionRequest) String() string

type AddSectionResponse added in v0.0.24

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

func (*AddSectionResponse) Descriptor deprecated added in v0.0.24

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

Deprecated: Use AddSectionResponse.ProtoReflect.Descriptor instead.

func (*AddSectionResponse) GetId added in v0.0.24

func (x *AddSectionResponse) GetId() int32

func (*AddSectionResponse) ProtoMessage added in v0.0.24

func (*AddSectionResponse) ProtoMessage()

func (*AddSectionResponse) ProtoReflect added in v0.0.24

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

func (*AddSectionResponse) Reset added in v0.0.24

func (x *AddSectionResponse) Reset()

func (*AddSectionResponse) String added in v0.0.24

func (x *AddSectionResponse) String() string

type DepartmentStore added in v0.0.24

type DepartmentStore struct {
	Id                            int32                          `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	TradingPoint                  *TradingPoint                  `protobuf:"bytes,2,opt,name=trading_point,json=tradingPoint,proto3" json:"trading_point,omitempty"`
	ReceiptingPointWithAccounting *ReceiptingPointWithAccounting `` /* 152-byte string literal not displayed */
	Sections                      []*Section                     `protobuf:"bytes,4,rep,name=sections,proto3" json:"sections,omitempty"`
	Halls                         []*Hall                        `protobuf:"bytes,5,rep,name=halls,proto3" json:"halls,omitempty"`
	// contains filtered or unexported fields
}

func (*DepartmentStore) Descriptor deprecated added in v0.0.24

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

Deprecated: Use DepartmentStore.ProtoReflect.Descriptor instead.

func (*DepartmentStore) GetHalls added in v0.0.24

func (x *DepartmentStore) GetHalls() []*Hall

func (*DepartmentStore) GetId added in v0.0.24

func (x *DepartmentStore) GetId() int32

func (*DepartmentStore) GetReceiptingPointWithAccounting added in v0.0.24

func (x *DepartmentStore) GetReceiptingPointWithAccounting() *ReceiptingPointWithAccounting

func (*DepartmentStore) GetSections added in v0.0.24

func (x *DepartmentStore) GetSections() []*Section

func (*DepartmentStore) GetTradingPoint added in v0.0.24

func (x *DepartmentStore) GetTradingPoint() *TradingPoint

func (*DepartmentStore) ProtoMessage added in v0.0.24

func (*DepartmentStore) ProtoMessage()

func (*DepartmentStore) ProtoReflect added in v0.0.24

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

func (*DepartmentStore) Reset added in v0.0.24

func (x *DepartmentStore) Reset()

func (*DepartmentStore) String added in v0.0.24

func (x *DepartmentStore) String() string

type DepartmentStoreRequest added in v0.0.25

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

func (*DepartmentStoreRequest) Descriptor deprecated added in v0.0.25

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

Deprecated: Use DepartmentStoreRequest.ProtoReflect.Descriptor instead.

func (*DepartmentStoreRequest) GetId added in v0.0.25

func (x *DepartmentStoreRequest) GetId() int32

func (*DepartmentStoreRequest) ProtoMessage added in v0.0.25

func (*DepartmentStoreRequest) ProtoMessage()

func (*DepartmentStoreRequest) ProtoReflect added in v0.0.25

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

func (*DepartmentStoreRequest) Reset added in v0.0.25

func (x *DepartmentStoreRequest) Reset()

func (*DepartmentStoreRequest) String added in v0.0.25

func (x *DepartmentStoreRequest) String() string

type DepartmentStoreResponse added in v0.0.25

type DepartmentStoreResponse struct {
	DepartmentStore *DepartmentStore `protobuf:"bytes,1,opt,name=department_store,json=departmentStore,proto3" json:"department_store,omitempty"`
	// contains filtered or unexported fields
}

func (*DepartmentStoreResponse) Descriptor deprecated added in v0.0.25

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

Deprecated: Use DepartmentStoreResponse.ProtoReflect.Descriptor instead.

func (*DepartmentStoreResponse) GetDepartmentStore added in v0.0.25

func (x *DepartmentStoreResponse) GetDepartmentStore() *DepartmentStore

func (*DepartmentStoreResponse) ProtoMessage added in v0.0.25

func (*DepartmentStoreResponse) ProtoMessage()

func (*DepartmentStoreResponse) ProtoReflect added in v0.0.25

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

func (*DepartmentStoreResponse) Reset added in v0.0.25

func (x *DepartmentStoreResponse) Reset()

func (*DepartmentStoreResponse) String added in v0.0.25

func (x *DepartmentStoreResponse) String() string

type Hall added in v0.0.24

type Hall struct {
	Id                int32             `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	HallContainerId   int32             `protobuf:"varint,2,opt,name=hall_container_id,json=hallContainerId,proto3" json:"hall_container_id,omitempty"`
	HallContainerType HallContainerType `` /* 151-byte string literal not displayed */
	TradingPointId    int32             `protobuf:"varint,4,opt,name=trading_point_id,json=tradingPointId,proto3" json:"trading_point_id,omitempty"`
	TradingPointType  TradingPointType  `` /* 147-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Hall) Descriptor deprecated added in v0.0.24

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

Deprecated: Use Hall.ProtoReflect.Descriptor instead.

func (*Hall) GetHallContainerId added in v0.0.24

func (x *Hall) GetHallContainerId() int32

func (*Hall) GetHallContainerType added in v0.0.24

func (x *Hall) GetHallContainerType() HallContainerType

func (*Hall) GetId added in v0.0.24

func (x *Hall) GetId() int32

func (*Hall) GetTradingPointId added in v0.0.24

func (x *Hall) GetTradingPointId() int32

func (*Hall) GetTradingPointType added in v0.0.24

func (x *Hall) GetTradingPointType() TradingPointType

func (*Hall) ProtoMessage added in v0.0.24

func (*Hall) ProtoMessage()

func (*Hall) ProtoReflect added in v0.0.24

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

func (*Hall) Reset added in v0.0.24

func (x *Hall) Reset()

func (*Hall) String added in v0.0.24

func (x *Hall) String() string

type HallContainer added in v0.0.24

type HallContainer struct {
	Id   int32             `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Type HallContainerType `protobuf:"varint,2,opt,name=type,proto3,enum=tradingpoint.HallContainerType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*HallContainer) Descriptor deprecated added in v0.0.24

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

Deprecated: Use HallContainer.ProtoReflect.Descriptor instead.

func (*HallContainer) GetId added in v0.0.24

func (x *HallContainer) GetId() int32

func (*HallContainer) GetType added in v0.0.24

func (x *HallContainer) GetType() HallContainerType

func (*HallContainer) ProtoMessage added in v0.0.24

func (*HallContainer) ProtoMessage()

func (*HallContainer) ProtoReflect added in v0.0.24

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

func (*HallContainer) Reset added in v0.0.24

func (x *HallContainer) Reset()

func (*HallContainer) String added in v0.0.24

func (x *HallContainer) String() string

type HallContainerType added in v0.0.24

type HallContainerType int32
const (
	HallContainerType_HALL_CONTAINER_SECTION HallContainerType = 0
	HallContainerType_HALL_CONTAINER_STORE   HallContainerType = 1
)

func (HallContainerType) Descriptor added in v0.0.24

func (HallContainerType) Enum added in v0.0.24

func (HallContainerType) EnumDescriptor deprecated added in v0.0.24

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

Deprecated: Use HallContainerType.Descriptor instead.

func (HallContainerType) Number added in v0.0.24

func (HallContainerType) String added in v0.0.24

func (x HallContainerType) String() string

func (HallContainerType) Type added in v0.0.24

type Kiosk added in v0.0.24

type Kiosk struct {
	Id                               int32                             `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	TradingPoint                     *TradingPoint                     `protobuf:"bytes,2,opt,name=trading_point,json=tradingPoint,proto3" json:"trading_point,omitempty"`
	ReceiptingPointWithoutAccounting *ReceiptingPointWithoutAccounting `` /* 161-byte string literal not displayed */
	PlaceOfWork                      *PlaceOfWork                      `protobuf:"bytes,4,opt,name=place_of_work,json=placeOfWork,proto3" json:"place_of_work,omitempty"`
	// contains filtered or unexported fields
}

func (*Kiosk) Descriptor deprecated added in v0.0.24

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

Deprecated: Use Kiosk.ProtoReflect.Descriptor instead.

func (*Kiosk) GetId added in v0.0.24

func (x *Kiosk) GetId() int32

func (*Kiosk) GetPlaceOfWork added in v0.0.24

func (x *Kiosk) GetPlaceOfWork() *PlaceOfWork

func (*Kiosk) GetReceiptingPointWithoutAccounting added in v0.0.24

func (x *Kiosk) GetReceiptingPointWithoutAccounting() *ReceiptingPointWithoutAccounting

func (*Kiosk) GetTradingPoint added in v0.0.24

func (x *Kiosk) GetTradingPoint() *TradingPoint

func (*Kiosk) ProtoMessage added in v0.0.24

func (*Kiosk) ProtoMessage()

func (*Kiosk) ProtoReflect added in v0.0.24

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

func (*Kiosk) Reset added in v0.0.24

func (x *Kiosk) Reset()

func (*Kiosk) String added in v0.0.24

func (x *Kiosk) String() string

type KioskRequest added in v0.0.25

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

func (*KioskRequest) Descriptor deprecated added in v0.0.25

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

Deprecated: Use KioskRequest.ProtoReflect.Descriptor instead.

func (*KioskRequest) GetId added in v0.0.25

func (x *KioskRequest) GetId() int32

func (*KioskRequest) ProtoMessage added in v0.0.25

func (*KioskRequest) ProtoMessage()

func (*KioskRequest) ProtoReflect added in v0.0.25

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

func (*KioskRequest) Reset added in v0.0.25

func (x *KioskRequest) Reset()

func (*KioskRequest) String added in v0.0.25

func (x *KioskRequest) String() string

type KioskResponse added in v0.0.25

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

func (*KioskResponse) Descriptor deprecated added in v0.0.25

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

Deprecated: Use KioskResponse.ProtoReflect.Descriptor instead.

func (*KioskResponse) GetKiosk added in v0.0.25

func (x *KioskResponse) GetKiosk() *Kiosk

func (*KioskResponse) ProtoMessage added in v0.0.25

func (*KioskResponse) ProtoMessage()

func (*KioskResponse) ProtoReflect added in v0.0.25

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

func (*KioskResponse) Reset added in v0.0.25

func (x *KioskResponse) Reset()

func (*KioskResponse) String added in v0.0.25

func (x *KioskResponse) String() string

type ListRequest added in v0.0.19

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

func (*ListRequest) Descriptor deprecated added in v0.0.19

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

Deprecated: Use ListRequest.ProtoReflect.Descriptor instead.

func (*ListRequest) ProtoMessage added in v0.0.19

func (*ListRequest) ProtoMessage()

func (*ListRequest) ProtoReflect added in v0.0.19

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

func (*ListRequest) Reset added in v0.0.19

func (x *ListRequest) Reset()

func (*ListRequest) String added in v0.0.19

func (x *ListRequest) String() string

type ListResponse added in v0.0.11

type ListResponse struct {
	TradingPoints []*TradingPoint `protobuf:"bytes,1,rep,name=trading_points,json=tradingPoints,proto3" json:"trading_points,omitempty"`
	// contains filtered or unexported fields
}

func (*ListResponse) Descriptor deprecated added in v0.0.11

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

Deprecated: Use ListResponse.ProtoReflect.Descriptor instead.

func (*ListResponse) GetTradingPoints added in v0.0.15

func (x *ListResponse) GetTradingPoints() []*TradingPoint

func (*ListResponse) ProtoMessage added in v0.0.11

func (*ListResponse) ProtoMessage()

func (*ListResponse) ProtoReflect added in v0.0.11

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

func (*ListResponse) Reset added in v0.0.11

func (x *ListResponse) Reset()

func (*ListResponse) String added in v0.0.11

func (x *ListResponse) String() string

type PlaceOfWork added in v0.0.24

type PlaceOfWork struct {
	Id   int32           `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Type PlaceOfWorkType `protobuf:"varint,2,opt,name=type,proto3,enum=tradingpoint.PlaceOfWorkType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*PlaceOfWork) Descriptor deprecated added in v0.0.24

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

Deprecated: Use PlaceOfWork.ProtoReflect.Descriptor instead.

func (*PlaceOfWork) GetId added in v0.0.24

func (x *PlaceOfWork) GetId() int32

func (*PlaceOfWork) GetType added in v0.0.24

func (x *PlaceOfWork) GetType() PlaceOfWorkType

func (*PlaceOfWork) ProtoMessage added in v0.0.24

func (*PlaceOfWork) ProtoMessage()

func (*PlaceOfWork) ProtoReflect added in v0.0.24

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

func (*PlaceOfWork) Reset added in v0.0.24

func (x *PlaceOfWork) Reset()

func (*PlaceOfWork) String added in v0.0.24

func (x *PlaceOfWork) String() string

type PlaceOfWorkType added in v0.0.10

type PlaceOfWorkType int32
const (
	PlaceOfWorkType_PLACE_OF_WORK_HALL  PlaceOfWorkType = 0
	PlaceOfWorkType_PLACE_OF_WORK_KIOSK PlaceOfWorkType = 1
	PlaceOfWorkType_PLACE_OF_WORK_TRAY  PlaceOfWorkType = 2
)

func (PlaceOfWorkType) Descriptor added in v0.0.10

func (PlaceOfWorkType) Enum added in v0.0.10

func (x PlaceOfWorkType) Enum() *PlaceOfWorkType

func (PlaceOfWorkType) EnumDescriptor deprecated added in v0.0.10

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

Deprecated: Use PlaceOfWorkType.Descriptor instead.

func (PlaceOfWorkType) Number added in v0.0.10

func (PlaceOfWorkType) String added in v0.0.10

func (x PlaceOfWorkType) String() string

func (PlaceOfWorkType) Type added in v0.0.10

type ProductTradingPoint added in v0.0.27

type ProductTradingPoint struct {
	Quantity  int32       `protobuf:"varint,1,opt,name=quantity,proto3" json:"quantity,omitempty"`
	Price     *core.Money `protobuf:"bytes,2,opt,name=price,proto3" json:"price,omitempty"`
	ProductId int32       `protobuf:"varint,3,opt,name=product_id,json=productId,proto3" json:"product_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ProductTradingPoint) Descriptor deprecated added in v0.0.27

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

Deprecated: Use ProductTradingPoint.ProtoReflect.Descriptor instead.

func (*ProductTradingPoint) GetPrice added in v0.0.27

func (x *ProductTradingPoint) GetPrice() *core.Money

func (*ProductTradingPoint) GetProductId added in v0.0.47

func (x *ProductTradingPoint) GetProductId() int32

func (*ProductTradingPoint) GetQuantity added in v0.0.27

func (x *ProductTradingPoint) GetQuantity() int32

func (*ProductTradingPoint) ProtoMessage added in v0.0.27

func (*ProductTradingPoint) ProtoMessage()

func (*ProductTradingPoint) ProtoReflect added in v0.0.27

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

func (*ProductTradingPoint) Reset added in v0.0.27

func (x *ProductTradingPoint) Reset()

func (*ProductTradingPoint) String added in v0.0.27

func (x *ProductTradingPoint) String() string

type ReceiptingPointWithAccounting added in v0.0.24

type ReceiptingPointWithAccounting struct {
	Id   int32                             `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Type ReceiptingPointWithAccountingType `protobuf:"varint,2,opt,name=type,proto3,enum=tradingpoint.ReceiptingPointWithAccountingType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*ReceiptingPointWithAccounting) Descriptor deprecated added in v0.0.24

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

Deprecated: Use ReceiptingPointWithAccounting.ProtoReflect.Descriptor instead.

func (*ReceiptingPointWithAccounting) GetId added in v0.0.24

func (*ReceiptingPointWithAccounting) GetType added in v0.0.24

func (*ReceiptingPointWithAccounting) ProtoMessage added in v0.0.24

func (*ReceiptingPointWithAccounting) ProtoMessage()

func (*ReceiptingPointWithAccounting) ProtoReflect added in v0.0.24

func (*ReceiptingPointWithAccounting) Reset added in v0.0.24

func (x *ReceiptingPointWithAccounting) Reset()

func (*ReceiptingPointWithAccounting) String added in v0.0.24

type ReceiptingPointWithAccountingType added in v0.0.24

type ReceiptingPointWithAccountingType int32
const (
	ReceiptingPointWithAccountingType_RECEIPTING_POINT_WITH_ACCOUNTING_DEPARTMENT_STORE ReceiptingPointWithAccountingType = 0
	ReceiptingPointWithAccountingType_RECEIPTING_POINT_WITH_ACCOUNTING_STORE            ReceiptingPointWithAccountingType = 1
)

func (ReceiptingPointWithAccountingType) Descriptor added in v0.0.24

func (ReceiptingPointWithAccountingType) Enum added in v0.0.24

func (ReceiptingPointWithAccountingType) EnumDescriptor deprecated added in v0.0.24

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

Deprecated: Use ReceiptingPointWithAccountingType.Descriptor instead.

func (ReceiptingPointWithAccountingType) Number added in v0.0.24

func (ReceiptingPointWithAccountingType) String added in v0.0.24

func (ReceiptingPointWithAccountingType) Type added in v0.0.24

type ReceiptingPointWithoutAccounting added in v0.0.24

type ReceiptingPointWithoutAccounting struct {
	Id   int32                                `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Type ReceiptingPointWithoutAccountingType `protobuf:"varint,2,opt,name=type,proto3,enum=tradingpoint.ReceiptingPointWithoutAccountingType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*ReceiptingPointWithoutAccounting) Descriptor deprecated added in v0.0.24

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

Deprecated: Use ReceiptingPointWithoutAccounting.ProtoReflect.Descriptor instead.

func (*ReceiptingPointWithoutAccounting) GetId added in v0.0.24

func (*ReceiptingPointWithoutAccounting) GetType added in v0.0.24

func (*ReceiptingPointWithoutAccounting) ProtoMessage added in v0.0.24

func (*ReceiptingPointWithoutAccounting) ProtoMessage()

func (*ReceiptingPointWithoutAccounting) ProtoReflect added in v0.0.24

func (*ReceiptingPointWithoutAccounting) Reset added in v0.0.24

func (*ReceiptingPointWithoutAccounting) String added in v0.0.24

type ReceiptingPointWithoutAccountingType added in v0.0.24

type ReceiptingPointWithoutAccountingType int32
const (
	ReceiptingPointWithoutAccountingType_RECEIPTING_POINT_WITHOUT_ACCOUNTING_KIOSK ReceiptingPointWithoutAccountingType = 0
	ReceiptingPointWithoutAccountingType_RECEIPTING_POINT_WITHOUT_ACCOUNTING_TRAY  ReceiptingPointWithoutAccountingType = 1
)

func (ReceiptingPointWithoutAccountingType) Descriptor added in v0.0.24

func (ReceiptingPointWithoutAccountingType) Enum added in v0.0.24

func (ReceiptingPointWithoutAccountingType) EnumDescriptor deprecated added in v0.0.24

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

Deprecated: Use ReceiptingPointWithoutAccountingType.Descriptor instead.

func (ReceiptingPointWithoutAccountingType) Number added in v0.0.24

func (ReceiptingPointWithoutAccountingType) String added in v0.0.24

func (ReceiptingPointWithoutAccountingType) Type added in v0.0.24

type RegisterRequest

type RegisterRequest struct {
	Type         TradingPointType `protobuf:"varint,1,opt,name=type,proto3,enum=tradingpoint.TradingPointType" json:"type,omitempty"`
	AreaPlot     float64          `protobuf:"fixed64,2,opt,name=area_plot,json=areaPlot,proto3" json:"area_plot,omitempty"`
	RentalCharge *core.Money      `protobuf:"bytes,3,opt,name=rental_charge,json=rentalCharge,proto3" json:"rental_charge,omitempty"`
	CounterCount int32            `protobuf:"varint,4,opt,name=counter_count,json=counterCount,proto3" json:"counter_count,omitempty"`
	Address      string           `protobuf:"bytes,5,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterRequest) Descriptor deprecated

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

Deprecated: Use RegisterRequest.ProtoReflect.Descriptor instead.

func (*RegisterRequest) GetAddress

func (x *RegisterRequest) GetAddress() string

func (*RegisterRequest) GetAreaPlot

func (x *RegisterRequest) GetAreaPlot() float64

func (*RegisterRequest) GetCounterCount

func (x *RegisterRequest) GetCounterCount() int32

func (*RegisterRequest) GetRentalCharge

func (x *RegisterRequest) GetRentalCharge() *core.Money

func (*RegisterRequest) GetType

func (x *RegisterRequest) GetType() TradingPointType

func (*RegisterRequest) ProtoMessage

func (*RegisterRequest) ProtoMessage()

func (*RegisterRequest) ProtoReflect

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

func (*RegisterRequest) Reset

func (x *RegisterRequest) Reset()

func (*RegisterRequest) String

func (x *RegisterRequest) String() string

type RegisterResponse

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

func (*RegisterResponse) Descriptor deprecated

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

Deprecated: Use RegisterResponse.ProtoReflect.Descriptor instead.

func (*RegisterResponse) GetId

func (x *RegisterResponse) GetId() int32

func (*RegisterResponse) ProtoMessage

func (*RegisterResponse) ProtoMessage()

func (*RegisterResponse) ProtoReflect

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

func (*RegisterResponse) Reset

func (x *RegisterResponse) Reset()

func (*RegisterResponse) String

func (x *RegisterResponse) String() string

type Section added in v0.0.24

type Section struct {
	Id                int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	DepartmentStoreId int32 `protobuf:"varint,2,opt,name=department_store_id,json=departmentStoreId,proto3" json:"department_store_id,omitempty"`
	// contains filtered or unexported fields
}

func (*Section) Descriptor deprecated added in v0.0.24

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

Deprecated: Use Section.ProtoReflect.Descriptor instead.

func (*Section) GetDepartmentStoreId added in v0.0.24

func (x *Section) GetDepartmentStoreId() int32

func (*Section) GetId added in v0.0.24

func (x *Section) GetId() int32

func (*Section) ProtoMessage added in v0.0.24

func (*Section) ProtoMessage()

func (*Section) ProtoReflect added in v0.0.24

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

func (*Section) Reset added in v0.0.24

func (x *Section) Reset()

func (*Section) String added in v0.0.24

func (x *Section) String() string

type Store added in v0.0.24

type Store struct {
	Id                            int32                          `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	TradingPoint                  *TradingPoint                  `protobuf:"bytes,2,opt,name=trading_point,json=tradingPoint,proto3" json:"trading_point,omitempty"`
	ReceiptingPointWithAccounting *ReceiptingPointWithAccounting `` /* 152-byte string literal not displayed */
	HallContainer                 *HallContainer                 `protobuf:"bytes,4,opt,name=hall_container,json=hallContainer,proto3" json:"hall_container,omitempty"`
	Halls                         []*Hall                        `protobuf:"bytes,5,rep,name=halls,proto3" json:"halls,omitempty"`
	// contains filtered or unexported fields
}

func (*Store) Descriptor deprecated added in v0.0.24

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

Deprecated: Use Store.ProtoReflect.Descriptor instead.

func (*Store) GetHallContainer added in v0.0.24

func (x *Store) GetHallContainer() *HallContainer

func (*Store) GetHalls added in v0.0.24

func (x *Store) GetHalls() []*Hall

func (*Store) GetId added in v0.0.24

func (x *Store) GetId() int32

func (*Store) GetReceiptingPointWithAccounting added in v0.0.24

func (x *Store) GetReceiptingPointWithAccounting() *ReceiptingPointWithAccounting

func (*Store) GetTradingPoint added in v0.0.24

func (x *Store) GetTradingPoint() *TradingPoint

func (*Store) ProtoMessage added in v0.0.24

func (*Store) ProtoMessage()

func (*Store) ProtoReflect added in v0.0.24

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

func (*Store) Reset added in v0.0.24

func (x *Store) Reset()

func (*Store) String added in v0.0.24

func (x *Store) String() string

type StoreRequest added in v0.0.25

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

func (*StoreRequest) Descriptor deprecated added in v0.0.25

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

Deprecated: Use StoreRequest.ProtoReflect.Descriptor instead.

func (*StoreRequest) GetId added in v0.0.25

func (x *StoreRequest) GetId() int32

func (*StoreRequest) ProtoMessage added in v0.0.25

func (*StoreRequest) ProtoMessage()

func (*StoreRequest) ProtoReflect added in v0.0.25

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

func (*StoreRequest) Reset added in v0.0.25

func (x *StoreRequest) Reset()

func (*StoreRequest) String added in v0.0.25

func (x *StoreRequest) String() string

type StoreResponse added in v0.0.25

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

func (*StoreResponse) Descriptor deprecated added in v0.0.25

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

Deprecated: Use StoreResponse.ProtoReflect.Descriptor instead.

func (*StoreResponse) GetStore added in v0.0.25

func (x *StoreResponse) GetStore() *Store

func (*StoreResponse) ProtoMessage added in v0.0.25

func (*StoreResponse) ProtoMessage()

func (*StoreResponse) ProtoReflect added in v0.0.25

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

func (*StoreResponse) Reset added in v0.0.25

func (x *StoreResponse) Reset()

func (*StoreResponse) String added in v0.0.25

func (x *StoreResponse) String() string

type TradingPoint added in v0.0.11

type TradingPoint struct {
	Id           int32                  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Type         TradingPointType       `protobuf:"varint,2,opt,name=type,proto3,enum=tradingpoint.TradingPointType" json:"type,omitempty"`
	AreaPlot     float64                `protobuf:"fixed64,3,opt,name=area_plot,json=areaPlot,proto3" json:"area_plot,omitempty"`
	RentalCharge *core.Money            `protobuf:"bytes,4,opt,name=rental_charge,json=rentalCharge,proto3" json:"rental_charge,omitempty"`
	CounterCount int32                  `protobuf:"varint,5,opt,name=counter_count,json=counterCount,proto3" json:"counter_count,omitempty"`
	Address      string                 `protobuf:"bytes,6,opt,name=address,proto3" json:"address,omitempty"`
	Products     []*ProductTradingPoint `protobuf:"bytes,7,rep,name=products,proto3" json:"products,omitempty"`
	// contains filtered or unexported fields
}

func (*TradingPoint) Descriptor deprecated added in v0.0.11

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

Deprecated: Use TradingPoint.ProtoReflect.Descriptor instead.

func (*TradingPoint) GetAddress added in v0.0.11

func (x *TradingPoint) GetAddress() string

func (*TradingPoint) GetAreaPlot added in v0.0.11

func (x *TradingPoint) GetAreaPlot() float64

func (*TradingPoint) GetCounterCount added in v0.0.11

func (x *TradingPoint) GetCounterCount() int32

func (*TradingPoint) GetId added in v0.0.11

func (x *TradingPoint) GetId() int32

func (*TradingPoint) GetProducts added in v0.0.32

func (x *TradingPoint) GetProducts() []*ProductTradingPoint

func (*TradingPoint) GetRentalCharge added in v0.0.11

func (x *TradingPoint) GetRentalCharge() *core.Money

func (*TradingPoint) GetType added in v0.0.11

func (x *TradingPoint) GetType() TradingPointType

func (*TradingPoint) ProtoMessage added in v0.0.11

func (*TradingPoint) ProtoMessage()

func (*TradingPoint) ProtoReflect added in v0.0.11

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

func (*TradingPoint) Reset added in v0.0.11

func (x *TradingPoint) Reset()

func (*TradingPoint) String added in v0.0.11

func (x *TradingPoint) String() string

type TradingPointRequest added in v0.0.48

type TradingPointRequest struct {
	Id   int32            `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Type TradingPointType `protobuf:"varint,2,opt,name=type,proto3,enum=tradingpoint.TradingPointType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*TradingPointRequest) Descriptor deprecated added in v0.0.48

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

Deprecated: Use TradingPointRequest.ProtoReflect.Descriptor instead.

func (*TradingPointRequest) GetId added in v0.0.48

func (x *TradingPointRequest) GetId() int32

func (*TradingPointRequest) GetType added in v0.0.48

func (*TradingPointRequest) ProtoMessage added in v0.0.48

func (*TradingPointRequest) ProtoMessage()

func (*TradingPointRequest) ProtoReflect added in v0.0.48

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

func (*TradingPointRequest) Reset added in v0.0.48

func (x *TradingPointRequest) Reset()

func (*TradingPointRequest) String added in v0.0.48

func (x *TradingPointRequest) String() string

type TradingPointResponse added in v0.0.48

type TradingPointResponse struct {
	TradingPoint *TradingPoint `protobuf:"bytes,1,opt,name=trading_point,json=tradingPoint,proto3" json:"trading_point,omitempty"`
	// contains filtered or unexported fields
}

func (*TradingPointResponse) Descriptor deprecated added in v0.0.48

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

Deprecated: Use TradingPointResponse.ProtoReflect.Descriptor instead.

func (*TradingPointResponse) GetTradingPoint added in v0.0.48

func (x *TradingPointResponse) GetTradingPoint() *TradingPoint

func (*TradingPointResponse) ProtoMessage added in v0.0.48

func (*TradingPointResponse) ProtoMessage()

func (*TradingPointResponse) ProtoReflect added in v0.0.48

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

func (*TradingPointResponse) Reset added in v0.0.48

func (x *TradingPointResponse) Reset()

func (*TradingPointResponse) String added in v0.0.48

func (x *TradingPointResponse) String() string

type TradingPointServiceClient added in v0.0.8

type TradingPointServiceClient interface {
	// Trading point
	Register(ctx context.Context, in *RegisterRequest, opts ...grpc.CallOption) (*RegisterResponse, error)
	List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error)
	TradingPoint(ctx context.Context, in *TradingPointRequest, opts ...grpc.CallOption) (*TradingPointResponse, error)
	// Section
	AddSection(ctx context.Context, in *AddSectionRequest, opts ...grpc.CallOption) (*AddSectionResponse, error)
	// Hall
	AddHall(ctx context.Context, in *AddHallRequest, opts ...grpc.CallOption) (*AddHallResponse, error)
	DepartmentStore(ctx context.Context, in *DepartmentStoreRequest, opts ...grpc.CallOption) (*DepartmentStoreResponse, error)
	Store(ctx context.Context, in *StoreRequest, opts ...grpc.CallOption) (*StoreResponse, error)
	Kiosk(ctx context.Context, in *KioskRequest, opts ...grpc.CallOption) (*KioskResponse, error)
	Tray(ctx context.Context, in *TrayRequest, opts ...grpc.CallOption) (*TrayResponse, error)
}

TradingPointServiceClient is the client API for TradingPointService 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.

func NewTradingPointServiceClient added in v0.0.8

func NewTradingPointServiceClient(cc grpc.ClientConnInterface) TradingPointServiceClient

type TradingPointServiceServer added in v0.0.8

type TradingPointServiceServer interface {
	// Trading point
	Register(context.Context, *RegisterRequest) (*RegisterResponse, error)
	List(context.Context, *ListRequest) (*ListResponse, error)
	TradingPoint(context.Context, *TradingPointRequest) (*TradingPointResponse, error)
	// Section
	AddSection(context.Context, *AddSectionRequest) (*AddSectionResponse, error)
	// Hall
	AddHall(context.Context, *AddHallRequest) (*AddHallResponse, error)
	DepartmentStore(context.Context, *DepartmentStoreRequest) (*DepartmentStoreResponse, error)
	Store(context.Context, *StoreRequest) (*StoreResponse, error)
	Kiosk(context.Context, *KioskRequest) (*KioskResponse, error)
	Tray(context.Context, *TrayRequest) (*TrayResponse, error)
	// contains filtered or unexported methods
}

TradingPointServiceServer is the server API for TradingPointService service. All implementations must embed UnimplementedTradingPointServiceServer for forward compatibility

type TradingPointType

type TradingPointType int32
const (
	TradingPointType_TRADING_POINT_STORE            TradingPointType = 0
	TradingPointType_TRADING_POINT_DEPARTMENT_STORE TradingPointType = 1
	TradingPointType_TRADING_POINT_KIOSK            TradingPointType = 2
	TradingPointType_TRADING_POINT_TRAY             TradingPointType = 3
)

func (TradingPointType) Descriptor

func (TradingPointType) Enum

func (TradingPointType) EnumDescriptor deprecated

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

Deprecated: Use TradingPointType.Descriptor instead.

func (TradingPointType) Number

func (TradingPointType) String

func (x TradingPointType) String() string

func (TradingPointType) Type

type Tray added in v0.0.24

type Tray struct {
	Id                               int32                             `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	TradingPoint                     *TradingPoint                     `protobuf:"bytes,2,opt,name=trading_point,json=tradingPoint,proto3" json:"trading_point,omitempty"`
	ReceiptingPointWithoutAccounting *ReceiptingPointWithoutAccounting `` /* 161-byte string literal not displayed */
	PlaceOfWork                      *PlaceOfWork                      `protobuf:"bytes,4,opt,name=place_of_work,json=placeOfWork,proto3" json:"place_of_work,omitempty"`
	// contains filtered or unexported fields
}

func (*Tray) Descriptor deprecated added in v0.0.24

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

Deprecated: Use Tray.ProtoReflect.Descriptor instead.

func (*Tray) GetId added in v0.0.24

func (x *Tray) GetId() int32

func (*Tray) GetPlaceOfWork added in v0.0.24

func (x *Tray) GetPlaceOfWork() *PlaceOfWork

func (*Tray) GetReceiptingPointWithoutAccounting added in v0.0.24

func (x *Tray) GetReceiptingPointWithoutAccounting() *ReceiptingPointWithoutAccounting

func (*Tray) GetTradingPoint added in v0.0.24

func (x *Tray) GetTradingPoint() *TradingPoint

func (*Tray) ProtoMessage added in v0.0.24

func (*Tray) ProtoMessage()

func (*Tray) ProtoReflect added in v0.0.24

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

func (*Tray) Reset added in v0.0.24

func (x *Tray) Reset()

func (*Tray) String added in v0.0.24

func (x *Tray) String() string

type TrayRequest added in v0.0.25

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

func (*TrayRequest) Descriptor deprecated added in v0.0.25

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

Deprecated: Use TrayRequest.ProtoReflect.Descriptor instead.

func (*TrayRequest) GetId added in v0.0.25

func (x *TrayRequest) GetId() int32

func (*TrayRequest) ProtoMessage added in v0.0.25

func (*TrayRequest) ProtoMessage()

func (*TrayRequest) ProtoReflect added in v0.0.25

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

func (*TrayRequest) Reset added in v0.0.25

func (x *TrayRequest) Reset()

func (*TrayRequest) String added in v0.0.25

func (x *TrayRequest) String() string

type TrayResponse added in v0.0.25

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

func (*TrayResponse) Descriptor deprecated added in v0.0.25

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

Deprecated: Use TrayResponse.ProtoReflect.Descriptor instead.

func (*TrayResponse) GetTray added in v0.0.25

func (x *TrayResponse) GetTray() *Tray

func (*TrayResponse) ProtoMessage added in v0.0.25

func (*TrayResponse) ProtoMessage()

func (*TrayResponse) ProtoReflect added in v0.0.25

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

func (*TrayResponse) Reset added in v0.0.25

func (x *TrayResponse) Reset()

func (*TrayResponse) String added in v0.0.25

func (x *TrayResponse) String() string

type UnimplementedTradingPointServiceServer added in v0.0.8

type UnimplementedTradingPointServiceServer struct {
}

UnimplementedTradingPointServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedTradingPointServiceServer) AddHall added in v0.0.24

func (UnimplementedTradingPointServiceServer) AddSection added in v0.0.24

func (UnimplementedTradingPointServiceServer) DepartmentStore added in v0.0.25

func (UnimplementedTradingPointServiceServer) Kiosk added in v0.0.25

func (UnimplementedTradingPointServiceServer) List added in v0.0.11

func (UnimplementedTradingPointServiceServer) Register added in v0.0.8

func (UnimplementedTradingPointServiceServer) Store added in v0.0.25

func (UnimplementedTradingPointServiceServer) TradingPoint added in v0.0.48

func (UnimplementedTradingPointServiceServer) Tray added in v0.0.25

type UnsafeTradingPointServiceServer added in v0.0.8

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

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

Jump to

Keyboard shortcuts

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