You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1327 lines
51 KiB
1327 lines
51 KiB
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.34.2
|
|
// protoc v5.27.1
|
|
// source: matchmaking/v1/share/shareInr.proto
|
|
|
|
package v1
|
|
|
|
import (
|
|
_ "google.golang.org/genproto/googleapis/api/annotations"
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
type CancelInrOrderRequest struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
OrderId string `protobuf:"bytes,1,opt,name=orderId,proto3" json:"orderId,omitempty"` // 订单ID
|
|
}
|
|
|
|
func (x *CancelInrOrderRequest) Reset() {
|
|
*x = CancelInrOrderRequest{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *CancelInrOrderRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*CancelInrOrderRequest) ProtoMessage() {}
|
|
|
|
func (x *CancelInrOrderRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[0]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use CancelInrOrderRequest.ProtoReflect.Descriptor instead.
|
|
func (*CancelInrOrderRequest) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *CancelInrOrderRequest) GetOrderId() string {
|
|
if x != nil {
|
|
return x.OrderId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UpdateInrOrderRequest struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
OrderId string `protobuf:"bytes,1,opt,name=orderId,proto3" json:"orderId,omitempty"` // 订单Id
|
|
StopType int64 `protobuf:"varint,2,opt,name=stopType,proto3" json:"stopType,omitempty"` // 止盈止损
|
|
StopLossPrice string `protobuf:"bytes,3,opt,name=stopLossPrice,proto3" json:"stopLossPrice,omitempty"` // 止损
|
|
StopWinPrice string `protobuf:"bytes,4,opt,name=stopWinPrice,proto3" json:"stopWinPrice,omitempty"` // 止盈
|
|
}
|
|
|
|
func (x *UpdateInrOrderRequest) Reset() {
|
|
*x = UpdateInrOrderRequest{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *UpdateInrOrderRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*UpdateInrOrderRequest) ProtoMessage() {}
|
|
|
|
func (x *UpdateInrOrderRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[1]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use UpdateInrOrderRequest.ProtoReflect.Descriptor instead.
|
|
func (*UpdateInrOrderRequest) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *UpdateInrOrderRequest) GetOrderId() string {
|
|
if x != nil {
|
|
return x.OrderId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *UpdateInrOrderRequest) GetStopType() int64 {
|
|
if x != nil {
|
|
return x.StopType
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *UpdateInrOrderRequest) GetStopLossPrice() string {
|
|
if x != nil {
|
|
return x.StopLossPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *UpdateInrOrderRequest) GetStopWinPrice() string {
|
|
if x != nil {
|
|
return x.StopWinPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ShareInrOrderRequest struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
StockId string `protobuf:"bytes,1,opt,name=stockId,proto3" json:"stockId,omitempty"` // 股票Code
|
|
TradeType int64 `protobuf:"varint,2,opt,name=tradeType,proto3" json:"tradeType,omitempty"` // 交易类型:1买入,2卖出
|
|
DealType int64 `protobuf:"varint,3,opt,name=dealType,proto3" json:"dealType,omitempty"` // 委托方式:1限价,2市价
|
|
LimitPrice string `protobuf:"bytes,4,opt,name=limitPrice,proto3" json:"limitPrice,omitempty"` // 限价
|
|
MarketPrice string `protobuf:"bytes,5,opt,name=marketPrice,proto3" json:"marketPrice,omitempty"` // 市价
|
|
MarketMoney string `protobuf:"bytes,6,opt,name=marketMoney,proto3" json:"marketMoney,omitempty"` // 订单金额
|
|
OrderNumber string `protobuf:"bytes,7,opt,name=orderNumber,proto3" json:"orderNumber,omitempty"` // 订单数量
|
|
ServiceCost string `protobuf:"bytes,8,opt,name=serviceCost,proto3" json:"serviceCost,omitempty"` // 手续费
|
|
StopType int64 `protobuf:"varint,9,opt,name=stopType,proto3" json:"stopType,omitempty"` // 止损止盈设置:1无设置,2止损止盈
|
|
StopLossPrice string `protobuf:"bytes,10,opt,name=stopLossPrice,proto3" json:"stopLossPrice,omitempty"` // 止损
|
|
StopWinPrice string `protobuf:"bytes,11,opt,name=stopWinPrice,proto3" json:"stopWinPrice,omitempty"` // 止损
|
|
PryNum string `protobuf:"bytes,12,opt,name=pryNum,proto3" json:"pryNum,omitempty"` // 杠杆
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) Reset() {
|
|
*x = ShareInrOrderRequest{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ShareInrOrderRequest) ProtoMessage() {}
|
|
|
|
func (x *ShareInrOrderRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[2]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ShareInrOrderRequest.ProtoReflect.Descriptor instead.
|
|
func (*ShareInrOrderRequest) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetStockId() string {
|
|
if x != nil {
|
|
return x.StockId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetTradeType() int64 {
|
|
if x != nil {
|
|
return x.TradeType
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetDealType() int64 {
|
|
if x != nil {
|
|
return x.DealType
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetLimitPrice() string {
|
|
if x != nil {
|
|
return x.LimitPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetMarketPrice() string {
|
|
if x != nil {
|
|
return x.MarketPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetMarketMoney() string {
|
|
if x != nil {
|
|
return x.MarketMoney
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetOrderNumber() string {
|
|
if x != nil {
|
|
return x.OrderNumber
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetServiceCost() string {
|
|
if x != nil {
|
|
return x.ServiceCost
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetStopType() int64 {
|
|
if x != nil {
|
|
return x.StopType
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetStopLossPrice() string {
|
|
if x != nil {
|
|
return x.StopLossPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetStopWinPrice() string {
|
|
if x != nil {
|
|
return x.StopWinPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ShareInrOrderRequest) GetPryNum() string {
|
|
if x != nil {
|
|
return x.PryNum
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type GetInrBotStockTradeRequest struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"` // 状态码
|
|
PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"` // 每页显示条数
|
|
PageCount int64 `protobuf:"varint,3,opt,name=pageCount,proto3" json:"pageCount,omitempty"` // 开始的位置
|
|
}
|
|
|
|
func (x *GetInrBotStockTradeRequest) Reset() {
|
|
*x = GetInrBotStockTradeRequest{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *GetInrBotStockTradeRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GetInrBotStockTradeRequest) ProtoMessage() {}
|
|
|
|
func (x *GetInrBotStockTradeRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[3]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GetInrBotStockTradeRequest.ProtoReflect.Descriptor instead.
|
|
func (*GetInrBotStockTradeRequest) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *GetInrBotStockTradeRequest) GetStatus() int64 {
|
|
if x != nil {
|
|
return x.Status
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *GetInrBotStockTradeRequest) GetPageSize() int64 {
|
|
if x != nil {
|
|
return x.PageSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *GetInrBotStockTradeRequest) GetPageCount() int64 {
|
|
if x != nil {
|
|
return x.PageCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetBotStockInrTradeReply struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // 状态码
|
|
Data *BotStockInrTradeData `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` // 返回结果
|
|
Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"` // 返回消息提示
|
|
}
|
|
|
|
func (x *GetBotStockInrTradeReply) Reset() {
|
|
*x = GetBotStockInrTradeReply{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *GetBotStockInrTradeReply) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GetBotStockInrTradeReply) ProtoMessage() {}
|
|
|
|
func (x *GetBotStockInrTradeReply) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[4]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GetBotStockInrTradeReply.ProtoReflect.Descriptor instead.
|
|
func (*GetBotStockInrTradeReply) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
|
|
func (x *GetBotStockInrTradeReply) GetCode() int64 {
|
|
if x != nil {
|
|
return x.Code
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *GetBotStockInrTradeReply) GetData() *BotStockInrTradeData {
|
|
if x != nil {
|
|
return x.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *GetBotStockInrTradeReply) GetMessage() string {
|
|
if x != nil {
|
|
return x.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type BotStockInrTradeData struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
PageSize int64 `protobuf:"varint,1,opt,name=pageSize,proto3" json:"pageSize,omitempty"` // 每页显示条数
|
|
PageCount int64 `protobuf:"varint,2,opt,name=pageCount,proto3" json:"pageCount,omitempty"` // 开始的位置
|
|
Data []*BotStockInrTrade `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"` // 返回结果
|
|
TotalCount int64 `protobuf:"varint,4,opt,name=totalCount,proto3" json:"totalCount,omitempty"` // 总数据
|
|
}
|
|
|
|
func (x *BotStockInrTradeData) Reset() {
|
|
*x = BotStockInrTradeData{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[5]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *BotStockInrTradeData) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*BotStockInrTradeData) ProtoMessage() {}
|
|
|
|
func (x *BotStockInrTradeData) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[5]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use BotStockInrTradeData.ProtoReflect.Descriptor instead.
|
|
func (*BotStockInrTradeData) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{5}
|
|
}
|
|
|
|
func (x *BotStockInrTradeData) GetPageSize() int64 {
|
|
if x != nil {
|
|
return x.PageSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *BotStockInrTradeData) GetPageCount() int64 {
|
|
if x != nil {
|
|
return x.PageCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *BotStockInrTradeData) GetData() []*BotStockInrTrade {
|
|
if x != nil {
|
|
return x.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *BotStockInrTradeData) GetTotalCount() int64 {
|
|
if x != nil {
|
|
return x.TotalCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type BotStockInrTrade struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
OrderId string `protobuf:"bytes,1,opt,name=orderId,proto3" json:"orderId,omitempty"` // 订单ID
|
|
StockId string `protobuf:"bytes,2,opt,name=stockId,proto3" json:"stockId,omitempty"` // 股票代码
|
|
TradeType int64 `protobuf:"varint,3,opt,name=tradeType,proto3" json:"tradeType,omitempty"` // 交易类型
|
|
DealType int64 `protobuf:"varint,4,opt,name=dealType,proto3" json:"dealType,omitempty"` // 交易方式
|
|
LimitPrice string `protobuf:"bytes,5,opt,name=limitPrice,proto3" json:"limitPrice,omitempty"` // 限价
|
|
MarketPrice string `protobuf:"bytes,6,opt,name=marketPrice,proto3" json:"marketPrice,omitempty"` // 市价
|
|
DealPrice string `protobuf:"bytes,7,opt,name=dealPrice,proto3" json:"dealPrice,omitempty"` // 开仓价
|
|
ClosingPrice string `protobuf:"bytes,8,opt,name=closingPrice,proto3" json:"closingPrice,omitempty"` // 平仓价
|
|
OrderNumber string `protobuf:"bytes,9,opt,name=orderNumber,proto3" json:"orderNumber,omitempty"` // 订单数量
|
|
StopType int64 `protobuf:"varint,10,opt,name=stopType,proto3" json:"stopType,omitempty"` // 止盈止损
|
|
StopLossPrice string `protobuf:"bytes,11,opt,name=stopLossPrice,proto3" json:"stopLossPrice,omitempty"` // 止损
|
|
StopWinPrice string `protobuf:"bytes,12,opt,name=stopWinPrice,proto3" json:"stopWinPrice,omitempty"` // 止盈
|
|
ServiceCost string `protobuf:"bytes,13,opt,name=serviceCost,proto3" json:"serviceCost,omitempty"` // 开仓手续费
|
|
MarketMoney string `protobuf:"bytes,14,opt,name=marketMoney,proto3" json:"marketMoney,omitempty"` // 订单金额
|
|
OrderMoney string `protobuf:"bytes,15,opt,name=orderMoney,proto3" json:"orderMoney,omitempty"` // 订单总金额
|
|
Status int64 `protobuf:"varint,16,opt,name=status,proto3" json:"status,omitempty"` // 订单状态
|
|
CreateTime string `protobuf:"bytes,17,opt,name=createTime,proto3" json:"createTime,omitempty"` // 订单创建时间
|
|
UpdateTime string `protobuf:"bytes,18,opt,name=updateTime,proto3" json:"updateTime,omitempty"` // 订单更新时间
|
|
OpenTime string `protobuf:"bytes,19,opt,name=openTime,proto3" json:"openTime,omitempty"` // 订单开仓时间
|
|
ClosingTime string `protobuf:"bytes,20,opt,name=closingTime,proto3" json:"closingTime,omitempty"` // 订单平仓时间
|
|
ClosingCost string `protobuf:"bytes,21,opt,name=closingCost,proto3" json:"closingCost,omitempty"` // 平仓手续费
|
|
FaceValue string `protobuf:"bytes,22,opt,name=faceValue,proto3" json:"faceValue,omitempty"` // 面值
|
|
PryNum string `protobuf:"bytes,23,opt,name=pryNum,proto3" json:"pryNum,omitempty"` // 杠杆
|
|
KeepDecimal string `protobuf:"bytes,24,opt,name=keepDecimal,proto3" json:"keepDecimal,omitempty"` // 保留小数位
|
|
StockName string `protobuf:"bytes,25,opt,name=stockName,proto3" json:"stockName,omitempty"` // 股票名称
|
|
}
|
|
|
|
func (x *BotStockInrTrade) Reset() {
|
|
*x = BotStockInrTrade{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[6]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *BotStockInrTrade) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*BotStockInrTrade) ProtoMessage() {}
|
|
|
|
func (x *BotStockInrTrade) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[6]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use BotStockInrTrade.ProtoReflect.Descriptor instead.
|
|
func (*BotStockInrTrade) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{6}
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetOrderId() string {
|
|
if x != nil {
|
|
return x.OrderId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetStockId() string {
|
|
if x != nil {
|
|
return x.StockId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetTradeType() int64 {
|
|
if x != nil {
|
|
return x.TradeType
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetDealType() int64 {
|
|
if x != nil {
|
|
return x.DealType
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetLimitPrice() string {
|
|
if x != nil {
|
|
return x.LimitPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetMarketPrice() string {
|
|
if x != nil {
|
|
return x.MarketPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetDealPrice() string {
|
|
if x != nil {
|
|
return x.DealPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetClosingPrice() string {
|
|
if x != nil {
|
|
return x.ClosingPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetOrderNumber() string {
|
|
if x != nil {
|
|
return x.OrderNumber
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetStopType() int64 {
|
|
if x != nil {
|
|
return x.StopType
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetStopLossPrice() string {
|
|
if x != nil {
|
|
return x.StopLossPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetStopWinPrice() string {
|
|
if x != nil {
|
|
return x.StopWinPrice
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetServiceCost() string {
|
|
if x != nil {
|
|
return x.ServiceCost
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetMarketMoney() string {
|
|
if x != nil {
|
|
return x.MarketMoney
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetOrderMoney() string {
|
|
if x != nil {
|
|
return x.OrderMoney
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetStatus() int64 {
|
|
if x != nil {
|
|
return x.Status
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetCreateTime() string {
|
|
if x != nil {
|
|
return x.CreateTime
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetUpdateTime() string {
|
|
if x != nil {
|
|
return x.UpdateTime
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetOpenTime() string {
|
|
if x != nil {
|
|
return x.OpenTime
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetClosingTime() string {
|
|
if x != nil {
|
|
return x.ClosingTime
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetClosingCost() string {
|
|
if x != nil {
|
|
return x.ClosingCost
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetFaceValue() string {
|
|
if x != nil {
|
|
return x.FaceValue
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetPryNum() string {
|
|
if x != nil {
|
|
return x.PryNum
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetKeepDecimal() string {
|
|
if x != nil {
|
|
return x.KeepDecimal
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BotStockInrTrade) GetStockName() string {
|
|
if x != nil {
|
|
return x.StockName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type InrOrderReply struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // 状态码
|
|
Data *InrOrderResult `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` // 返回结果
|
|
Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"` // 返回消息提示
|
|
}
|
|
|
|
func (x *InrOrderReply) Reset() {
|
|
*x = InrOrderReply{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[7]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *InrOrderReply) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*InrOrderReply) ProtoMessage() {}
|
|
|
|
func (x *InrOrderReply) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[7]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use InrOrderReply.ProtoReflect.Descriptor instead.
|
|
func (*InrOrderReply) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{7}
|
|
}
|
|
|
|
func (x *InrOrderReply) GetCode() int64 {
|
|
if x != nil {
|
|
return x.Code
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *InrOrderReply) GetData() *InrOrderResult {
|
|
if x != nil {
|
|
return x.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *InrOrderReply) GetMessage() string {
|
|
if x != nil {
|
|
return x.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type InrOrderResult struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
OrderId string `protobuf:"bytes,1,opt,name=orderId,proto3" json:"orderId,omitempty"` // 订单Id
|
|
}
|
|
|
|
func (x *InrOrderResult) Reset() {
|
|
*x = InrOrderResult{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[8]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *InrOrderResult) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*InrOrderResult) ProtoMessage() {}
|
|
|
|
func (x *InrOrderResult) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[8]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use InrOrderResult.ProtoReflect.Descriptor instead.
|
|
func (*InrOrderResult) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{8}
|
|
}
|
|
|
|
func (x *InrOrderResult) GetOrderId() string {
|
|
if x != nil {
|
|
return x.OrderId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type AllInrOrderRequest struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
}
|
|
|
|
func (x *AllInrOrderRequest) Reset() {
|
|
*x = AllInrOrderRequest{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[9]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *AllInrOrderRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*AllInrOrderRequest) ProtoMessage() {}
|
|
|
|
func (x *AllInrOrderRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[9]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use AllInrOrderRequest.ProtoReflect.Descriptor instead.
|
|
func (*AllInrOrderRequest) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{9}
|
|
}
|
|
|
|
type AllInrOrderReply struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // 状态码
|
|
Data string `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` // 返回结果
|
|
Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"` // 返回消息提示
|
|
}
|
|
|
|
func (x *AllInrOrderReply) Reset() {
|
|
*x = AllInrOrderReply{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[10]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *AllInrOrderReply) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*AllInrOrderReply) ProtoMessage() {}
|
|
|
|
func (x *AllInrOrderReply) ProtoReflect() protoreflect.Message {
|
|
mi := &file_matchmaking_v1_share_shareInr_proto_msgTypes[10]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use AllInrOrderReply.ProtoReflect.Descriptor instead.
|
|
func (*AllInrOrderReply) Descriptor() ([]byte, []int) {
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescGZIP(), []int{10}
|
|
}
|
|
|
|
func (x *AllInrOrderReply) GetCode() int64 {
|
|
if x != nil {
|
|
return x.Code
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *AllInrOrderReply) GetData() string {
|
|
if x != nil {
|
|
return x.Data
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *AllInrOrderReply) GetMessage() string {
|
|
if x != nil {
|
|
return x.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
var File_matchmaking_v1_share_shareInr_proto protoreflect.FileDescriptor
|
|
|
|
var file_matchmaking_v1_share_shareInr_proto_rawDesc = []byte{
|
|
0x0a, 0x23, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31,
|
|
0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x72, 0x2e,
|
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69,
|
|
0x6e, 0x67, 0x2e, 0x76, 0x31, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70,
|
|
0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72,
|
|
0x6f, 0x74, 0x6f, 0x22, 0x31, 0x0a, 0x15, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x49, 0x6e, 0x72,
|
|
0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07,
|
|
0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f,
|
|
0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x97, 0x01, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74,
|
|
0x65, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
0x09, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x74,
|
|
0x6f, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x74,
|
|
0x6f, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x4c, 0x6f,
|
|
0x73, 0x73, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73,
|
|
0x74, 0x6f, 0x70, 0x4c, 0x6f, 0x73, 0x73, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0c,
|
|
0x73, 0x74, 0x6f, 0x70, 0x57, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01,
|
|
0x28, 0x09, 0x52, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x57, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65,
|
|
0x22, 0x90, 0x03, 0x0a, 0x14, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64,
|
|
0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x74, 0x6f,
|
|
0x63, 0x6b, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x74, 0x6f, 0x63,
|
|
0x6b, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x72, 0x61, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65,
|
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x74, 0x72, 0x61, 0x64, 0x65, 0x54, 0x79, 0x70,
|
|
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
|
|
0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x65, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a,
|
|
0x0a, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
0x09, 0x52, 0x0a, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a,
|
|
0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01,
|
|
0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12,
|
|
0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x06,
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x4d, 0x6f, 0x6e, 0x65,
|
|
0x79, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
|
|
0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d,
|
|
0x62, 0x65, 0x72, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
|
|
0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
|
|
0x65, 0x43, 0x6f, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x79, 0x70,
|
|
0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x79, 0x70,
|
|
0x65, 0x12, 0x24, 0x0a, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x4c, 0x6f, 0x73, 0x73, 0x50, 0x72, 0x69,
|
|
0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x4c, 0x6f,
|
|
0x73, 0x73, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x57,
|
|
0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73,
|
|
0x74, 0x6f, 0x70, 0x57, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70,
|
|
0x72, 0x79, 0x4e, 0x75, 0x6d, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x72, 0x79,
|
|
0x4e, 0x75, 0x6d, 0x22, 0x6e, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x72, 0x42, 0x6f, 0x74,
|
|
0x53, 0x74, 0x6f, 0x63, 0x6b, 0x54, 0x72, 0x61, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67,
|
|
0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67,
|
|
0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x75,
|
|
0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f,
|
|
0x75, 0x6e, 0x74, 0x22, 0x82, 0x01, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x42, 0x6f, 0x74, 0x53, 0x74,
|
|
0x6f, 0x63, 0x6b, 0x49, 0x6e, 0x72, 0x54, 0x72, 0x61, 0x64, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79,
|
|
0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
|
|
0x63, 0x6f, 0x64, 0x65, 0x12, 0x38, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01,
|
|
0x28, 0x0b, 0x32, 0x24, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67,
|
|
0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6f, 0x74, 0x53, 0x74, 0x6f, 0x63, 0x6b, 0x49, 0x6e, 0x72, 0x54,
|
|
0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x18,
|
|
0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0xa6, 0x01, 0x0a, 0x14, 0x42, 0x6f, 0x74,
|
|
0x53, 0x74, 0x6f, 0x63, 0x6b, 0x49, 0x6e, 0x72, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74,
|
|
0x61, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20,
|
|
0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a,
|
|
0x09, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
|
|
0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x34, 0x0a, 0x04, 0x64,
|
|
0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x6d, 0x61, 0x74, 0x63,
|
|
0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6f, 0x74, 0x53, 0x74,
|
|
0x6f, 0x63, 0x6b, 0x49, 0x6e, 0x72, 0x54, 0x72, 0x61, 0x64, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74,
|
|
0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18,
|
|
0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e,
|
|
0x74, 0x22, 0x9e, 0x06, 0x0a, 0x10, 0x42, 0x6f, 0x74, 0x53, 0x74, 0x6f, 0x63, 0x6b, 0x49, 0x6e,
|
|
0x72, 0x54, 0x72, 0x61, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49,
|
|
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64,
|
|
0x12, 0x18, 0x0a, 0x07, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
0x09, 0x52, 0x07, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x72,
|
|
0x61, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x74,
|
|
0x72, 0x61, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x61, 0x6c,
|
|
0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x65, 0x61, 0x6c,
|
|
0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x50, 0x72, 0x69,
|
|
0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x50,
|
|
0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x50, 0x72,
|
|
0x69, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65,
|
|
0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x65, 0x61, 0x6c, 0x50, 0x72,
|
|
0x69, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x65, 0x61, 0x6c, 0x50,
|
|
0x72, 0x69, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x50,
|
|
0x72, 0x69, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6c, 0x6f, 0x73,
|
|
0x69, 0x6e, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72, 0x64, 0x65,
|
|
0x72, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6f,
|
|
0x72, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x74,
|
|
0x6f, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x74,
|
|
0x6f, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x73, 0x74, 0x6f, 0x70, 0x4c, 0x6f,
|
|
0x73, 0x73, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73,
|
|
0x74, 0x6f, 0x70, 0x4c, 0x6f, 0x73, 0x73, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0c,
|
|
0x73, 0x74, 0x6f, 0x70, 0x57, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x0c, 0x20, 0x01,
|
|
0x28, 0x09, 0x52, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x57, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65,
|
|
0x12, 0x20, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x73, 0x74, 0x18,
|
|
0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
|
|
0x73, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x4d, 0x6f, 0x6e, 0x65,
|
|
0x79, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x4d,
|
|
0x6f, 0x6e, 0x65, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4d, 0x6f, 0x6e,
|
|
0x65, 0x79, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4d,
|
|
0x6f, 0x6e, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x10,
|
|
0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a,
|
|
0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09,
|
|
0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
|
|
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09,
|
|
0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08,
|
|
0x6f, 0x70, 0x65, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
|
|
0x6f, 0x70, 0x65, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6c, 0x6f, 0x73,
|
|
0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63,
|
|
0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6c,
|
|
0x6f, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x73, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
0x0b, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09,
|
|
0x66, 0x61, 0x63, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
0x09, 0x66, 0x61, 0x63, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x72,
|
|
0x79, 0x4e, 0x75, 0x6d, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x72, 0x79, 0x4e,
|
|
0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6b, 0x65, 0x65, 0x70, 0x44, 0x65, 0x63, 0x69, 0x6d, 0x61,
|
|
0x6c, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6b, 0x65, 0x65, 0x70, 0x44, 0x65, 0x63,
|
|
0x69, 0x6d, 0x61, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x4e, 0x61, 0x6d,
|
|
0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x4e, 0x61,
|
|
0x6d, 0x65, 0x22, 0x71, 0x0a, 0x0d, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65,
|
|
0x70, 0x6c, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x32, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
|
|
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b,
|
|
0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52,
|
|
0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x18, 0x0a, 0x07, 0x6d,
|
|
0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65,
|
|
0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x2a, 0x0a, 0x0e, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65,
|
|
0x72, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72,
|
|
0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49,
|
|
0x64, 0x22, 0x14, 0x0a, 0x12, 0x41, 0x6c, 0x6c, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72,
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x54, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x49, 0x6e,
|
|
0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x63,
|
|
0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
|
|
0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64,
|
|
0x61, 0x74, 0x61, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03,
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0xca, 0x06,
|
|
0x0a, 0x08, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x72, 0x12, 0x92, 0x01, 0x0a, 0x13, 0x47,
|
|
0x65, 0x74, 0x42, 0x6f, 0x74, 0x53, 0x74, 0x6f, 0x63, 0x6b, 0x49, 0x6e, 0x72, 0x54, 0x72, 0x61,
|
|
0x64, 0x65, 0x12, 0x2a, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67,
|
|
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x72, 0x42, 0x6f, 0x74, 0x53, 0x74, 0x6f,
|
|
0x63, 0x6b, 0x54, 0x72, 0x61, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28,
|
|
0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e,
|
|
0x47, 0x65, 0x74, 0x42, 0x6f, 0x74, 0x53, 0x74, 0x6f, 0x63, 0x6b, 0x49, 0x6e, 0x72, 0x54, 0x72,
|
|
0x61, 0x64, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f,
|
|
0x3a, 0x01, 0x2a, 0x22, 0x1a, 0x2f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x68, 0x61, 0x72,
|
|
0x65, 0x69, 0x6e, 0x72, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x12,
|
|
0x87, 0x01, 0x0a, 0x12, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x72, 0x50, 0x6c, 0x61, 0x63,
|
|
0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x24, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61,
|
|
0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x72,
|
|
0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x6d,
|
|
0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e,
|
|
0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4,
|
|
0x93, 0x02, 0x26, 0x3a, 0x01, 0x2a, 0x22, 0x21, 0x2f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73,
|
|
0x68, 0x61, 0x72, 0x65, 0x69, 0x6e, 0x72, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x70, 0x6c,
|
|
0x61, 0x63, 0x65, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x8a, 0x01, 0x0a, 0x13, 0x53, 0x68,
|
|
0x61, 0x72, 0x65, 0x49, 0x6e, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x64, 0x65,
|
|
0x72, 0x12, 0x25, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e,
|
|
0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65,
|
|
0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68,
|
|
0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64,
|
|
0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x3a,
|
|
0x01, 0x2a, 0x22, 0x22, 0x2f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65,
|
|
0x69, 0x6e, 0x72, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x83, 0x01, 0x0a, 0x10, 0x53, 0x68, 0x61, 0x72, 0x65,
|
|
0x49, 0x6e, 0x72, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x6d, 0x61,
|
|
0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x6e,
|
|
0x63, 0x65, 0x6c, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67,
|
|
0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c,
|
|
0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x3a, 0x01, 0x2a, 0x22, 0x1e, 0x2f, 0x6f,
|
|
0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x69, 0x6e, 0x72, 0x2f, 0x73, 0x68,
|
|
0x61, 0x72, 0x65, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x8a, 0x01, 0x0a,
|
|
0x13, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x72, 0x41, 0x6c, 0x6c, 0x50, 0x6f, 0x73, 0x69,
|
|
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69,
|
|
0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65,
|
|
0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68,
|
|
0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x49, 0x6e, 0x72,
|
|
0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93,
|
|
0x02, 0x27, 0x3a, 0x01, 0x2a, 0x22, 0x22, 0x2f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x68,
|
|
0x61, 0x72, 0x65, 0x69, 0x6e, 0x72, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x61, 0x6c, 0x6c,
|
|
0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7f, 0x0a, 0x0e, 0x53, 0x68, 0x61,
|
|
0x72, 0x65, 0x49, 0x6e, 0x72, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x12, 0x25, 0x2e, 0x6d, 0x61,
|
|
0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x6e,
|
|
0x63, 0x65, 0x6c, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67,
|
|
0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c,
|
|
0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x3a, 0x01, 0x2a, 0x22, 0x1c, 0x2f, 0x6f,
|
|
0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x69, 0x6e, 0x72, 0x2f, 0x73, 0x68,
|
|
0x61, 0x72, 0x65, 0x5f, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x42, 0x2a, 0x5a, 0x28, 0x6d, 0x61,
|
|
0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d,
|
|
0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6d, 0x61, 0x6b, 0x69, 0x6e, 0x67,
|
|
0x2f, 0x76, 0x31, 0x3b, 0x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
}
|
|
|
|
var (
|
|
file_matchmaking_v1_share_shareInr_proto_rawDescOnce sync.Once
|
|
file_matchmaking_v1_share_shareInr_proto_rawDescData = file_matchmaking_v1_share_shareInr_proto_rawDesc
|
|
)
|
|
|
|
func file_matchmaking_v1_share_shareInr_proto_rawDescGZIP() []byte {
|
|
file_matchmaking_v1_share_shareInr_proto_rawDescOnce.Do(func() {
|
|
file_matchmaking_v1_share_shareInr_proto_rawDescData = protoimpl.X.CompressGZIP(file_matchmaking_v1_share_shareInr_proto_rawDescData)
|
|
})
|
|
return file_matchmaking_v1_share_shareInr_proto_rawDescData
|
|
}
|
|
|
|
var file_matchmaking_v1_share_shareInr_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
|
|
var file_matchmaking_v1_share_shareInr_proto_goTypes = []any{
|
|
(*CancelInrOrderRequest)(nil), // 0: matchmaking.v1.CancelInrOrderRequest
|
|
(*UpdateInrOrderRequest)(nil), // 1: matchmaking.v1.UpdateInrOrderRequest
|
|
(*ShareInrOrderRequest)(nil), // 2: matchmaking.v1.ShareInrOrderRequest
|
|
(*GetInrBotStockTradeRequest)(nil), // 3: matchmaking.v1.GetInrBotStockTradeRequest
|
|
(*GetBotStockInrTradeReply)(nil), // 4: matchmaking.v1.GetBotStockInrTradeReply
|
|
(*BotStockInrTradeData)(nil), // 5: matchmaking.v1.BotStockInrTradeData
|
|
(*BotStockInrTrade)(nil), // 6: matchmaking.v1.BotStockInrTrade
|
|
(*InrOrderReply)(nil), // 7: matchmaking.v1.InrOrderReply
|
|
(*InrOrderResult)(nil), // 8: matchmaking.v1.InrOrderResult
|
|
(*AllInrOrderRequest)(nil), // 9: matchmaking.v1.AllInrOrderRequest
|
|
(*AllInrOrderReply)(nil), // 10: matchmaking.v1.AllInrOrderReply
|
|
}
|
|
var file_matchmaking_v1_share_shareInr_proto_depIdxs = []int32{
|
|
5, // 0: matchmaking.v1.GetBotStockInrTradeReply.data:type_name -> matchmaking.v1.BotStockInrTradeData
|
|
6, // 1: matchmaking.v1.BotStockInrTradeData.data:type_name -> matchmaking.v1.BotStockInrTrade
|
|
8, // 2: matchmaking.v1.InrOrderReply.data:type_name -> matchmaking.v1.InrOrderResult
|
|
3, // 3: matchmaking.v1.ShareInr.GetBotStockInrTrade:input_type -> matchmaking.v1.GetInrBotStockTradeRequest
|
|
2, // 4: matchmaking.v1.ShareInr.ShareInrPlaceOrder:input_type -> matchmaking.v1.ShareInrOrderRequest
|
|
1, // 5: matchmaking.v1.ShareInr.ShareInrUpdateOrder:input_type -> matchmaking.v1.UpdateInrOrderRequest
|
|
0, // 6: matchmaking.v1.ShareInr.ShareInrPosition:input_type -> matchmaking.v1.CancelInrOrderRequest
|
|
9, // 7: matchmaking.v1.ShareInr.ShareInrAllPosition:input_type -> matchmaking.v1.AllInrOrderRequest
|
|
0, // 8: matchmaking.v1.ShareInr.ShareInrCancel:input_type -> matchmaking.v1.CancelInrOrderRequest
|
|
4, // 9: matchmaking.v1.ShareInr.GetBotStockInrTrade:output_type -> matchmaking.v1.GetBotStockInrTradeReply
|
|
7, // 10: matchmaking.v1.ShareInr.ShareInrPlaceOrder:output_type -> matchmaking.v1.InrOrderReply
|
|
7, // 11: matchmaking.v1.ShareInr.ShareInrUpdateOrder:output_type -> matchmaking.v1.InrOrderReply
|
|
7, // 12: matchmaking.v1.ShareInr.ShareInrPosition:output_type -> matchmaking.v1.InrOrderReply
|
|
10, // 13: matchmaking.v1.ShareInr.ShareInrAllPosition:output_type -> matchmaking.v1.AllInrOrderReply
|
|
7, // 14: matchmaking.v1.ShareInr.ShareInrCancel:output_type -> matchmaking.v1.InrOrderReply
|
|
9, // [9:15] is the sub-list for method output_type
|
|
3, // [3:9] is the sub-list for method input_type
|
|
3, // [3:3] is the sub-list for extension type_name
|
|
3, // [3:3] is the sub-list for extension extendee
|
|
0, // [0:3] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_matchmaking_v1_share_shareInr_proto_init() }
|
|
func file_matchmaking_v1_share_shareInr_proto_init() {
|
|
if File_matchmaking_v1_share_shareInr_proto != nil {
|
|
return
|
|
}
|
|
if !protoimpl.UnsafeEnabled {
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[0].Exporter = func(v any, i int) any {
|
|
switch v := v.(*CancelInrOrderRequest); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[1].Exporter = func(v any, i int) any {
|
|
switch v := v.(*UpdateInrOrderRequest); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[2].Exporter = func(v any, i int) any {
|
|
switch v := v.(*ShareInrOrderRequest); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[3].Exporter = func(v any, i int) any {
|
|
switch v := v.(*GetInrBotStockTradeRequest); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[4].Exporter = func(v any, i int) any {
|
|
switch v := v.(*GetBotStockInrTradeReply); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[5].Exporter = func(v any, i int) any {
|
|
switch v := v.(*BotStockInrTradeData); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[6].Exporter = func(v any, i int) any {
|
|
switch v := v.(*BotStockInrTrade); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[7].Exporter = func(v any, i int) any {
|
|
switch v := v.(*InrOrderReply); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[8].Exporter = func(v any, i int) any {
|
|
switch v := v.(*InrOrderResult); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[9].Exporter = func(v any, i int) any {
|
|
switch v := v.(*AllInrOrderRequest); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_matchmaking_v1_share_shareInr_proto_msgTypes[10].Exporter = func(v any, i int) any {
|
|
switch v := v.(*AllInrOrderReply); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: file_matchmaking_v1_share_shareInr_proto_rawDesc,
|
|
NumEnums: 0,
|
|
NumMessages: 11,
|
|
NumExtensions: 0,
|
|
NumServices: 1,
|
|
},
|
|
GoTypes: file_matchmaking_v1_share_shareInr_proto_goTypes,
|
|
DependencyIndexes: file_matchmaking_v1_share_shareInr_proto_depIdxs,
|
|
MessageInfos: file_matchmaking_v1_share_shareInr_proto_msgTypes,
|
|
}.Build()
|
|
File_matchmaking_v1_share_shareInr_proto = out.File
|
|
file_matchmaking_v1_share_shareInr_proto_rawDesc = nil
|
|
file_matchmaking_v1_share_shareInr_proto_goTypes = nil
|
|
file_matchmaking_v1_share_shareInr_proto_depIdxs = nil
|
|
}
|
|
|